29866 lines
1.5 MiB
Plaintext
29866 lines
1.5 MiB
Plaintext
#include "pch-cpp.hpp"
|
|
|
|
#ifndef _MSC_VER
|
|
# include <alloca.h>
|
|
#else
|
|
# include <malloc.h>
|
|
#endif
|
|
|
|
|
|
#include <limits>
|
|
|
|
|
|
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);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct VirtualFuncInvoker2
|
|
{
|
|
typedef R (*Func)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct VirtualFuncInvoker2Invoker;
|
|
template <typename R, typename T1, typename T2>
|
|
struct VirtualFuncInvoker2Invoker<R, T1*, T2*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1* p1, T2* p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
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 R>
|
|
struct GenericVirtualFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData);
|
|
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 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, typename T3, typename T4>
|
|
struct InterfaceActionInvoker4
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, T3, T4, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, p3, p4, invokeData.method);
|
|
}
|
|
};
|
|
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 InterfaceFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, 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 R>
|
|
struct GenericInterfaceFuncInvoker0
|
|
{
|
|
typedef R (*Func)(void*, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj)
|
|
{
|
|
VirtualInvokeData invokeData;
|
|
il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData);
|
|
return ((Func)invokeData.methodPtr)(obj, invokeData.method);
|
|
}
|
|
};
|
|
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]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2>
|
|
struct InvokerActionInvoker2;
|
|
template <typename T1, typename T2>
|
|
struct InvokerActionInvoker2<T1*, T2*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
|
|
{
|
|
void* params[2] = { p1, p2 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[1]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3>
|
|
struct InvokerActionInvoker3;
|
|
template <typename T1, typename T2, typename T3>
|
|
struct InvokerActionInvoker3<T1*, T2*, T3*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3)
|
|
{
|
|
void* params[3] = { p1, p2, p3 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[2]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4>
|
|
struct InvokerActionInvoker4;
|
|
template <typename T1, typename T2, typename T3, typename T4>
|
|
struct InvokerActionInvoker4<T1*, T2*, T3, T4*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3 p3, T4* p4)
|
|
{
|
|
void* params[4] = { p1, p2, &p3, p4 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[3]);
|
|
}
|
|
};
|
|
template <typename R, typename T1>
|
|
struct InvokerFuncInvoker1;
|
|
template <typename R, typename T1>
|
|
struct InvokerFuncInvoker1<R, T1*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1)
|
|
{
|
|
R ret;
|
|
void* params[1] = { p1 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2>
|
|
struct InvokerFuncInvoker2;
|
|
template <typename R, typename T1, typename T2>
|
|
struct InvokerFuncInvoker2<R, T1*, T2*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2)
|
|
{
|
|
R ret;
|
|
void* params[2] = { p1, p2 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3>
|
|
struct InvokerFuncInvoker3;
|
|
template <typename R, typename T1, typename T2, typename T3>
|
|
struct InvokerFuncInvoker3<R, T1*, T2, T3*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2, T3* p3)
|
|
{
|
|
R ret;
|
|
void* params[3] = { p1, &p2, p3 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4>
|
|
struct InvokerFuncInvoker4;
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4>
|
|
struct InvokerFuncInvoker4<R, T1*, T2*, T3, T4*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3 p3, T4* p4)
|
|
{
|
|
R ret;
|
|
void* params[4] = { p1, p2, &p3, p4 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
|
|
struct InvokerFuncInvoker6;
|
|
template <typename R, typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
|
|
struct InvokerFuncInvoker6<R, T1*, T2, T3*, T4, T5, T6*>
|
|
{
|
|
static inline R Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2 p2, T3* p3, T4 p4, T5 p5, T6* p6)
|
|
{
|
|
R ret;
|
|
void* params[6] = { p1, &p2, p3, &p4, &p5, p6 };
|
|
method->invoker_method(methodPtr, method, obj, params, &ret);
|
|
return ret;
|
|
}
|
|
};
|
|
|
|
struct U3CEnumerateU3Ed__28_tEA742C92FD5C83A0B42BC0D9936D693C00E8AB1E;
|
|
struct U3CEnumerateU3Ed__28_t0208D88B19E67F3B47A3ACACCAF0810D4DA5D4AE;
|
|
struct U3CGetEnumeratorU3Ed__35_t09ECA34287F02611E13987D9E41BF974EFD81665;
|
|
struct U3CGetEnumeratorU3Ed__35_tFBB72033DD97EBEE1D1AB495DD3A0C1827242215;
|
|
struct Action_1_tE7E60800BAB8D8D90AE806130B19787F3CD867DC;
|
|
struct Action_1_tCC3B5679C4B7925785C6055A266DE1D9E1220607;
|
|
struct Action_1_t55BF2E340CAEB91E47B90E3EFF59120EDBDCC98D;
|
|
struct Action_1_tC00AB03D2E40EC53D13387EBDF0DBD1FBCA6F123;
|
|
struct Action_1_t12D515BBBDB69A29DC0C4812555D0A8A51D6B856;
|
|
struct Action_1_tD921DD4207843C7FA208DF2A04B64A7EC6EE90F1;
|
|
struct Action_1_tC3BD22662CBF7BCA7CF101E25DD9C3BC0C8058B4;
|
|
struct Action_1_t14B26BAC2002B527764811C43BAEC429C3B25446;
|
|
struct Action_1_t0328A8A468C762DAECEC2BDBE23D4E47955D8678;
|
|
struct Action_1_t839F3E949693088C3B23DB29849AC0CA1A2583BA;
|
|
struct Action_1_t2A5DF92F66A322B1138DECB857638383A0616590;
|
|
struct Action_1_tE6E50482E4ADBDF3F8AAB2E1468F55A7DF4BB182;
|
|
struct Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB;
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87;
|
|
struct Action_2_t12B97C2411B381417D267317B83796945763B77F;
|
|
struct Action_2_tB323E678D9134E8D74D87649A85A082FF718934E;
|
|
struct Action_2_t58329FB9FD988D2BA8B903095C0571509D45FDBF;
|
|
struct Action_2_t0997F02B602DB9E76CB2F8B8E9962030CCE2D59C;
|
|
struct Action_2_tB24338D0D12EC5B856C3E6331A8CBF67693F2968;
|
|
struct Action_2_tAC9CD6807BFD5D7CA53A98BD1CA72DC380606690;
|
|
struct Action_2_t134192076C48EB6DAB17640388597B62F563A686;
|
|
struct Action_2_t7599F1A874E645E7131D6D33F960155F7DBB019E;
|
|
struct Action_2_t688A348E6918A7E3E4FE534B179A3DFDCF958DED;
|
|
struct Action_2_tF48592AA21538CB1125537B525EA5254EEF3581C;
|
|
struct Action_2_t69E25DD22422E23B12565DA2320B148058096C8E;
|
|
struct Action_2_tFDA59A266B876E9846989E1EC1AC2B92BC20CEDA;
|
|
struct Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C;
|
|
struct ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01;
|
|
struct ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF;
|
|
struct ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812;
|
|
struct ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8;
|
|
struct ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4;
|
|
struct ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56;
|
|
struct ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605;
|
|
struct ConditionalWeakTable_2_t815A43BFBA64EC1F9F92AD042622E80EED65712E;
|
|
struct ContainerPropertyBag_1_t2279C723A3D81E0BE90A787349C987FC490033EF;
|
|
struct ContainerPropertyBag_1_t3A0DBCD09BBF64291800B0275CC7E1F2EECA0FEF;
|
|
struct ContainerPropertyBag_1_t4B3135B801859CF3F6877AEC19D1DA289FFC301D;
|
|
struct ContainerPropertyBag_1_tA2A29BDB4DB4DD00EDAB85E6154345DEEC0BF63B;
|
|
struct ContainerPropertyBag_1_t2A9DE8C991C6C2537259B466807EEEFC4B68B0E6;
|
|
struct ContainerPropertyBag_1_t34F580FC14E2EF6488F9B8CEE5D00BE38DBC2496;
|
|
struct ContainerPropertyBag_1_tFC736A3382282864C67252047BC56B960AD3C486;
|
|
struct ContainerPropertyBag_1_t5E98E44A087C66C99B6B48FE49F35A9460817892;
|
|
struct ContainerPropertyBag_1_tA7C51CF32C3F7B0B198B114B368B2E5BA498D33E;
|
|
struct ContainerPropertyBag_1_tC5EF4ED9E953B090F0F1A7314A738165FB6277B8;
|
|
struct ContainerPropertyBag_1_t827E6E22E54C7702E357022F57F04833A6FAF09E;
|
|
struct ContainerPropertyBag_1_t47684299E462BBF7DC930C28B27E8A8008478424;
|
|
struct ContextCallback_1_t641F0181553019D1F6BFEAE7F9789631588EF81D;
|
|
struct ContinuationResultTaskFromResultTask_2_t53DAF1E386BB83E85FBFA8178C1128E87C8BD88E;
|
|
struct ContinuationResultTaskFromResultTask_2_tADFF403C7660C29F8F9E43FCC385E4F673E3F888;
|
|
struct ContinuationResultTaskFromResultTask_2_t17224214B46D78ABCBC46FD6BCD37FA917551637;
|
|
struct ContinuationResultTaskFromResultTask_2_tB17BCD7CE5BA4BC24F46DCD294B05DA1BC0E17FB;
|
|
struct ContinuationResultTaskFromResultTask_2_t52C3F61A352BB09AE509E43C63290A435C93C2C9;
|
|
struct ContinuationResultTaskFromResultTask_2_t9B45F04B9CD22006B41DA806CDB29C6A534DB167;
|
|
struct ContinuationResultTaskFromResultTask_2_t652B5F2AECBB5D4A5D91AE84280AA35C5C3B9AF3;
|
|
struct ContinuationResultTaskFromResultTask_2_tFE6AD08AC874472862D080DC4BA28201D1E54D17;
|
|
struct ContinuationResultTaskFromResultTask_2_tB0B2799B9613DDD6F77B6B5890525D78B07E6534;
|
|
struct ContinuationResultTaskFromResultTask_2_tFD8B2EC4EB768D499DCB7A56A0CC8BEBB09E030C;
|
|
struct ContinuationResultTaskFromResultTask_2_tE241885AF8BB892C4B06A3EFCF4380AAACE17582;
|
|
struct ContinuationResultTaskFromResultTask_2_t6EC4E1B1A38AA828A716EBE2ACA0DAD4D4620740;
|
|
struct ContinuationResultTaskFromResultTask_2_t34E6D9F8AC9E351A8A1C38A6FB53DE6A2C0EC13D;
|
|
struct ContinuationResultTaskFromResultTask_2_t3FDCFF62536C178D13893343B38422469380A832;
|
|
struct ContinuationResultTaskFromTask_1_t218AAB2C3D3EBC8D3DCD7D59E15B9144ACF5CDB4;
|
|
struct ContinuationResultTaskFromTask_1_t1976F69FEC571EFB163944A4437C69446E2BECB3;
|
|
struct ContinuationTaskFromResultTask_1_t21D717C4A94ED8DF069846D2343999C1C95F9849;
|
|
struct ContinuationTaskFromResultTask_1_tC87576577E47D9155E48550F3FF98B7BE4578ABF;
|
|
struct ContinuationTaskFromResultTask_1_t9E3D090DA14C151A2E9ADE43FB29EC11D4FAF37E;
|
|
struct ContinuationTaskFromResultTask_1_t5B4CE099E4FA2F6075C238E32EDA472394DF8366;
|
|
struct ContinuationTaskFromResultTask_1_tAE0D398C6A55EAAA6B98F6A654178EB8C7FAEC39;
|
|
struct ContinuationTaskFromResultTask_1_t3ED26B5DC64622CAD8CCE4544E6F7CE63023AA96;
|
|
struct ContinuationTaskFromResultTask_1_tECDC5865BE337E90C43B9DAEC238B4AEE516C9D8;
|
|
struct ContinuationTaskFromResultTask_1_t6FB63BAE2DF893266CE75A70BC8CF666DF2C8B99;
|
|
struct ContinuationTaskFromResultTask_1_t0D3B0C43A4B7C9E5D99AAFE95D96D4C2C83096EC;
|
|
struct ContinuationTaskFromResultTask_1_t6C8EB0D8986768A0697C00E3990E72A52E065000;
|
|
struct ContinuationTaskFromResultTask_1_t0A8FDEA74F016A246D22E5545F9D6EA6503B4D52;
|
|
struct ContinuationTaskFromResultTask_1_t2E218599564ED5579F7956163E384B1E5171EF92;
|
|
struct Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486;
|
|
struct CreateValueCallback_t85D075DDCAD202B428EC47723590605681FE2BD1;
|
|
struct DictionaryEnumerator_t89B36B17C8760EDB41C3B7B9CB958EB90E92B183;
|
|
struct DictionaryEnumerator_tBF822449C5FD8462D9DB8BF961E29F69C2F913A9;
|
|
struct Dictionary_2_t403063CE4960B4F46C688912237C6A27E550FF55;
|
|
struct Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA;
|
|
struct Dictionary_2_t4DFECF621C500453991651A5A026D9FCC484C340;
|
|
struct Dictionary_2_tBCB806C16A2ADAA77600E3249746F7B6CB638FB1;
|
|
struct Dictionary_2_tF0CBEE260E4459BD7FBD88642D10D13072A1733B;
|
|
struct Dictionary_2_tD654CA36EB61C368D46FEE82344A2850BBD293DC;
|
|
struct Dictionary_2_t493CD60A61DC7E34769F611A3B574105A00F7C8E;
|
|
struct Dictionary_2_tB38AB04EAE4BF1A8AB4F3EB5C6D61C0BA1C63485;
|
|
struct Dictionary_2_tE037C9F1FF6B6E97DF0AE5A0BE4042375C5D9D8C;
|
|
struct Dictionary_2_t4A4C489FCB5A50BCD97D454B320936FFB26B6259;
|
|
struct Dictionary_2_tAFF77A63BAC70A823CF7D433372A35F9A9FA53F9;
|
|
struct Dictionary_2_tF48CBAD539B087D7950015E9ACC37504C4F7F095;
|
|
struct Dictionary_2_t4C7611B1B9A7003542D940F8505DCFF0186D9648;
|
|
struct Dictionary_2_t5FB44F403798E1529E205CBF14632F00AAC18879;
|
|
struct Enumerator_t94AEE59300B379FF13424743ADEE68A3E360D190;
|
|
struct EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4;
|
|
struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2;
|
|
struct EqualityComparer_1_t974B6EF56BCA01CA6AD3434C04A3F054C43783CC;
|
|
struct EventHandler_1_tE698654C3F437D97ABCCA3FD0AD8F86E776DC77A;
|
|
struct Func_1_tD59A12717D79BFB403BF973694B1BE5B85474BD1;
|
|
struct Func_2_t53C16EDB9A3E0F3470F3AFDC2589E59CC5AF63D5;
|
|
struct Func_2_tCAA612459A254A772A62B258A3DEF8F628BFFA14;
|
|
struct Func_2_tD4DDFE1683E01166E2F8934282DC94BBDCD37DED;
|
|
struct Func_2_t710C9443E65A47F34F20273E119C67F86A4F6618;
|
|
struct Func_2_tF3F851D4A7EE63295D4A27756EE77F24346954BA;
|
|
struct Func_2_t9217EFFDF0F926C559DEA0624F254D87134FC073;
|
|
struct Func_2_tC4EF69AA76D73F932F643A1A2F61B8E102C1E756;
|
|
struct Func_2_t4A7100D6CA55E0D5E840D600DD4C004E374EA0C4;
|
|
struct Func_2_tF55433C2E934D2C7FCCC31245AE7E2731A7C04DA;
|
|
struct Func_2_t14F0C1442EA414868F293290E263005881E270CD;
|
|
struct Func_2_t374ECF90050F953CFA1EB9E9CE02A9C76AC292B2;
|
|
struct Func_2_t1AD23BAD40F98053E72168B8ECBE30D235D80AA7;
|
|
struct Func_2_t79586ED298818483600EFEA82001DCE9C509204B;
|
|
struct Func_2_tCEEA1029036C146011A9093868E254F314AB661E;
|
|
struct Func_2_t9BDD2E959989A0F342560C7A37F50108887A6F4F;
|
|
struct Func_2_tA0EEFAE7C92638659E9BB0B7413EAA91B94F9856;
|
|
struct Func_2_tCD5AA4A296D960BBF4C4F87A28930EAEE61EFD66;
|
|
struct Func_2_tFE7563C0628D7F87CCDC5B6B1027F20F842C6A9B;
|
|
struct Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00;
|
|
struct Func_2_t9A0D493A82DCC47C9C819A3B045E02D9B5DDCE1B;
|
|
struct Func_2_t213311159653563BDCC21CC060B449705C96791F;
|
|
struct Func_2_t78D13C74B0F5A1DD640F8722F0AFB5F5144EAB97;
|
|
struct Func_2_tACBF5A1656250800CE861707354491F0611F6624;
|
|
struct Func_2_t1997BD152D2F0085C9F00A883F4BE34C90ADDA8B;
|
|
struct Func_2_t71FA99F7C6CDD51A4C237B5165867D485B0735EA;
|
|
struct Func_2_t771FE8EE731C9D8BA2456DA5169FA459ED5D38D3;
|
|
struct Func_2_tC80EBD402669FA7B2BD1805B8BCE9575CFCA7E22;
|
|
struct Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0;
|
|
struct Func_3_t741E34C10F6FE17B3BA3853E4763638628690208;
|
|
struct Func_3_tF1E460056412D39AFBCC5042F0EA0552F8B64345;
|
|
struct Func_3_t3C035C4481D7553088B1824393D0A937F0B017AB;
|
|
struct Func_3_t67613617ED6D0678EC039E4D97DC38B8049B72E4;
|
|
struct Func_3_tCB81839DD3418F2A0788EB43DA278B7D6693BEA7;
|
|
struct Func_3_tC0A2388D48F4EB5BDED4835CBEA96A87B3D62D71;
|
|
struct Func_3_tB0721508F3796CC22DD7A5D2D9D9697DC1E974D0;
|
|
struct Func_3_t7318E37306A270D9D4368630319FB5EAE41EE343;
|
|
struct Func_3_t4944E5E5F13CAC7D326C07B48FC1CB2E02818679;
|
|
struct Func_3_t6BFD0508E30AF0D3CFA47658967899EDB15F686B;
|
|
struct Func_3_t0E081CDB7B5E8262004CBC882A738B3951375D06;
|
|
struct Func_3_tD95F3399CA13499EB2DAC0BFE6F4632D70E79620;
|
|
struct Func_3_t22D2883D2955083AC7B0ACF58C1BFCF6C149341D;
|
|
struct Func_3_tB5711B7F2A432B77A744459F7B51F7535CEEC8F9;
|
|
struct Func_3_t38806CDE2B8FBE2C46D0183F71E027E08C5FA249;
|
|
struct Func_3_t79EFC91BEF9A031A23D922845DF2FE0FA0BBAB94;
|
|
struct Func_3_t2F9CFB060EDA36879A7FAA60EC81BC7513350072;
|
|
struct Func_3_t397C51E8BB1FEA88F253F683670464827DD4BDAA;
|
|
struct Func_3_tFCEB9D8CEAECBF6D0AD5440F96C6F9010270CE79;
|
|
struct Func_3_t8F3E514F3F44D98D0029402DBF664E587850807D;
|
|
struct Func_3_t28A9636B716326D9E31566B1E8ECBDEFDB0192CE;
|
|
struct Func_3_t60F75FC08D90822EE0350881730189B813F24589;
|
|
struct Func_3_tAB0692B406AF1455ADB5F518BF283E084B5E8566;
|
|
struct Func_3_t5D594C7555DF6F84FA098E3F3DE55B9FF132E49A;
|
|
struct Func_3_t978E495A2CFACF4BCDA24F740600DD6A8BEB2435;
|
|
struct Func_3_tF6961E555C9FB4ED507E9C2DBFF6165C17476260;
|
|
struct Func_3_t01CB5BB0F8B9B9E6887C0D062E05CA499BA73A3B;
|
|
struct ICollection_1_t14CDFA1120341ECAA423A4F520BA2E2D204A53BC;
|
|
struct ICollection_1_tA15C88CD562D52ED6B4D981EC7F4A5558BD52C6A;
|
|
struct ICollection_1_tD7413105CA5DBF6629BE5E9EE453204D7C0D90FB;
|
|
struct ICollection_1_tB388ED908E2D241F56264CA971F25D9ADC1ADEC3;
|
|
struct IEnumerable_1_tC7059CB6540286C5F80DB41C7CC09474CC05DC20;
|
|
struct IEnumerable_1_t60509816D8966320E2A9660FC756B6C440ADFC50;
|
|
struct IEnumerable_1_tC9B78BD09596EB85FA82FA63B091B4F61900F530;
|
|
struct IEnumerable_1_t1251D764FAFF179672200A272983111F09B4EF85;
|
|
struct IEnumerable_1_tFCB3E41202F3CC65C7DE9B40C22F196A081E84D6;
|
|
struct IEnumerable_1_tF95C9E01A913DD50575531C8305932628663D9E9;
|
|
struct IEnumerable_1_t29E7244AE33B71FA0981E50D5BC73B7938F35C66;
|
|
struct IEnumerator_1_t219B6CDC6BCDE713F92DBFE76942F60999C67C97;
|
|
struct IEnumerator_1_t327FF232159D9644239A65F54312F684DB7BE375;
|
|
struct IEnumerator_1_tFABD3B897F1296469E9A2DB9BCF6C89439049208;
|
|
struct IEnumerator_1_t457AAF7FC81D1080FEADC4091A29D4288643F7CF;
|
|
struct IEnumerator_1_t43D2E4BA9246755F293DFA74F001FB1A70A648FD;
|
|
struct IEnumerator_1_t75CB2681E18F7F2791528FA2CA60361FDB5DA08D;
|
|
struct IEqualityComparer_1_t2CA7720C7ADCCDECD3B02E45878B4478619D5347;
|
|
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
|
|
struct IEqualityComparer_1_t47CC0B235E693652D181B679FF6D61A469ECC122;
|
|
struct IList_1_t7117A460F7A4F72A978B6A6960054EF56FA2A5A3;
|
|
struct IList_1_t6EE90D273EFCF5E7E4C37FAB712E70BB6F1B4BFF;
|
|
struct IList_1_t8AC59FFD0F90EC2DAD4C3FA39B2A5851F9D2987A;
|
|
struct IProperty_1_tD244114CE436FD9ED0FFA2D1D455AEDAC05FF05E;
|
|
struct IProperty_1_tA0905C4267FB6A7FD0A05C37B6A16B0F607E7169;
|
|
struct IProperty_1_t8885BD5CD7EF54503D9E4531265EFE41C32A76A7;
|
|
struct IProperty_1_t9F627ED1E5150ABCABC70109B20AE5BAC8C78131;
|
|
struct IProperty_1_tEBB8266DC6A35BE366DEDDADAC3058C4F9B09515;
|
|
struct IProperty_1_tC8A9F7A47A6336EB9794E9A3C9FF3CDDBE47FC3F;
|
|
struct IProperty_1_tD5B55B2B653E1DBADDE8E494F6B9568FCCFB815A;
|
|
struct IProperty_1_tD0857FC9D3C29214DBCB766720DD32AD2E2E29D3;
|
|
struct IProperty_1_t4F0CAE821D34ED1A55A2913142EDF092E2F0996A;
|
|
struct IProperty_1_t71FC6CE3B63C7989BB59D6C8E47462A535257BC9;
|
|
struct IProperty_1_t2F93486C4F1EF31204AB9C24EB17075238B881D5;
|
|
struct IProperty_1_t47DF8E7CFAFA47596FCFDA6775C02B5B3C05AAE5;
|
|
struct IValueTaskSource_1_t24C3D3D2B6FEC31655EDCC0F97F377F05862ADF6;
|
|
struct IValueTaskSource_1_t070809655ED205ECF3A94A12E2B5AC81E6B90964;
|
|
struct IValueTaskSource_1_t5F54F119A84BD7F3A7E39ED5A9040C19D0EC4782;
|
|
struct KeyCollection_t3D8359DB42E5B89CCD6E4A190A67E61B4D5C6A07;
|
|
struct KeyCollection_t7C8C459C8F974B84B04C7D7254023D9E62389165;
|
|
struct KeyCollection_tEC94EEE03791913182AA5EB3533268B97824860B;
|
|
struct KeyCollection_tC0A9B0E2D725704FC2020C228E8424C37B4EF8E2;
|
|
struct KeyCollection_t04DE7B07C7EBE5F7D31226760EC6D28A3C11D4B4;
|
|
struct KeyCollection_t0A36406E3A87BABA57C9B0F690A7D79EDA2C59E1;
|
|
struct KeyCollection_t4CE90A49B346111CF761CA020F063CA73381B895;
|
|
struct KeyCollection_tC0BA1632EA08CE091BD89882D840A5F1FFB0D71D;
|
|
struct KeyCollection_t4B70D23D92F892577F6543AD6401C784B2BC4B05;
|
|
struct KeyCollection_t6A01E90BD3E84E7904A44E4E79BC7855F5029204;
|
|
struct KeyCollection_t0EFB1384ABA4EDABDC23F7EF3FE86A7F3E88DA29;
|
|
struct KeyCollection_t239EF5D0A11E0FC191504D200AA16CBF508F627B;
|
|
struct List_1_tE031E2B1B3599B1B808F7E565E285D0265829963;
|
|
struct List_1_tB0305892E26D0C482A75FD711E7CF6277D867EAA;
|
|
struct List_1_t514193F05FE01729A5ADF1CBD11F2A3282FEA464;
|
|
struct List_1_t395DB400634B381F180F661D6F23047177C54A41;
|
|
struct List_1_tF5A67096A0D68151D8E28B9AC51E2BEBA8BA6488;
|
|
struct List_1_t02FDA4992BFC534B37236850E63707788E0AE2AE;
|
|
struct List_1_t5D909E7F131356377BE392FFE312172FA301EB67;
|
|
struct List_1_tF7ED81D8CAE526E27D4579AA1E0D00A211BAE4FE;
|
|
struct List_1_t097837D1E5E15D037E5CC2958A380C5BB39F6B54;
|
|
struct List_1_t061B25A9A84AEF321FDDB1F001818B7F63981724;
|
|
struct List_1_t9F62F67493B4FDE523DD405881E159817B80CAC2;
|
|
struct List_1_t8C03D59AE9CBDEDECDE563570171B47DCB063CF4;
|
|
struct List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A;
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D;
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A;
|
|
struct Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5;
|
|
struct Node_t821211F0535E80E80FDC8FFB600F681E98286BF0;
|
|
struct Node_tC5111E77A2002D0AD173457666915D4D0BD59865;
|
|
struct Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12;
|
|
struct Predicate_1_t7F48518B008C1472339EEEBABA3DE203FE1F26ED;
|
|
struct PropertyBag_1_tD413081183D831D5FD1DB047C6388E9EA8522318;
|
|
struct PropertyBag_1_tFA4D14E31A2A501D102D88481DCBC9501A6EF390;
|
|
struct PropertyBag_1_t0967321B2D6F146150A7805676EB01A1FD0E97B6;
|
|
struct PropertyBag_1_tE522EC0E4E4C916EBF192933D686DEFDD27B9474;
|
|
struct PropertyBag_1_t2F1387D95A1E9B93E66C397645BFB8BCD265219B;
|
|
struct PropertyBag_1_tC24A0A7B21F69286D618A79A4F7CD6F8E9E64E46;
|
|
struct PropertyBag_1_t1E23861777A25A773264A698434477DCE18B34CF;
|
|
struct PropertyBag_1_tA16FBB091D74A21AC539D829F65E5E8FAF2DB075;
|
|
struct PropertyBag_1_t91378217184AE0BD640D9A003EF2CB208071D593;
|
|
struct PropertyBag_1_tDA117C10FEABA385803A90E976050FB2D270FAD2;
|
|
struct PropertyBag_1_tD11940BE9DAD74F61B141A397F3D5722E7FF2601;
|
|
struct ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14;
|
|
struct ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92;
|
|
struct ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8;
|
|
struct Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531;
|
|
struct Segment_tBE464478C92438E20009981FD7F953F796D7F3B2;
|
|
struct Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912;
|
|
struct Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB;
|
|
struct Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6;
|
|
struct Tables_tD895B223685217918C345ED5D52074F7E29E5F95;
|
|
struct TaskFactory_1_tAE919A7BAE255B9F6EF5F440E30D3AF6A9C9322E;
|
|
struct TaskFactory_1_t33023AA72DA5D4155ACB9DF7BD7465ABE4589718;
|
|
struct TaskFactory_1_tAC05D6D406D9ADEA2435D7C2A76B69CC6C6D56B2;
|
|
struct TaskFactory_1_t01F66E25A9E51E68DEBCF993CDB5F163B96834D4;
|
|
struct TaskFactory_1_tFAEAC22A1E986463E6956C344A78A7C7197288E0;
|
|
struct TaskFactory_1_t0BEF06D58E44525B9135AB0B22D016856EE69FF3;
|
|
struct TaskFactory_1_t96AF1AA119B568BA8916E7FD621B61B350B9BB49;
|
|
struct TaskFactory_1_t7AD5FF56CD0FBD6843796AC47F4A1949F8E936DC;
|
|
struct TaskFactory_1_t6F188FE70F3006B0386002E392B799D85100732B;
|
|
struct TaskFactory_1_tB7A1CB3B51FA5F527D22DD05E17198544202FB62;
|
|
struct TaskFactory_1_t4BEAD6CE2527DBE682C128CEAA0FF2A79483E96C;
|
|
struct TaskFactory_1_tF4CDC5BDA20AE9BD3F65B6146CDCD3F753003E1D;
|
|
struct Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7;
|
|
struct Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D;
|
|
struct Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C;
|
|
struct Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A;
|
|
struct Task_1_t824317F4B958F7512E8F7300511752937A6C6043;
|
|
struct Task_1_t4C228DE57804012969575431CFF12D57C875552D;
|
|
struct Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB;
|
|
struct Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F;
|
|
struct Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2;
|
|
struct Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F;
|
|
struct Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17;
|
|
struct Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9;
|
|
struct ValueCollection_tEED95282301383B581DFAC6EC7299675EFBDD6B9;
|
|
struct ValueCollection_t5D2DCC90EA4E249594463BC425AAFC11D03EB9AA;
|
|
struct ValueCollection_t702CC9DE76AB35484B587F17F9CB97848CA1B4B7;
|
|
struct ValueCollection_t8F8DB6AA298A0E6E9E6BF433823585C9A9C2307E;
|
|
struct ValueCollection_tE2C4E027ED2E844BE2A3BC5089E7A4BADECBCB64;
|
|
struct ValueCollection_tEAA0E1E71A27ACAB1C36924A2CABD41CF30EF63A;
|
|
struct ValueCollection_t5DD85AECC4756322DA1108FF082E2CB0B444061E;
|
|
struct ValueCollection_tF147A6A67AF0A122C3EDE7814D187F28801603BA;
|
|
struct ValueCollection_tB5A35D04FC0D9E78B1AD7E04E0DCD8E766D98FD7;
|
|
struct ValueCollection_tFC199F200E990A316977F68FAE638AC552E9E5B9;
|
|
struct ValueCollection_t50C86DFB1AD93A26FD8779E507751391EDF4AC0A;
|
|
struct ValueCollection_t0E6C33C610591C9C2D5EC272BC420022FFBF163B;
|
|
struct EntryU5BU5D_t479920E2895B7497946799D504AA6A11EF814F8B;
|
|
struct EntryU5BU5D_t4D42BD593109DD8A7264C86AE273DFB0E360C5EC;
|
|
struct EntryU5BU5D_t8749634649900F187C4BD6B862CC9BDC5CF67A52;
|
|
struct EntryU5BU5D_tA0151DF982E89109A13256E5813C39D1FE7E4B3B;
|
|
struct EntryU5BU5D_t16425FB88BDE67CA551DB46F3EBD75EB1A7266DD;
|
|
struct EntryU5BU5D_t0EDE017134C4A32F26AC935DBAE34648B6B6F2A3;
|
|
struct EntryU5BU5D_t585DF05D1D92475B43D40DB65A17AF9D386243F0;
|
|
struct EntryU5BU5D_t4E27316ACC1331AB5EBC5EFD7A1CEE9641797935;
|
|
struct EntryU5BU5D_t7D891CEC53C9412604E556C4EA40F220E9EC3DDB;
|
|
struct EntryU5BU5D_tA7F5B122DA701637331E165BA34F2921893EE6A4;
|
|
struct EntryU5BU5D_t1E6125BC67BE36EABC7B88295C45A5CDDA436D35;
|
|
struct EntryU5BU5D_t7F3BA8D32859204392895978265B61A400981385;
|
|
struct IProperty_1U5BU5D_tFAC27EA9FD0674D9FCC99719642F64A7B6171AE3;
|
|
struct IProperty_1U5BU5D_t9C1586F6699AC465B5A80FDD7A069A2F3A5D4293;
|
|
struct IProperty_1U5BU5D_tFCC1C6C88AFD37316E9556459D3A5F0754F0CB3A;
|
|
struct IProperty_1U5BU5D_tA30DD7008E333CF0B8B50C222CB3006FB2C97CA4;
|
|
struct IProperty_1U5BU5D_t2E32C03298D427EE74750CCAD1176CD70FE87C9B;
|
|
struct IProperty_1U5BU5D_tB08571964EA7AEC31E211FF54AF52ADCB7765001;
|
|
struct IProperty_1U5BU5D_tDD2A8F80EA98F403B802C0D82CA5A21AB6E7140E;
|
|
struct IProperty_1U5BU5D_tE7A12954230ED19C6ADF8B0C957A499427AB18E4;
|
|
struct IProperty_1U5BU5D_t15E888785C0DCA4612FDB0CB16800A7BC8C6E213;
|
|
struct IProperty_1U5BU5D_t114AB40D7A9B0463423BA271A9500724F6778D9C;
|
|
struct IProperty_1U5BU5D_t2EBC6E373C6A907A8E5526EB7073DD758E0C4D65;
|
|
struct IProperty_1U5BU5D_t923FBB25D92CA4479ECEB7F3F1F4932D6C7C2D60;
|
|
struct KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7;
|
|
struct KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67;
|
|
struct KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57;
|
|
struct NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6;
|
|
struct NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76;
|
|
struct NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A;
|
|
struct SlotU5BU5D_t202D2F69C0E5FA34B84D04DFCCFBB57CB7E2F1BD;
|
|
struct SlotU5BU5D_t50AA161D0E0CA4901F88A99B082CD5FA953B023B;
|
|
struct SlotU5BU5D_t15A614E28C19F61C3F029DFAA2127DA15F293444;
|
|
struct ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203;
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533;
|
|
struct EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F;
|
|
struct AsyncCallback_t7FEF460CBDCFB9C5FA2EF776984778B9A4145F4C;
|
|
struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C;
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
struct CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999;
|
|
struct CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B;
|
|
struct ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007;
|
|
struct Delegate_t;
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
struct EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25;
|
|
struct IAsyncResult_t7B9B5A0ECB35DCEC31B8A8122C37D687369253B5;
|
|
struct ICollection_t37E7B9DC5B4EF41D190D607F92835BF1171C0E8E;
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
struct IDictionaryEnumerator_tE129D608FCDB7207E0F0ECE33473CC950A83AD16;
|
|
struct IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA;
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
|
|
struct KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E;
|
|
struct Lock_t529C04C831C120E5FFD6039EC3CB76F9956BCDD7;
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
struct MethodInfo_t;
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
|
|
struct OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F;
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
struct StackGuard_tACE063A1B7374BDF4AD472DE4585D05AD8745352;
|
|
struct String_t;
|
|
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572;
|
|
struct TaskFactory_tF781BD37BE23917412AD83424D1497C7C1509DF0;
|
|
struct TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E;
|
|
struct Type_t;
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
struct ContingentProperties_t3FA59480914505CEA917B1002EC675F29D0CB540;
|
|
|
|
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* CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* HashHelpers_t75606750E152DB8C7289EB4163D3A728ED1A601A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PlatformHelper_t5E497382616B62F0B318E53D098F90E22AB35722_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Type_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral020F27A067D9C2A1BC9628BCE378DE63A6F2B5BE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral20D029102A70CD96274496928ED59E8B9C014BBA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2AA2E732DB2949176A84E755559B51D778BADC01;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral469F05BE9BB4C7903C353D0EB9F6384C84A48B25;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4CC02BED909F9630E59013E4804C6C269FF8370A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral561DA6E332E7EF45E52D96B07EC786D85C2955BE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5B752FEA6C79E292F7975C9C7E92D2B4616F6B66;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral672E993A9AD93822B712B165C6987759C6DED80B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral68445D6E030501243B18C07E57CF1AE5C1C5AAF2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA05D9DA01CB9AD0AA6BE899FE1E39018B72923DB;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBE1D2E11D58177AC5AC7C4A993B5BE6408F97DAA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBF10EFAF6473141D13A05C1B850DEF40E641A918;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBFD0F59F9F38A92660652CA5BE172EFCA8501E47;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC38D57307791EED2AD28D35927B9E90B23E6281D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC524653D78C03BE4033DDC43C45B67FFB841D141;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCE9C604469720D63E041FC7B3F7FF7D99A882AC2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD0D86565E49BD212E7AC64BABD33BE3668A4C45B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE59C400B29D20EE4CB5A86E1F46ED782D7872D43;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEC0CC039753090F0DDDF2727802FC6E1570B317B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEDA0106FDFD942FADD2AA6A80843D70DD44B63FD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEE87639B3A491E0E26BF98722E7EF266338FFC27;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEF68BB0CB45867DA95163C2C6A4B0677DCE80DCF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFD8CE285C77CDFBCDCBA338A795AFF019E6C3B66;
|
|
struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7;
|
|
struct KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67;
|
|
struct KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57;
|
|
struct NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6;
|
|
struct NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76;
|
|
struct NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A;
|
|
struct SlotU5BU5D_t202D2F69C0E5FA34B84D04DFCCFBB57CB7E2F1BD;
|
|
struct SlotU5BU5D_t50AA161D0E0CA4901F88A99B082CD5FA953B023B;
|
|
struct SlotU5BU5D_t15A614E28C19F61C3F029DFAA2127DA15F293444;
|
|
struct ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203;
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771;
|
|
struct DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533;
|
|
struct EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
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 U3CEnumerateU3Ed__28_t0208D88B19E67F3B47A3ACACCAF0810D4DA5D4AE : public RuntimeObject
|
|
{
|
|
int32_t ___U3CU3E1__state;
|
|
RuntimeObject* ___U3CU3E2__current;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___head;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___tail;
|
|
int32_t ___tailTail;
|
|
int32_t ___headHead;
|
|
ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* ___U3CU3E4__this;
|
|
int32_t ___U3CheadTailU3E5__2;
|
|
int32_t ___U3CiU3E5__3;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___U3CsU3E5__4;
|
|
int32_t ___U3CiU3E5__5;
|
|
};
|
|
struct U3CEnumerateU3Ed__28_tD7440BDC11153BC444DCE333B0950B1C7B9E9C12 : public RuntimeObject {};
|
|
struct ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01 : public RuntimeObject
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* ____tables;
|
|
RuntimeObject* ____comparer;
|
|
bool ____growLockArray;
|
|
int32_t ____budget;
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* ____serializationArray;
|
|
int32_t ____serializationConcurrencyLevel;
|
|
int32_t ____serializationCapacity;
|
|
};
|
|
struct ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF : public RuntimeObject
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* ____tables;
|
|
RuntimeObject* ____comparer;
|
|
bool ____growLockArray;
|
|
int32_t ____budget;
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ____serializationArray;
|
|
int32_t ____serializationConcurrencyLevel;
|
|
int32_t ____serializationCapacity;
|
|
};
|
|
struct ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812 : public RuntimeObject
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* ____tables;
|
|
RuntimeObject* ____comparer;
|
|
bool ____growLockArray;
|
|
int32_t ____budget;
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* ____serializationArray;
|
|
int32_t ____serializationConcurrencyLevel;
|
|
int32_t ____serializationCapacity;
|
|
};
|
|
struct ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ____crossSegmentLock;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ____tail;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ____head;
|
|
};
|
|
struct ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ____crossSegmentLock;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ____tail;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ____head;
|
|
};
|
|
struct ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ____crossSegmentLock;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* ____tail;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* ____head;
|
|
};
|
|
struct ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605 : public RuntimeObject
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* ___data;
|
|
RuntimeObject* ____lock;
|
|
int32_t ___size;
|
|
};
|
|
struct DictionaryEnumerator_t89B36B17C8760EDB41C3B7B9CB958EB90E92B183 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ____enumerator;
|
|
};
|
|
struct DictionaryEnumerator_tBF822449C5FD8462D9DB8BF961E29F69C2F913A9 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ____enumerator;
|
|
};
|
|
struct DictionaryEnumerator_t50968DBECB732082714E6294722DC51777C8A22A : public RuntimeObject
|
|
{
|
|
RuntimeObject* ____enumerator;
|
|
};
|
|
struct Dictionary_2_t4DFECF621C500453991651A5A026D9FCC484C340 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t479920E2895B7497946799D504AA6A11EF814F8B* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t3D8359DB42E5B89CCD6E4A190A67E61B4D5C6A07* ____keys;
|
|
ValueCollection_tEED95282301383B581DFAC6EC7299675EFBDD6B9* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tBCB806C16A2ADAA77600E3249746F7B6CB638FB1 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t4D42BD593109DD8A7264C86AE273DFB0E360C5EC* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t7C8C459C8F974B84B04C7D7254023D9E62389165* ____keys;
|
|
ValueCollection_t5D2DCC90EA4E249594463BC425AAFC11D03EB9AA* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tF0CBEE260E4459BD7FBD88642D10D13072A1733B : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t8749634649900F187C4BD6B862CC9BDC5CF67A52* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tEC94EEE03791913182AA5EB3533268B97824860B* ____keys;
|
|
ValueCollection_t702CC9DE76AB35484B587F17F9CB97848CA1B4B7* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tD654CA36EB61C368D46FEE82344A2850BBD293DC : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tA0151DF982E89109A13256E5813C39D1FE7E4B3B* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tC0A9B0E2D725704FC2020C228E8424C37B4EF8E2* ____keys;
|
|
ValueCollection_t8F8DB6AA298A0E6E9E6BF433823585C9A9C2307E* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_t493CD60A61DC7E34769F611A3B574105A00F7C8E : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t16425FB88BDE67CA551DB46F3EBD75EB1A7266DD* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t04DE7B07C7EBE5F7D31226760EC6D28A3C11D4B4* ____keys;
|
|
ValueCollection_tE2C4E027ED2E844BE2A3BC5089E7A4BADECBCB64* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tB38AB04EAE4BF1A8AB4F3EB5C6D61C0BA1C63485 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t0EDE017134C4A32F26AC935DBAE34648B6B6F2A3* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t0A36406E3A87BABA57C9B0F690A7D79EDA2C59E1* ____keys;
|
|
ValueCollection_tEAA0E1E71A27ACAB1C36924A2CABD41CF30EF63A* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tE037C9F1FF6B6E97DF0AE5A0BE4042375C5D9D8C : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t585DF05D1D92475B43D40DB65A17AF9D386243F0* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t4CE90A49B346111CF761CA020F063CA73381B895* ____keys;
|
|
ValueCollection_t5DD85AECC4756322DA1108FF082E2CB0B444061E* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_t4A4C489FCB5A50BCD97D454B320936FFB26B6259 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t4E27316ACC1331AB5EBC5EFD7A1CEE9641797935* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_tC0BA1632EA08CE091BD89882D840A5F1FFB0D71D* ____keys;
|
|
ValueCollection_tF147A6A67AF0A122C3EDE7814D187F28801603BA* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tAFF77A63BAC70A823CF7D433372A35F9A9FA53F9 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t7D891CEC53C9412604E556C4EA40F220E9EC3DDB* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t4B70D23D92F892577F6543AD6401C784B2BC4B05* ____keys;
|
|
ValueCollection_tB5A35D04FC0D9E78B1AD7E04E0DCD8E766D98FD7* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_tF48CBAD539B087D7950015E9ACC37504C4F7F095 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_tA7F5B122DA701637331E165BA34F2921893EE6A4* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t6A01E90BD3E84E7904A44E4E79BC7855F5029204* ____keys;
|
|
ValueCollection_tFC199F200E990A316977F68FAE638AC552E9E5B9* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_t4C7611B1B9A7003542D940F8505DCFF0186D9648 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t1E6125BC67BE36EABC7B88295C45A5CDDA436D35* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t0EFB1384ABA4EDABDC23F7EF3FE86A7F3E88DA29* ____keys;
|
|
ValueCollection_t50C86DFB1AD93A26FD8779E507751391EDF4AC0A* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Dictionary_2_t5FB44F403798E1529E205CBF14632F00AAC18879 : public RuntimeObject
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____buckets;
|
|
EntryU5BU5D_t7F3BA8D32859204392895978265B61A400981385* ____entries;
|
|
int32_t ____count;
|
|
int32_t ____freeList;
|
|
int32_t ____freeCount;
|
|
int32_t ____version;
|
|
RuntimeObject* ____comparer;
|
|
KeyCollection_t239EF5D0A11E0FC191504D200AA16CBF508F627B* ____keys;
|
|
ValueCollection_t0E6C33C610591C9C2D5EC272BC420022FFBF163B* ____values;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct EmptyArray_1_t8BE059A4A7E1584B32D6FB4AA57B34CA9D83F358 : public RuntimeObject
|
|
{
|
|
};
|
|
struct EmptyArray_1_t95DB53A55F6F271E301FFF8E7F2AB794A57CF8B3 : public RuntimeObject
|
|
{
|
|
};
|
|
struct EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4 : public RuntimeObject
|
|
{
|
|
};
|
|
struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2 : public RuntimeObject
|
|
{
|
|
};
|
|
struct EqualityComparer_1_t974B6EF56BCA01CA6AD3434C04A3F054C43783CC : public RuntimeObject
|
|
{
|
|
};
|
|
struct List_1_tE031E2B1B3599B1B808F7E565E285D0265829963 : public RuntimeObject
|
|
{
|
|
IProperty_1U5BU5D_tFAC27EA9FD0674D9FCC99719642F64A7B6171AE3* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tB0305892E26D0C482A75FD711E7CF6277D867EAA : public RuntimeObject
|
|
{
|
|
IProperty_1U5BU5D_t9C1586F6699AC465B5A80FDD7A069A2F3A5D4293* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t514193F05FE01729A5ADF1CBD11F2A3282FEA464 : public RuntimeObject
|
|
{
|
|
IProperty_1U5BU5D_tFCC1C6C88AFD37316E9556459D3A5F0754F0CB3A* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t395DB400634B381F180F661D6F23047177C54A41 : public RuntimeObject
|
|
{
|
|
IProperty_1U5BU5D_tA30DD7008E333CF0B8B50C222CB3006FB2C97CA4* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tF5A67096A0D68151D8E28B9AC51E2BEBA8BA6488 : public RuntimeObject
|
|
{
|
|
IProperty_1U5BU5D_t2E32C03298D427EE74750CCAD1176CD70FE87C9B* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t02FDA4992BFC534B37236850E63707788E0AE2AE : public RuntimeObject
|
|
{
|
|
IProperty_1U5BU5D_tB08571964EA7AEC31E211FF54AF52ADCB7765001* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t5D909E7F131356377BE392FFE312172FA301EB67 : public RuntimeObject
|
|
{
|
|
IProperty_1U5BU5D_tDD2A8F80EA98F403B802C0D82CA5A21AB6E7140E* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tF7ED81D8CAE526E27D4579AA1E0D00A211BAE4FE : public RuntimeObject
|
|
{
|
|
IProperty_1U5BU5D_tE7A12954230ED19C6ADF8B0C957A499427AB18E4* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t097837D1E5E15D037E5CC2958A380C5BB39F6B54 : public RuntimeObject
|
|
{
|
|
IProperty_1U5BU5D_t15E888785C0DCA4612FDB0CB16800A7BC8C6E213* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t061B25A9A84AEF321FDDB1F001818B7F63981724 : public RuntimeObject
|
|
{
|
|
IProperty_1U5BU5D_t114AB40D7A9B0463423BA271A9500724F6778D9C* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t9F62F67493B4FDE523DD405881E159817B80CAC2 : public RuntimeObject
|
|
{
|
|
IProperty_1U5BU5D_t2EBC6E373C6A907A8E5526EB7073DD758E0C4D65* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t8C03D59AE9CBDEDECDE563570171B47DCB063CF4 : public RuntimeObject
|
|
{
|
|
IProperty_1U5BU5D_t923FBB25D92CA4479ECEB7F3F1F4932D6C7C2D60* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A : public RuntimeObject
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D : public RuntimeObject
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A : public RuntimeObject
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ____key;
|
|
bool ____value;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* ____next;
|
|
int32_t ____hashcode;
|
|
};
|
|
struct Node_t821211F0535E80E80FDC8FFB600F681E98286BF0 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ____key;
|
|
RuntimeObject* ____value;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* ____next;
|
|
int32_t ____hashcode;
|
|
};
|
|
struct Node_tC5111E77A2002D0AD173457666915D4D0BD59865 : public RuntimeObject {};
|
|
struct ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___list;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___list;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8 : public RuntimeObject
|
|
{
|
|
RuntimeObject* ___list;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB : public RuntimeObject
|
|
{
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* ____buckets;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____locks;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____countPerLock;
|
|
};
|
|
struct Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6 : public RuntimeObject
|
|
{
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* ____buckets;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____locks;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____countPerLock;
|
|
};
|
|
struct Tables_tD895B223685217918C345ED5D52074F7E29E5F95 : public RuntimeObject
|
|
{
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* ____buckets;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ____locks;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ____countPerLock;
|
|
};
|
|
struct EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CNameU3Ek__BackingField;
|
|
};
|
|
struct GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58 : public RuntimeObject
|
|
{
|
|
};
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
int32_t ____stringLength;
|
|
Il2CppChar ____firstChar;
|
|
};
|
|
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 : public RuntimeObject
|
|
{
|
|
int32_t ___m_taskId;
|
|
Delegate_t* ___m_action;
|
|
RuntimeObject* ___m_stateObject;
|
|
TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___m_taskScheduler;
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_parent;
|
|
int32_t ___m_stateFlags;
|
|
RuntimeObject* ___m_continuationObject;
|
|
ContingentProperties_t3FA59480914505CEA917B1002EC675F29D0CB540* ___m_contingentProperties;
|
|
};
|
|
struct TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E : public RuntimeObject
|
|
{
|
|
int32_t ___m_taskSchedulerId;
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D : public RuntimeObject
|
|
{
|
|
};
|
|
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
|
|
{
|
|
};
|
|
struct ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5
|
|
{
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___m_task;
|
|
bool ___m_continueOnCapturedContext;
|
|
};
|
|
struct ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719
|
|
{
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___m_task;
|
|
bool ___m_continueOnCapturedContext;
|
|
};
|
|
struct ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9
|
|
{
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___m_task;
|
|
bool ___m_continueOnCapturedContext;
|
|
};
|
|
struct ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC
|
|
{
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___m_task;
|
|
bool ___m_continueOnCapturedContext;
|
|
};
|
|
struct ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4
|
|
{
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___m_task;
|
|
bool ___m_continueOnCapturedContext;
|
|
};
|
|
struct ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___m_task;
|
|
bool ___m_continueOnCapturedContext;
|
|
};
|
|
struct ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B
|
|
{
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___m_task;
|
|
bool ___m_continueOnCapturedContext;
|
|
};
|
|
struct ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C
|
|
{
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* ___m_task;
|
|
bool ___m_continueOnCapturedContext;
|
|
};
|
|
struct ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_task;
|
|
bool ___m_continueOnCapturedContext;
|
|
};
|
|
struct ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC
|
|
{
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* ___m_task;
|
|
bool ___m_continueOnCapturedContext;
|
|
};
|
|
struct ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A
|
|
{
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___m_task;
|
|
bool ___m_continueOnCapturedContext;
|
|
};
|
|
struct ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* ___m_task;
|
|
bool ___m_continueOnCapturedContext;
|
|
};
|
|
struct ContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC
|
|
{
|
|
float ___sum;
|
|
int32_t ___count;
|
|
};
|
|
struct ContinuationTaskFromResultTask_1_t21D717C4A94ED8DF069846D2343999C1C95F9849 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___m_antecedent;
|
|
};
|
|
struct ContinuationTaskFromResultTask_1_tC87576577E47D9155E48550F3FF98B7BE4578ABF : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___m_antecedent;
|
|
};
|
|
struct ContinuationTaskFromResultTask_1_t9E3D090DA14C151A2E9ADE43FB29EC11D4FAF37E : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___m_antecedent;
|
|
};
|
|
struct ContinuationTaskFromResultTask_1_t5B4CE099E4FA2F6075C238E32EDA472394DF8366 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___m_antecedent;
|
|
};
|
|
struct ContinuationTaskFromResultTask_1_tAE0D398C6A55EAAA6B98F6A654178EB8C7FAEC39 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___m_antecedent;
|
|
};
|
|
struct ContinuationTaskFromResultTask_1_t3ED26B5DC64622CAD8CCE4544E6F7CE63023AA96 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___m_antecedent;
|
|
};
|
|
struct ContinuationTaskFromResultTask_1_tECDC5865BE337E90C43B9DAEC238B4AEE516C9D8 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___m_antecedent;
|
|
};
|
|
struct ContinuationTaskFromResultTask_1_t6FB63BAE2DF893266CE75A70BC8CF666DF2C8B99 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* ___m_antecedent;
|
|
};
|
|
struct ContinuationTaskFromResultTask_1_t0D3B0C43A4B7C9E5D99AAFE95D96D4C2C83096EC : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_antecedent;
|
|
};
|
|
struct ContinuationTaskFromResultTask_1_t6C8EB0D8986768A0697C00E3990E72A52E065000 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* ___m_antecedent;
|
|
};
|
|
struct ContinuationTaskFromResultTask_1_t0A8FDEA74F016A246D22E5545F9D6EA6503B4D52 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___m_antecedent;
|
|
};
|
|
struct ContinuationTaskFromResultTask_1_t2E218599564ED5579F7956163E384B1E5171EF92 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* ___m_antecedent;
|
|
};
|
|
struct KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423
|
|
{
|
|
RuntimeObject* ___key;
|
|
bool ___value;
|
|
};
|
|
struct KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230
|
|
{
|
|
RuntimeObject* ___key;
|
|
RuntimeObject* ___value;
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669;
|
|
struct Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28
|
|
{
|
|
bool ___hasValue;
|
|
int32_t ___value;
|
|
};
|
|
struct Slot_t36E7BD2C949C62077BDCD89A5CA092508944F177
|
|
{
|
|
RuntimeObject* ___Item;
|
|
int32_t ___SequenceNumber;
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct Slot_t15722483BF8D3D9AE95C0F301EAB5E41F7E1E2B9;
|
|
struct Task_1_t824317F4B958F7512E8F7300511752937A6C6043 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
bool ___m_result;
|
|
};
|
|
struct Task_1_t4C228DE57804012969575431CFF12D57C875552D : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
int32_t ___m_result;
|
|
};
|
|
struct Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
int64_t ___m_result;
|
|
};
|
|
struct Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
RuntimeObject* ___m_result;
|
|
};
|
|
struct Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 {};
|
|
struct ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21
|
|
{
|
|
RuntimeObject* ____obj;
|
|
int32_t ____result;
|
|
int16_t ____token;
|
|
bool ____continueOnCapturedContext;
|
|
};
|
|
struct ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215
|
|
{
|
|
RuntimeObject* ____obj;
|
|
RuntimeObject* ____result;
|
|
int16_t ____token;
|
|
bool ____continueOnCapturedContext;
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7;
|
|
struct ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798
|
|
{
|
|
bool ___Item1;
|
|
RuntimeObject* ___Item2;
|
|
};
|
|
struct ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F
|
|
{
|
|
RuntimeObject* ___Item1;
|
|
RuntimeObject* ___Item2;
|
|
int32_t ___Item3;
|
|
};
|
|
struct ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999
|
|
{
|
|
RuntimeObject* ___Item1;
|
|
bool ___Item2;
|
|
bool ___Item3;
|
|
RuntimeObject* ___Item4;
|
|
RuntimeObject* ___Item5;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
bool ___m_value;
|
|
};
|
|
struct CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999 : public EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25
|
|
{
|
|
};
|
|
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED
|
|
{
|
|
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source;
|
|
};
|
|
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_marshaled_pinvoke
|
|
{
|
|
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source;
|
|
};
|
|
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_marshaled_com
|
|
{
|
|
CancellationTokenSource_tAAE1E0033BCFC233801F8CB4CED5C852B350CB7B* ____source;
|
|
};
|
|
struct Color_tD001788D726C3A7F1379BEED0260B9591F440C1F
|
|
{
|
|
float ___r;
|
|
float ___g;
|
|
float ___b;
|
|
float ___a;
|
|
};
|
|
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
|
|
{
|
|
uint64_t ____dateData;
|
|
};
|
|
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB
|
|
{
|
|
RuntimeObject* ____key;
|
|
RuntimeObject* ____value;
|
|
};
|
|
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ____key;
|
|
Il2CppIUnknown* ____value;
|
|
};
|
|
struct DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ____key;
|
|
Il2CppIUnknown* ____value;
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
|
|
{
|
|
};
|
|
struct Ephemeron_t74F279F5E7CF4A0CFC21C822431DD840572C6DA2
|
|
{
|
|
RuntimeObject* ___key;
|
|
RuntimeObject* ___value;
|
|
};
|
|
struct Ephemeron_t74F279F5E7CF4A0CFC21C822431DD840572C6DA2_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ___key;
|
|
Il2CppIUnknown* ___value;
|
|
};
|
|
struct Ephemeron_t74F279F5E7CF4A0CFC21C822431DD840572C6DA2_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ___key;
|
|
Il2CppIUnknown* ___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;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
union
|
|
{
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___Head_OffsetPadding[128];
|
|
int32_t ___Head;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___Head_OffsetPadding_forAlignmentOnly[128];
|
|
int32_t ___Head_forAlignmentOnly;
|
|
};
|
|
#pragma pack(push, tp, 1)
|
|
struct
|
|
{
|
|
char ___Tail_OffsetPadding[256];
|
|
int32_t ___Tail;
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct
|
|
{
|
|
char ___Tail_OffsetPadding_forAlignmentOnly[256];
|
|
int32_t ___Tail_forAlignmentOnly;
|
|
};
|
|
};
|
|
};
|
|
uint8_t PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8__padding[384];
|
|
};
|
|
};
|
|
#pragma pack(pop, tp)
|
|
struct Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D
|
|
{
|
|
float ___m_XMin;
|
|
float ___m_YMin;
|
|
float ___m_Width;
|
|
float ___m_Height;
|
|
};
|
|
struct RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8
|
|
{
|
|
int32_t ___m_XMin;
|
|
int32_t ___m_YMin;
|
|
int32_t ___m_Width;
|
|
int32_t ___m_Height;
|
|
};
|
|
struct Scene_tA1DC762B79745EB5140F054C884855B922318356
|
|
{
|
|
int32_t ___m_Handle;
|
|
};
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
float ___m_value;
|
|
};
|
|
struct SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675
|
|
{
|
|
int32_t ____count;
|
|
};
|
|
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
|
|
{
|
|
uint32_t ___m_value;
|
|
};
|
|
struct ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F
|
|
{
|
|
RuntimeObject* ____obj;
|
|
int16_t ____token;
|
|
bool ____continueOnCapturedContext;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
};
|
|
struct Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A
|
|
{
|
|
int32_t ___m_X;
|
|
int32_t ___m_Y;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
};
|
|
struct Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376
|
|
{
|
|
int32_t ___m_X;
|
|
int32_t ___m_Y;
|
|
int32_t ___m_Z;
|
|
};
|
|
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
float ___w;
|
|
};
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
struct VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC__padding[1];
|
|
};
|
|
};
|
|
struct ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618
|
|
{
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_task;
|
|
bool ___m_continueOnCapturedContext;
|
|
};
|
|
struct ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_marshaled_pinvoke
|
|
{
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_task;
|
|
int32_t ___m_continueOnCapturedContext;
|
|
};
|
|
struct ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_marshaled_com
|
|
{
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_task;
|
|
int32_t ___m_continueOnCapturedContext;
|
|
};
|
|
struct U3CGetEnumeratorU3Ed__35_t09ECA34287F02611E13987D9E41BF974EFD81665 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CU3E1__state;
|
|
KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 ___U3CU3E2__current;
|
|
ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* ___U3CU3E4__this;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* ___U3CbucketsU3E5__2;
|
|
int32_t ___U3CiU3E5__3;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* ___U3CcurrentU3E5__4;
|
|
};
|
|
struct U3CGetEnumeratorU3Ed__35_tFBB72033DD97EBEE1D1AB495DD3A0C1827242215 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CU3E1__state;
|
|
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ___U3CU3E2__current;
|
|
ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* ___U3CU3E4__this;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* ___U3CbucketsU3E5__2;
|
|
int32_t ___U3CiU3E5__3;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* ___U3CcurrentU3E5__4;
|
|
};
|
|
struct U3CGetEnumeratorU3Ed__35_t5851A752199A6195E7EB427BC50C5FFCAB8D4E6E : public RuntimeObject {};
|
|
struct ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71
|
|
{
|
|
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029
|
|
{
|
|
ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719 ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A
|
|
{
|
|
ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9 ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49
|
|
{
|
|
ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C
|
|
{
|
|
ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4 ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A
|
|
{
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8
|
|
{
|
|
ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3
|
|
{
|
|
ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8
|
|
{
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904
|
|
{
|
|
ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF
|
|
{
|
|
ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922
|
|
{
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 ____value;
|
|
};
|
|
struct ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 ____value;
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E;
|
|
struct ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 ____value;
|
|
};
|
|
struct ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 ____value;
|
|
};
|
|
typedef Il2CppFullySharedGenericStruct ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2;
|
|
struct ContinuationResultTaskFromResultTask_2_tADFF403C7660C29F8F9E43FCC385E4F673E3F888 : public Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2
|
|
{
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___m_antecedent;
|
|
};
|
|
struct ContinuationResultTaskFromResultTask_2_t652B5F2AECBB5D4A5D91AE84280AA35C5C3B9AF3 : public Task_1_t824317F4B958F7512E8F7300511752937A6C6043
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_antecedent;
|
|
};
|
|
struct ContinuationResultTaskFromResultTask_2_tFE6AD08AC874472862D080DC4BA28201D1E54D17 : public Task_1_t4C228DE57804012969575431CFF12D57C875552D
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_antecedent;
|
|
};
|
|
struct ContinuationResultTaskFromResultTask_2_tFD8B2EC4EB768D499DCB7A56A0CC8BEBB09E030C : public Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_antecedent;
|
|
};
|
|
struct ContinuationResultTaskFromResultTask_2_tE241885AF8BB892C4B06A3EFCF4380AAACE17582 : public Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_antecedent;
|
|
};
|
|
struct ContinuationResultTaskFromResultTask_2_t3FDCFF62536C178D13893343B38422469380A832 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 {};
|
|
struct ContinuationResultTaskFromTask_1_t218AAB2C3D3EBC8D3DCD7D59E15B9144ACF5CDB4 : public Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2
|
|
{
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___m_antecedent;
|
|
};
|
|
struct ContinuationResultTaskFromTask_1_t1976F69FEC571EFB163944A4437C69446E2BECB3 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572 {};
|
|
struct Enumerator_t94AEE59300B379FF13424743ADEE68A3E360D190 : public RuntimeObject
|
|
{
|
|
ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* ____table;
|
|
int32_t ____currentIndex;
|
|
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ____current;
|
|
};
|
|
struct Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531 : public RuntimeObject
|
|
{
|
|
SlotU5BU5D_t202D2F69C0E5FA34B84D04DFCCFBB57CB7E2F1BD* ____slots;
|
|
int32_t ____slotsMask;
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8 ____headAndTail;
|
|
bool ____preservedForObservation;
|
|
bool ____frozenForEnqueues;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ____nextSegment;
|
|
};
|
|
struct Segment_tBE464478C92438E20009981FD7F953F796D7F3B2 : public RuntimeObject
|
|
{
|
|
SlotU5BU5D_t50AA161D0E0CA4901F88A99B082CD5FA953B023B* ____slots;
|
|
int32_t ____slotsMask;
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8 ____headAndTail;
|
|
bool ____preservedForObservation;
|
|
bool ____frozenForEnqueues;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ____nextSegment;
|
|
};
|
|
struct Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912 : public RuntimeObject
|
|
{
|
|
SlotU5BU5D_t15A614E28C19F61C3F029DFAA2127DA15F293444* ____slots;
|
|
int32_t ____slotsMask;
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8 ____headAndTail;
|
|
bool ____preservedForObservation;
|
|
bool ____frozenForEnqueues;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* ____nextSegment;
|
|
};
|
|
struct Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ___m_result;
|
|
};
|
|
struct Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 ___m_result;
|
|
};
|
|
struct Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F ___m_result;
|
|
};
|
|
struct Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 ___m_result;
|
|
};
|
|
struct Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17 : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC ___m_result;
|
|
};
|
|
struct ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD
|
|
{
|
|
RuntimeObject* ___Item1;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___Item2;
|
|
};
|
|
struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
Action_1_tE8693FF0E67CDBA52BAFB211BFF1844D076ABAFB* ___m_completeCallback;
|
|
};
|
|
struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_pinvoke : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
Il2CppMethodPointer ___m_completeCallback;
|
|
};
|
|
struct AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com : public YieldInstruction_tFCE35FD0907950EFEE9BC2890AC664E41C53728D_marshaled_com
|
|
{
|
|
intptr_t ___m_Ptr;
|
|
Il2CppMethodPointer ___m_completeCallback;
|
|
};
|
|
struct Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Center;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___m_Extents;
|
|
};
|
|
struct BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485
|
|
{
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___m_Position;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___m_Size;
|
|
};
|
|
struct ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C
|
|
{
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C_marshaled_pinvoke
|
|
{
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_marshaled_pinvoke ___m_configuredTaskAwaiter;
|
|
};
|
|
struct ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C_marshaled_com
|
|
{
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618_marshaled_com ___m_configuredTaskAwaiter;
|
|
};
|
|
struct Delegate_t : public RuntimeObject
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
RuntimeObject* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
bool ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_pinvoke
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
struct Delegate_t_marshaled_com
|
|
{
|
|
intptr_t ___method_ptr;
|
|
intptr_t ___invoke_impl;
|
|
Il2CppIUnknown* ___m_target;
|
|
intptr_t ___method;
|
|
intptr_t ___delegate_trampoline;
|
|
intptr_t ___extra_arg;
|
|
intptr_t ___method_code;
|
|
intptr_t ___interp_method;
|
|
intptr_t ___interp_invoke_impl;
|
|
MethodInfo_t* ___method_info;
|
|
MethodInfo_t* ___original_method_info;
|
|
DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E* ___data;
|
|
int32_t ___method_is_virtual;
|
|
};
|
|
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 InstantiationKind_t9B77929786BCA193B4A916F2F25793598CF0DF7D
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Int32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct InternalTaskOptions_tCE714823C2244D02E68D3F0EB682AD5C95EBBEAB
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
|
{
|
|
intptr_t ___value;
|
|
};
|
|
struct StreamingContextStates_t5EE358E619B251608A9327618C7BFE8638FC33C1
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TaskCreationOptions_tB15CB42D61B8958640A7C702A79097B56D5C7ABA
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct TypeCode_tBEF9BE86C8BCF5A6B82F3381219738D27804EF79
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A
|
|
{
|
|
ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F ____value;
|
|
};
|
|
struct ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_marshaled_pinvoke
|
|
{
|
|
ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F ____value;
|
|
};
|
|
struct ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_marshaled_com
|
|
{
|
|
ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F ____value;
|
|
};
|
|
struct ValueTaskSourceOnCompletedFlags_t3181838E33741E1E7338B33740CCEAD38C6B8BFF
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct ValueTaskSourceStatus_t9F496A09D3BF95F42C0C5366D8DEBA49F08C4FD3
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct U3CEnumerateU3Ed__28_tEA742C92FD5C83A0B42BC0D9936D693C00E8AB1E : public RuntimeObject
|
|
{
|
|
int32_t ___U3CU3E1__state;
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD ___U3CU3E2__current;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___head;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___tail;
|
|
int32_t ___tailTail;
|
|
int32_t ___headHead;
|
|
ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* ___U3CU3E4__this;
|
|
int32_t ___U3CheadTailU3E5__2;
|
|
int32_t ___U3CiU3E5__3;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___U3CsU3E5__4;
|
|
int32_t ___U3CiU3E5__5;
|
|
};
|
|
struct ContinuationResultTaskFromResultTask_2_t53DAF1E386BB83E85FBFA8178C1128E87C8BD88E : public Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___m_antecedent;
|
|
};
|
|
struct ContinuationResultTaskFromResultTask_2_t17224214B46D78ABCBC46FD6BCD37FA917551637 : public Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_antecedent;
|
|
};
|
|
struct ContinuationResultTaskFromResultTask_2_tB17BCD7CE5BA4BC24F46DCD294B05DA1BC0E17FB : public Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_antecedent;
|
|
};
|
|
struct ContinuationResultTaskFromResultTask_2_t52C3F61A352BB09AE509E43C63290A435C93C2C9 : public Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_antecedent;
|
|
};
|
|
struct ContinuationResultTaskFromResultTask_2_t9B45F04B9CD22006B41DA806CDB29C6A534DB167 : public Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_antecedent;
|
|
};
|
|
struct ContinuationResultTaskFromResultTask_2_t34E6D9F8AC9E351A8A1C38A6FB53DE6A2C0EC13D : public Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_antecedent;
|
|
};
|
|
struct PropertyBag_1_tD413081183D831D5FD1DB047C6388E9EA8522318 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CInstantiationKindU3Ek__BackingField;
|
|
};
|
|
struct PropertyBag_1_tFA4D14E31A2A501D102D88481DCBC9501A6EF390 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CInstantiationKindU3Ek__BackingField;
|
|
};
|
|
struct PropertyBag_1_t0967321B2D6F146150A7805676EB01A1FD0E97B6 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CInstantiationKindU3Ek__BackingField;
|
|
};
|
|
struct PropertyBag_1_tE522EC0E4E4C916EBF192933D686DEFDD27B9474 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CInstantiationKindU3Ek__BackingField;
|
|
};
|
|
struct PropertyBag_1_t2F1387D95A1E9B93E66C397645BFB8BCD265219B : public RuntimeObject
|
|
{
|
|
int32_t ___U3CInstantiationKindU3Ek__BackingField;
|
|
};
|
|
struct PropertyBag_1_tC24A0A7B21F69286D618A79A4F7CD6F8E9E64E46 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CInstantiationKindU3Ek__BackingField;
|
|
};
|
|
struct PropertyBag_1_t1E23861777A25A773264A698434477DCE18B34CF : public RuntimeObject
|
|
{
|
|
int32_t ___U3CInstantiationKindU3Ek__BackingField;
|
|
};
|
|
struct PropertyBag_1_tA16FBB091D74A21AC539D829F65E5E8FAF2DB075 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CInstantiationKindU3Ek__BackingField;
|
|
};
|
|
struct PropertyBag_1_t91378217184AE0BD640D9A003EF2CB208071D593 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CInstantiationKindU3Ek__BackingField;
|
|
};
|
|
struct PropertyBag_1_tDA117C10FEABA385803A90E976050FB2D270FAD2 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CInstantiationKindU3Ek__BackingField;
|
|
};
|
|
struct PropertyBag_1_tD11940BE9DAD74F61B141A397F3D5722E7FF2601 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CInstantiationKindU3Ek__BackingField;
|
|
};
|
|
struct PropertyBag_1_t74F4963AD6B656900B7CACFC37AC3CDDDF818409 : public RuntimeObject
|
|
{
|
|
int32_t ___U3CInstantiationKindU3Ek__BackingField;
|
|
};
|
|
struct Slot_t76F3F8DA7F0B088410FD417307CC6706A16D4088
|
|
{
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD ___Item;
|
|
int32_t ___SequenceNumber;
|
|
};
|
|
struct Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
int32_t ___m_result;
|
|
};
|
|
struct MulticastDelegate_t : public Delegate_t
|
|
{
|
|
DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771* ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke
|
|
{
|
|
Delegate_t_marshaled_pinvoke** ___delegates;
|
|
};
|
|
struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com
|
|
{
|
|
Delegate_t_marshaled_com** ___delegates;
|
|
};
|
|
struct SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A
|
|
{
|
|
Scene_tA1DC762B79745EB5140F054C884855B922318356 ___m_Scene;
|
|
AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C* ___m_Operation;
|
|
};
|
|
struct SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A_marshaled_pinvoke
|
|
{
|
|
Scene_tA1DC762B79745EB5140F054C884855B922318356 ___m_Scene;
|
|
AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_pinvoke ___m_Operation;
|
|
};
|
|
struct SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A_marshaled_com
|
|
{
|
|
Scene_tA1DC762B79745EB5140F054C884855B922318356 ___m_Scene;
|
|
AsyncOperation_tD2789250E4B098DEDA92B366A577E500A92D2D3C_marshaled_com* ___m_Operation;
|
|
};
|
|
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677
|
|
{
|
|
RuntimeObject* ___m_additionalContext;
|
|
int32_t ___m_state;
|
|
};
|
|
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_pinvoke
|
|
{
|
|
Il2CppIUnknown* ___m_additionalContext;
|
|
int32_t ___m_state;
|
|
};
|
|
struct StreamingContext_t56760522A751890146EE45F82F866B55B7E33677_marshaled_com
|
|
{
|
|
Il2CppIUnknown* ___m_additionalContext;
|
|
int32_t ___m_state;
|
|
};
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl;
|
|
};
|
|
struct Action_1_tE7E60800BAB8D8D90AE806130B19787F3CD867DC : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_tCC3B5679C4B7925785C6055A266DE1D9E1220607 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t55BF2E340CAEB91E47B90E3EFF59120EDBDCC98D : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_tC00AB03D2E40EC53D13387EBDF0DBD1FBCA6F123 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t12D515BBBDB69A29DC0C4812555D0A8A51D6B856 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_tD921DD4207843C7FA208DF2A04B64A7EC6EE90F1 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_tC3BD22662CBF7BCA7CF101E25DD9C3BC0C8058B4 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t14B26BAC2002B527764811C43BAEC429C3B25446 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t0328A8A468C762DAECEC2BDBE23D4E47955D8678 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t839F3E949693088C3B23DB29849AC0CA1A2583BA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t2A5DF92F66A322B1138DECB857638383A0616590 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_tE6E50482E4ADBDF3F8AAB2E1468F55A7DF4BB182 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t12B97C2411B381417D267317B83796945763B77F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_tB323E678D9134E8D74D87649A85A082FF718934E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t58329FB9FD988D2BA8B903095C0571509D45FDBF : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t0997F02B602DB9E76CB2F8B8E9962030CCE2D59C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_tB24338D0D12EC5B856C3E6331A8CBF67693F2968 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_tAC9CD6807BFD5D7CA53A98BD1CA72DC380606690 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t134192076C48EB6DAB17640388597B62F563A686 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t7599F1A874E645E7131D6D33F960155F7DBB019E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t688A348E6918A7E3E4FE534B179A3DFDCF958DED : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_tF48592AA21538CB1125537B525EA5254EEF3581C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t69E25DD22422E23B12565DA2320B148058096C8E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_tFDA59A266B876E9846989E1EC1AC2B92BC20CEDA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ContainerPropertyBag_1_t2279C723A3D81E0BE90A787349C987FC490033EF : public PropertyBag_1_tD413081183D831D5FD1DB047C6388E9EA8522318
|
|
{
|
|
List_1_tE031E2B1B3599B1B808F7E565E285D0265829963* ___m_PropertiesList;
|
|
Dictionary_2_t4DFECF621C500453991651A5A026D9FCC484C340* ___m_PropertiesHash;
|
|
};
|
|
struct ContainerPropertyBag_1_t3A0DBCD09BBF64291800B0275CC7E1F2EECA0FEF : public PropertyBag_1_tFA4D14E31A2A501D102D88481DCBC9501A6EF390
|
|
{
|
|
List_1_tB0305892E26D0C482A75FD711E7CF6277D867EAA* ___m_PropertiesList;
|
|
Dictionary_2_tBCB806C16A2ADAA77600E3249746F7B6CB638FB1* ___m_PropertiesHash;
|
|
};
|
|
struct ContainerPropertyBag_1_t4B3135B801859CF3F6877AEC19D1DA289FFC301D : public PropertyBag_1_t0967321B2D6F146150A7805676EB01A1FD0E97B6
|
|
{
|
|
List_1_t514193F05FE01729A5ADF1CBD11F2A3282FEA464* ___m_PropertiesList;
|
|
Dictionary_2_tF0CBEE260E4459BD7FBD88642D10D13072A1733B* ___m_PropertiesHash;
|
|
};
|
|
struct ContainerPropertyBag_1_tA2A29BDB4DB4DD00EDAB85E6154345DEEC0BF63B : public PropertyBag_1_tE522EC0E4E4C916EBF192933D686DEFDD27B9474
|
|
{
|
|
List_1_t395DB400634B381F180F661D6F23047177C54A41* ___m_PropertiesList;
|
|
Dictionary_2_tD654CA36EB61C368D46FEE82344A2850BBD293DC* ___m_PropertiesHash;
|
|
};
|
|
struct ContainerPropertyBag_1_t2A9DE8C991C6C2537259B466807EEEFC4B68B0E6 : public PropertyBag_1_t2F1387D95A1E9B93E66C397645BFB8BCD265219B
|
|
{
|
|
List_1_tF5A67096A0D68151D8E28B9AC51E2BEBA8BA6488* ___m_PropertiesList;
|
|
Dictionary_2_t493CD60A61DC7E34769F611A3B574105A00F7C8E* ___m_PropertiesHash;
|
|
};
|
|
struct ContainerPropertyBag_1_t34F580FC14E2EF6488F9B8CEE5D00BE38DBC2496 : public PropertyBag_1_tC24A0A7B21F69286D618A79A4F7CD6F8E9E64E46
|
|
{
|
|
List_1_t02FDA4992BFC534B37236850E63707788E0AE2AE* ___m_PropertiesList;
|
|
Dictionary_2_tB38AB04EAE4BF1A8AB4F3EB5C6D61C0BA1C63485* ___m_PropertiesHash;
|
|
};
|
|
struct ContainerPropertyBag_1_tFC736A3382282864C67252047BC56B960AD3C486 : public PropertyBag_1_t1E23861777A25A773264A698434477DCE18B34CF
|
|
{
|
|
List_1_t5D909E7F131356377BE392FFE312172FA301EB67* ___m_PropertiesList;
|
|
Dictionary_2_tE037C9F1FF6B6E97DF0AE5A0BE4042375C5D9D8C* ___m_PropertiesHash;
|
|
};
|
|
struct ContainerPropertyBag_1_t5E98E44A087C66C99B6B48FE49F35A9460817892 : public PropertyBag_1_tA16FBB091D74A21AC539D829F65E5E8FAF2DB075
|
|
{
|
|
List_1_tF7ED81D8CAE526E27D4579AA1E0D00A211BAE4FE* ___m_PropertiesList;
|
|
Dictionary_2_t4A4C489FCB5A50BCD97D454B320936FFB26B6259* ___m_PropertiesHash;
|
|
};
|
|
struct ContainerPropertyBag_1_tA7C51CF32C3F7B0B198B114B368B2E5BA498D33E : public PropertyBag_1_t91378217184AE0BD640D9A003EF2CB208071D593
|
|
{
|
|
List_1_t097837D1E5E15D037E5CC2958A380C5BB39F6B54* ___m_PropertiesList;
|
|
Dictionary_2_tAFF77A63BAC70A823CF7D433372A35F9A9FA53F9* ___m_PropertiesHash;
|
|
};
|
|
struct ContainerPropertyBag_1_tC5EF4ED9E953B090F0F1A7314A738165FB6277B8 : public PropertyBag_1_tDA117C10FEABA385803A90E976050FB2D270FAD2
|
|
{
|
|
List_1_t061B25A9A84AEF321FDDB1F001818B7F63981724* ___m_PropertiesList;
|
|
Dictionary_2_tF48CBAD539B087D7950015E9ACC37504C4F7F095* ___m_PropertiesHash;
|
|
};
|
|
struct ContainerPropertyBag_1_t827E6E22E54C7702E357022F57F04833A6FAF09E : public PropertyBag_1_tD11940BE9DAD74F61B141A397F3D5722E7FF2601
|
|
{
|
|
List_1_t9F62F67493B4FDE523DD405881E159817B80CAC2* ___m_PropertiesList;
|
|
Dictionary_2_t4C7611B1B9A7003542D940F8505DCFF0186D9648* ___m_PropertiesHash;
|
|
};
|
|
struct ContainerPropertyBag_1_t47684299E462BBF7DC930C28B27E8A8008478424 : public PropertyBag_1_t74F4963AD6B656900B7CACFC37AC3CDDDF818409
|
|
{
|
|
List_1_t8C03D59AE9CBDEDECDE563570171B47DCB063CF4* ___m_PropertiesList;
|
|
Dictionary_2_t5FB44F403798E1529E205CBF14632F00AAC18879* ___m_PropertiesHash;
|
|
};
|
|
struct ContextCallback_1_t641F0181553019D1F6BFEAE7F9789631588EF81D : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ContinuationResultTaskFromResultTask_2_tB0B2799B9613DDD6F77B6B5890525D78B07E6534 : public Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_antecedent;
|
|
};
|
|
struct Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct CreateValueCallback_t85D075DDCAD202B428EC47723590605681FE2BD1 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t53C16EDB9A3E0F3470F3AFDC2589E59CC5AF63D5 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tCAA612459A254A772A62B258A3DEF8F628BFFA14 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tD4DDFE1683E01166E2F8934282DC94BBDCD37DED : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t710C9443E65A47F34F20273E119C67F86A4F6618 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tF3F851D4A7EE63295D4A27756EE77F24346954BA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t9217EFFDF0F926C559DEA0624F254D87134FC073 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tC4EF69AA76D73F932F643A1A2F61B8E102C1E756 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t4A7100D6CA55E0D5E840D600DD4C004E374EA0C4 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tF55433C2E934D2C7FCCC31245AE7E2731A7C04DA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t14F0C1442EA414868F293290E263005881E270CD : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t374ECF90050F953CFA1EB9E9CE02A9C76AC292B2 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t1AD23BAD40F98053E72168B8ECBE30D235D80AA7 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t79586ED298818483600EFEA82001DCE9C509204B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tCEEA1029036C146011A9093868E254F314AB661E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t9BDD2E959989A0F342560C7A37F50108887A6F4F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tA0EEFAE7C92638659E9BB0B7413EAA91B94F9856 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tCD5AA4A296D960BBF4C4F87A28930EAEE61EFD66 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tFE7563C0628D7F87CCDC5B6B1027F20F842C6A9B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t9A0D493A82DCC47C9C819A3B045E02D9B5DDCE1B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t213311159653563BDCC21CC060B449705C96791F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t78D13C74B0F5A1DD640F8722F0AFB5F5144EAB97 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tACBF5A1656250800CE861707354491F0611F6624 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t1997BD152D2F0085C9F00A883F4BE34C90ADDA8B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t71FA99F7C6CDD51A4C237B5165867D485B0735EA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t771FE8EE731C9D8BA2456DA5169FA459ED5D38D3 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_tC80EBD402669FA7B2BD1805B8BCE9575CFCA7E22 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t741E34C10F6FE17B3BA3853E4763638628690208 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tF1E460056412D39AFBCC5042F0EA0552F8B64345 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t3C035C4481D7553088B1824393D0A937F0B017AB : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t67613617ED6D0678EC039E4D97DC38B8049B72E4 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tCB81839DD3418F2A0788EB43DA278B7D6693BEA7 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tC0A2388D48F4EB5BDED4835CBEA96A87B3D62D71 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tB0721508F3796CC22DD7A5D2D9D9697DC1E974D0 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t7318E37306A270D9D4368630319FB5EAE41EE343 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t4944E5E5F13CAC7D326C07B48FC1CB2E02818679 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t6BFD0508E30AF0D3CFA47658967899EDB15F686B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t0E081CDB7B5E8262004CBC882A738B3951375D06 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tD95F3399CA13499EB2DAC0BFE6F4632D70E79620 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t22D2883D2955083AC7B0ACF58C1BFCF6C149341D : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tB5711B7F2A432B77A744459F7B51F7535CEEC8F9 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t38806CDE2B8FBE2C46D0183F71E027E08C5FA249 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t79EFC91BEF9A031A23D922845DF2FE0FA0BBAB94 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t2F9CFB060EDA36879A7FAA60EC81BC7513350072 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t397C51E8BB1FEA88F253F683670464827DD4BDAA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tFCEB9D8CEAECBF6D0AD5440F96C6F9010270CE79 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t8F3E514F3F44D98D0029402DBF664E587850807D : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t28A9636B716326D9E31566B1E8ECBDEFDB0192CE : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t60F75FC08D90822EE0350881730189B813F24589 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tAB0692B406AF1455ADB5F518BF283E084B5E8566 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t5D594C7555DF6F84FA098E3F3DE55B9FF132E49A : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t978E495A2CFACF4BCDA24F740600DD6A8BEB2435 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_tF6961E555C9FB4ED507E9C2DBFF6165C17476260 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Func_3_t01CB5BB0F8B9B9E6887C0D062E05CA499BA73A3B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F : public Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572
|
|
{
|
|
SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A ___m_result;
|
|
};
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
String_t* ____paramName;
|
|
};
|
|
struct ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct ContinuationResultTaskFromResultTask_2_t6EC4E1B1A38AA828A716EBE2ACA0DAD4D4620740 : public Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___m_antecedent;
|
|
};
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
};
|
|
struct ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
RuntimeObject* ____actualValue;
|
|
};
|
|
struct OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C : public ArithmeticException_t07E77822D0007642BC8959A671E70D1F33C84FEA
|
|
{
|
|
};
|
|
struct ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01_StaticFields
|
|
{
|
|
bool ___s_isValueWriteAtomic;
|
|
};
|
|
struct ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF_StaticFields
|
|
{
|
|
bool ___s_isValueWriteAtomic;
|
|
};
|
|
struct ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812_StaticFields
|
|
{
|
|
bool ___s_isValueWriteAtomic;
|
|
};
|
|
struct EmptyArray_1_t8BE059A4A7E1584B32D6FB4AA57B34CA9D83F358_StaticFields
|
|
{
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* ___Value;
|
|
};
|
|
struct EmptyArray_1_t95DB53A55F6F271E301FFF8E7F2AB794A57CF8B3_StaticFields
|
|
{
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ___Value;
|
|
};
|
|
struct EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4_StaticFields
|
|
{
|
|
EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* ___defaultComparer;
|
|
};
|
|
struct EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2_StaticFields
|
|
{
|
|
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* ___defaultComparer;
|
|
};
|
|
struct EqualityComparer_1_t974B6EF56BCA01CA6AD3434C04A3F054C43783CC_StaticFields
|
|
{
|
|
EqualityComparer_1_t974B6EF56BCA01CA6AD3434C04A3F054C43783CC* ___defaultComparer;
|
|
};
|
|
struct List_1_tE031E2B1B3599B1B808F7E565E285D0265829963_StaticFields
|
|
{
|
|
IProperty_1U5BU5D_tFAC27EA9FD0674D9FCC99719642F64A7B6171AE3* ___s_emptyArray;
|
|
};
|
|
struct List_1_tB0305892E26D0C482A75FD711E7CF6277D867EAA_StaticFields
|
|
{
|
|
IProperty_1U5BU5D_t9C1586F6699AC465B5A80FDD7A069A2F3A5D4293* ___s_emptyArray;
|
|
};
|
|
struct List_1_t514193F05FE01729A5ADF1CBD11F2A3282FEA464_StaticFields
|
|
{
|
|
IProperty_1U5BU5D_tFCC1C6C88AFD37316E9556459D3A5F0754F0CB3A* ___s_emptyArray;
|
|
};
|
|
struct List_1_t395DB400634B381F180F661D6F23047177C54A41_StaticFields
|
|
{
|
|
IProperty_1U5BU5D_tA30DD7008E333CF0B8B50C222CB3006FB2C97CA4* ___s_emptyArray;
|
|
};
|
|
struct List_1_tF5A67096A0D68151D8E28B9AC51E2BEBA8BA6488_StaticFields
|
|
{
|
|
IProperty_1U5BU5D_t2E32C03298D427EE74750CCAD1176CD70FE87C9B* ___s_emptyArray;
|
|
};
|
|
struct List_1_t02FDA4992BFC534B37236850E63707788E0AE2AE_StaticFields
|
|
{
|
|
IProperty_1U5BU5D_tB08571964EA7AEC31E211FF54AF52ADCB7765001* ___s_emptyArray;
|
|
};
|
|
struct List_1_t5D909E7F131356377BE392FFE312172FA301EB67_StaticFields
|
|
{
|
|
IProperty_1U5BU5D_tDD2A8F80EA98F403B802C0D82CA5A21AB6E7140E* ___s_emptyArray;
|
|
};
|
|
struct List_1_tF7ED81D8CAE526E27D4579AA1E0D00A211BAE4FE_StaticFields
|
|
{
|
|
IProperty_1U5BU5D_tE7A12954230ED19C6ADF8B0C957A499427AB18E4* ___s_emptyArray;
|
|
};
|
|
struct List_1_t097837D1E5E15D037E5CC2958A380C5BB39F6B54_StaticFields
|
|
{
|
|
IProperty_1U5BU5D_t15E888785C0DCA4612FDB0CB16800A7BC8C6E213* ___s_emptyArray;
|
|
};
|
|
struct List_1_t061B25A9A84AEF321FDDB1F001818B7F63981724_StaticFields
|
|
{
|
|
IProperty_1U5BU5D_t114AB40D7A9B0463423BA271A9500724F6778D9C* ___s_emptyArray;
|
|
};
|
|
struct List_1_t9F62F67493B4FDE523DD405881E159817B80CAC2_StaticFields
|
|
{
|
|
IProperty_1U5BU5D_t2EBC6E373C6A907A8E5526EB7073DD758E0C4D65* ___s_emptyArray;
|
|
};
|
|
struct List_1_t8C03D59AE9CBDEDECDE563570171B47DCB063CF4_StaticFields
|
|
{
|
|
IProperty_1U5BU5D_t923FBB25D92CA4479ECEB7F3F1F4932D6C7C2D60* ___s_emptyArray;
|
|
};
|
|
struct List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A_StaticFields
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___s_emptyArray;
|
|
};
|
|
struct List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D_StaticFields
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___s_emptyArray;
|
|
};
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A_StaticFields
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___s_emptyArray;
|
|
};
|
|
struct GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_StaticFields
|
|
{
|
|
RuntimeObject* ___EPHEMERON_TOMBSTONE;
|
|
};
|
|
struct String_t_StaticFields
|
|
{
|
|
String_t* ___Empty;
|
|
};
|
|
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_StaticFields
|
|
{
|
|
int32_t ___s_taskIdCounter;
|
|
RuntimeObject* ___s_taskCompletionSentinel;
|
|
bool ___s_asyncDebuggingEnabled;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___s_taskCancelCallback;
|
|
Func_1_tD59A12717D79BFB403BF973694B1BE5B85474BD1* ___s_createContingentProperties;
|
|
TaskFactory_tF781BD37BE23917412AD83424D1497C7C1509DF0* ___U3CFactoryU3Ek__BackingField;
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___U3CCompletedTaskU3Ek__BackingField;
|
|
Predicate_1_t7F48518B008C1472339EEEBABA3DE203FE1F26ED* ___s_IsExceptionObservedByParentPredicate;
|
|
ContextCallback_tE8AFBDBFCC040FDA8DA8C1EEFE9BD66B16BDA007* ___s_ecCallback;
|
|
Predicate_1_t8342C85FF4E41CD1F7024AC0CDC3E5312A32CB12* ___s_IsTaskContinuationNullPredicate;
|
|
Dictionary_2_t403063CE4960B4F46C688912237C6A27E550FF55* ___s_currentActiveTasks;
|
|
RuntimeObject* ___s_activeTasksLock;
|
|
};
|
|
struct Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_ThreadStaticFields
|
|
{
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___t_currentTask;
|
|
StackGuard_tACE063A1B7374BDF4AD472DE4585D05AD8745352* ___t_stackGuard;
|
|
};
|
|
struct TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E_StaticFields
|
|
{
|
|
ConditionalWeakTable_2_t815A43BFBA64EC1F9F92AD042622E80EED65712E* ___s_activeTaskSchedulers;
|
|
TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___s_defaultTaskScheduler;
|
|
int32_t ___s_taskSchedulerIdCounter;
|
|
EventHandler_1_tE698654C3F437D97ABCCA3FD0AD8F86E776DC77A* ____unobservedTaskException;
|
|
Lock_t529C04C831C120E5FFD6039EC3CB76F9956BCDD7* ____unobservedTaskExceptionLockObject;
|
|
};
|
|
struct Task_1_t824317F4B958F7512E8F7300511752937A6C6043_StaticFields
|
|
{
|
|
TaskFactory_1_tFAEAC22A1E986463E6956C344A78A7C7197288E0* ___s_defaultFactory;
|
|
};
|
|
struct Task_1_t4C228DE57804012969575431CFF12D57C875552D_StaticFields
|
|
{
|
|
TaskFactory_1_t0BEF06D58E44525B9135AB0B22D016856EE69FF3* ___s_defaultFactory;
|
|
};
|
|
struct Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F_StaticFields
|
|
{
|
|
TaskFactory_1_t7AD5FF56CD0FBD6843796AC47F4A1949F8E936DC* ___s_defaultFactory;
|
|
};
|
|
struct Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2_StaticFields
|
|
{
|
|
TaskFactory_1_t6F188FE70F3006B0386002E392B799D85100732B* ___s_defaultFactory;
|
|
};
|
|
struct Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9_StaticFields
|
|
{
|
|
TaskFactory_1_tF4CDC5BDA20AE9BD3F65B6146CDCD3F753003E1D* ___s_defaultFactory;
|
|
};
|
|
struct ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21_StaticFields
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___s_canceledTask;
|
|
};
|
|
struct ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215_StaticFields
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___s_canceledTask;
|
|
};
|
|
struct ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7_StaticFields
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* ___s_canceledTask;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
String_t* ___TrueString;
|
|
String_t* ___FalseString;
|
|
};
|
|
struct CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_StaticFields
|
|
{
|
|
CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999* ___Log;
|
|
};
|
|
struct CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED_StaticFields
|
|
{
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___s_actionToActionObjShunt;
|
|
};
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
intptr_t ___Zero;
|
|
};
|
|
struct SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_StaticFields
|
|
{
|
|
int32_t ___SpinCountforSpinBeforeWait;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector;
|
|
};
|
|
struct Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A_StaticFields
|
|
{
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Zero;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_One;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Up;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Down;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Left;
|
|
Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A ___s_Right;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector;
|
|
};
|
|
struct Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376_StaticFields
|
|
{
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Zero;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_One;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Up;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Down;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Left;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Right;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Forward;
|
|
Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376 ___s_Back;
|
|
};
|
|
struct Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3_StaticFields
|
|
{
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___zeroVector;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___oneVector;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___positiveInfinityVector;
|
|
Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3 ___negativeInfinityVector;
|
|
};
|
|
struct Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7_StaticFields
|
|
{
|
|
TaskFactory_1_tAE919A7BAE255B9F6EF5F440E30D3AF6A9C9322E* ___s_defaultFactory;
|
|
};
|
|
struct Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D_StaticFields
|
|
{
|
|
TaskFactory_1_t33023AA72DA5D4155ACB9DF7BD7465ABE4589718* ___s_defaultFactory;
|
|
};
|
|
struct Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C_StaticFields
|
|
{
|
|
TaskFactory_1_tAC05D6D406D9ADEA2435D7C2A76B69CC6C6D56B2* ___s_defaultFactory;
|
|
};
|
|
struct Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A_StaticFields
|
|
{
|
|
TaskFactory_1_t01F66E25A9E51E68DEBCF993CDB5F163B96834D4* ___s_defaultFactory;
|
|
};
|
|
struct Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17_StaticFields
|
|
{
|
|
TaskFactory_1_t4BEAD6CE2527DBE682C128CEAA0FF2A79483E96C* ___s_defaultFactory;
|
|
};
|
|
struct ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_StaticFields
|
|
{
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* ___s_invokeActionDelegate;
|
|
};
|
|
struct Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB_StaticFields
|
|
{
|
|
TaskFactory_1_t96AF1AA119B568BA8916E7FD621B61B350B9BB49* ___s_defaultFactory;
|
|
};
|
|
struct Type_t_StaticFields
|
|
{
|
|
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder;
|
|
Il2CppChar ___Delimiter;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes;
|
|
RuntimeObject* ___Missing;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase;
|
|
};
|
|
struct Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F_StaticFields
|
|
{
|
|
TaskFactory_1_tB7A1CB3B51FA5F527D22DD05E17198544202FB62* ___s_defaultFactory;
|
|
};
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
struct NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* m_Items[1];
|
|
|
|
inline Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
|
|
|
|
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int32_t m_Items[1];
|
|
|
|
inline int32_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int32_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int32_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int32_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 m_Items[1];
|
|
|
|
inline KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key), (void*)NULL);
|
|
}
|
|
inline KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key), (void*)NULL);
|
|
}
|
|
};
|
|
struct DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB m_Items[1];
|
|
|
|
inline DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____key), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____key), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->____value), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
struct NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* m_Items[1];
|
|
|
|
inline Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Node_t821211F0535E80E80FDC8FFB600F681E98286BF0** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Node_t821211F0535E80E80FDC8FFB600F681E98286BF0** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 m_Items[1];
|
|
|
|
inline KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
struct NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Node_tC5111E77A2002D0AD173457666915D4D0BD59865* m_Items[1];
|
|
|
|
inline Node_tC5111E77A2002D0AD173457666915D4D0BD59865* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Node_tC5111E77A2002D0AD173457666915D4D0BD59865** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Node_tC5111E77A2002D0AD173457666915D4D0BD59865* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Node_tC5111E77A2002D0AD173457666915D4D0BD59865* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Node_tC5111E77A2002D0AD173457666915D4D0BD59865** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Node_tC5111E77A2002D0AD173457666915D4D0BD59865* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57 : 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);
|
|
}
|
|
};
|
|
struct ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD m_Items[1];
|
|
|
|
inline ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item1), (void*)NULL);
|
|
}
|
|
inline ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item1), (void*)NULL);
|
|
}
|
|
};
|
|
struct SlotU5BU5D_t202D2F69C0E5FA34B84D04DFCCFBB57CB7E2F1BD : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Slot_t76F3F8DA7F0B088410FD417307CC6706A16D4088 m_Items[1];
|
|
|
|
inline Slot_t76F3F8DA7F0B088410FD417307CC6706A16D4088 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Slot_t76F3F8DA7F0B088410FD417307CC6706A16D4088* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Slot_t76F3F8DA7F0B088410FD417307CC6706A16D4088 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___Item))->___Item1), (void*)NULL);
|
|
}
|
|
inline Slot_t76F3F8DA7F0B088410FD417307CC6706A16D4088 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Slot_t76F3F8DA7F0B088410FD417307CC6706A16D4088* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Slot_t76F3F8DA7F0B088410FD417307CC6706A16D4088 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___Item))->___Item1), (void*)NULL);
|
|
}
|
|
};
|
|
struct SlotU5BU5D_t50AA161D0E0CA4901F88A99B082CD5FA953B023B : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Slot_t36E7BD2C949C62077BDCD89A5CA092508944F177 m_Items[1];
|
|
|
|
inline Slot_t36E7BD2C949C62077BDCD89A5CA092508944F177 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Slot_t36E7BD2C949C62077BDCD89A5CA092508944F177* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Slot_t36E7BD2C949C62077BDCD89A5CA092508944F177 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item), (void*)NULL);
|
|
}
|
|
inline Slot_t36E7BD2C949C62077BDCD89A5CA092508944F177 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Slot_t36E7BD2C949C62077BDCD89A5CA092508944F177* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Slot_t36E7BD2C949C62077BDCD89A5CA092508944F177 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___Item), (void*)NULL);
|
|
}
|
|
};
|
|
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);
|
|
}
|
|
};
|
|
struct SlotU5BU5D_t15A614E28C19F61C3F029DFAA2127DA15F293444 : 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);
|
|
}
|
|
};
|
|
struct EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Ephemeron_t74F279F5E7CF4A0CFC21C822431DD840572C6DA2 m_Items[1];
|
|
|
|
inline Ephemeron_t74F279F5E7CF4A0CFC21C822431DD840572C6DA2 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Ephemeron_t74F279F5E7CF4A0CFC21C822431DD840572C6DA2* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Ephemeron_t74F279F5E7CF4A0CFC21C822431DD840572C6DA2 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline Ephemeron_t74F279F5E7CF4A0CFC21C822431DD840572C6DA2 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Ephemeron_t74F279F5E7CF4A0CFC21C822431DD840572C6DA2* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Ephemeron_t74F279F5E7CF4A0CFC21C822431DD840572C6DA2 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___key), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___value), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
struct DelegateU5BU5D_tC5AB7E8F745616680F337909D3A8E6C722CDF771 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Delegate_t* m_Items[1];
|
|
|
|
inline Delegate_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, Delegate_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline Delegate_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Delegate_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) bool m_Items[1];
|
|
|
|
inline bool GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline bool* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, bool value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
|
|
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_get_DefaultConcurrencyLevel_mD7DC17E84C31ED78EF42461417C8D456B258AA4C_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__ctor_m3ACA8D6DD9C6CE2A15779437FB6E1F521E8FA35B_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, int32_t ___0_concurrencyLevel, int32_t ___1_capacity, bool ___2_growLockArray, RuntimeObject* ___3_comparer, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_m94A9BD1AEA6EA0A8BEE3739A3881F479181638C4_gshared_inline (KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_mC3C5F83458F19B6276D6E090A86CFDADE6EFAAD8_gshared_inline (KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryAddInternal_m478FF4445C5B3FF276773864AB82454184440F3B_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, int32_t ___1_hashcode, bool ___2_value, bool ___3_updateIfExists, bool ___4_acquireLock, bool* ___5_resultingValue, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tables__ctor_m70463E7A4F0DC7B3CE891A5DB241842EA485D81A_gshared (Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* __this, NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* ___0_buckets, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_locks, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___2_countPerLock, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* EqualityComparer_1_get_Default_mA2AD755281D23F496A2579884B39E30C13C208B3_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryGetValue_mBE5FFB39C0B097B2C03D83B46C57B1F43C3CC6C9_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryRemoveInternal_mF10F36564ED747935E5679EE4DA7FC2BAE381E73_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool* ___1_value, bool ___2_matchValue, bool ___3_oldValue, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_GetBucketAndLockNo_m441AE35CF9D1725D80BFC34B375B980AE14CC0E5_gshared (int32_t ___0_hashcode, int32_t* ___1_bucketNo, int32_t* ___2_lockNo, int32_t ___3_bucketCount, int32_t ___4_lockCount, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* EqualityComparer_1_get_Default_mBB75BC0723DFD7850F43E72E34026DD070CF5932_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryGetValueInternal_mC90C1584E0980D7B1B488EF4C3E36DC009425712_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, int32_t ___1_hashcode, bool* ___2_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_GetBucket_m1DBE0B3399F83861D75B966C6A0E037316DDFFDD_gshared (int32_t ___0_hashcode, int32_t ___1_bucketCount, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ReleaseLocks_mA71B853F13E7FAF3AC663B6AEB45CEC022A4D260_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_AcquireAllLocks_m1B0055803C381184BE69298304EB2304F72DFC4A_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, int32_t* ___0_locksAcquired, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToPairs_m900F67D62C3766A28B46354A6532421B8568B5FF_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* ___0_array, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* Array_Empty_TisKeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423_m33FD39B66E19241823DC3F53991FB83782F331C2_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m57BB84A94F6F00F1CADA0C8C921E726D8D4A4854_gshared (KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423* __this, RuntimeObject* ___0_key, bool ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__35__ctor_m93C3CB201F9E0CAC03BD99789457E0DF0502B0B7_gshared (U3CGetEnumeratorU3Ed__35_t09ECA34287F02611E13987D9E41BF974EFD81665* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Node__ctor_m5A8CED36390839315C7E6E815D1215D9B001EEF4_gshared (Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* __this, RuntimeObject* ___0_key, bool ___1_value, int32_t ___2_hashcode, Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* ___3_next, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_GrowTable_mEA819466FD8756C4266E057D366223A929D000BC_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* ___0_tables, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ThrowKeyNotFoundException_m2B3EA5F3FAF548B98775CAFCFD3C77C4A712F236_gshared (RuntimeObject* ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_GetCountInternal_m3607F18C53F476E99FA1D177A1FB21EB0A7AEACF_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_2_Invoke_m2014423FB900F135C8FF994125604FF9E6AAE829_gshared_inline (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryAdd_m9131A9C97A3FC9B404658285E8707766EEBAD68B_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryRemove_m8BDB3FA1F655CD98F6563B3CF7B67CBCFD2D32A9_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* ConcurrentDictionary_2_GetKeys_mC1387F14EE0C8D857CDCE99250E929051E453226_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14* ConcurrentDictionary_2_GetValues_m73720151BAFEF4961618F5F84112660E7609126B_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_GetEnumerator_m6429F2BCF47DF337C5BA1ED025B5BE69BABA354C_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_ContainsKey_m4220CA2F2BB439BCBC87EE1DFBAD5F4B8AFFAE8F_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEnumerator__ctor_m8939BDDCC2510C40831561CB7D1845F751EC3C7C_gshared (DictionaryEnumerator_t89B36B17C8760EDB41C3B7B9CB958EB90E92B183* __this, ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* ___0_dictionary, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_set_Item_m71753CC41408C8AFFE4A121A6B818E72A83D059C_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToEntries_m4771A9A4F6FCD1436DB6A13633CF0D2CB872C517_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* ___0_array, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToObjects_m4105F3AF4F7746BE773241B908E4AE76A90F5C57_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_AcquireLocks_m6DCC70E9E92179B98BF49E314AE1A654DEECB9A1_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, int32_t* ___2_locksAcquired, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_mF2D2ACE0752C3B97343B72328D49200F45C14B65_gshared (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* __this, RuntimeObject* ___0_list, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m91DC7897CFBCC9E83397E65300A31D6D6FDEA6FC_gshared (List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A* __this, int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m5AAB6DCB6C30EB5769B4E8DB8170E50319F0A9ED_gshared_inline (List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A* __this, bool ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlyCollection_1__ctor_m3042DC024824AA3294D16E9595FFF5F600B3E18D_gshared (ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14* __this, RuntimeObject* ___0_list, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* ConcurrentDictionary_2_ToArray_m771E20D504478265040C2EABD8CC9F5EC838A7F5_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_InitializeFromCollection_mF839AEDF0EB65654C73D36DDACEE1CB8BC875585_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_IsValueWriteAtomic_m05B4374DF135C28F4CA8CA474793052557BFD54C_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_get_DefaultConcurrencyLevel_m6D0A5B42819471D975E4CB0AE3867346D2A81383_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__ctor_m6E7D16F028BFD7FF1F86EC8CA87B54BA90D2B00E_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, int32_t ___0_concurrencyLevel, int32_t ___1_capacity, bool ___2_growLockArray, RuntimeObject* ___3_comparer, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryAddInternal_m62921F1BBA26758C8E118413653422214D054B05_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, int32_t ___1_hashcode, RuntimeObject* ___2_value, bool ___3_updateIfExists, bool ___4_acquireLock, RuntimeObject** ___5_resultingValue, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Tables__ctor_m53DA34DE77197BE2E495B724556D3B9C5BB8B65E_gshared (Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* __this, NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* ___0_buckets, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_locks, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___2_countPerLock, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryGetValue_mE794BBB2811B9244CF8ECB11994F70DEB6BEFDF7_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryRemoveInternal_mECC197E0B75D875C446D3D53E65B37E9BC72B162_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, bool ___2_matchValue, RuntimeObject* ___3_oldValue, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_GetBucketAndLockNo_m45E3479E1AACFE4F39CD86B8CC6C49E8AD6507A1_gshared (int32_t ___0_hashcode, int32_t* ___1_bucketNo, int32_t* ___2_lockNo, int32_t ___3_bucketCount, int32_t ___4_lockCount, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryGetValueInternal_m6652F2101F8A95B357BD0EF5FF6CA6EF9FFAB4E6_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, int32_t ___1_hashcode, RuntimeObject** ___2_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_GetBucket_m9EB38A937BA93FB1FF25671CC62113967A829799_gshared (int32_t ___0_hashcode, int32_t ___1_bucketCount, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ReleaseLocks_m0F2C015E8701256B786281D8D29B75868171C705_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_AcquireAllLocks_mEEA5D51FFF0AE48412FCF37B5C8954A5DEE8C9D6_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, int32_t* ___0_locksAcquired, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToPairs_mF6358833C6BB17A51A6C91CC8C34A019711D429E_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ___0_array, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* Array_Empty_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_m2D55A4A51DA7B1571C2722D1B9ADDBBA8C6EC441_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_m0D5C3E0BE2D37252D3F4E0F0EA9A13C9458D4950_gshared (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CGetEnumeratorU3Ed__35__ctor_m081A1FE89C23793EF327B27268262718EDD11462_gshared (U3CGetEnumeratorU3Ed__35_tFBB72033DD97EBEE1D1AB495DD3A0C1827242215* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Node__ctor_m653DF0B15E45A27457D589067D641C5EFC97D2CB_gshared (Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, int32_t ___2_hashcode, Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* ___3_next, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_GrowTable_mA69966B4AFC2B973D73A66853B8821CBF7B6DE6E_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* ___0_tables, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ThrowKeyNotFoundException_m41CDF9614DAC667AD5F3C68C636E604D33ACADD3_gshared (RuntimeObject* ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_GetCountInternal_m27C98C3E7DD93340C1E785A2AB447302EB908792_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryAdd_mA7D07DAB0E4F228BEDBEBA3BEA124A7C839B0DFC_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryRemove_m24DC33BB549CD9414E0782A591303A484D2BA255_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* ConcurrentDictionary_2_GetKeys_m88788E15E6643C73CCEBECACE48FE70A95BE7F79_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* ConcurrentDictionary_2_GetValues_m3081AC59E79522BDBD904B8E83BD71AFCCB888F7_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_GetEnumerator_m12EC3080C7512F05099338965FD8626ACB343320_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_ContainsKey_m9BDE52D83802C8E05ED223C1864017FB19B43DBC_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEnumerator__ctor_mED6D481F16E8597DF1F8FD3F1A173ED8F0D4D8E9_gshared (DictionaryEnumerator_tBF822449C5FD8462D9DB8BF961E29F69C2F913A9* __this, ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* ___0_dictionary, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_set_Item_m95DD60ECF2EBCA55F2EC3B0AC122FE0C0D7D4E39_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToEntries_m86A84943282DF9A9DE1BEFBE06636986BB4326B3_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* ___0_array, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToObjects_m8F7F1238D5B978CFEFD2C8F21CA8EBB7F93DEF72_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_AcquireLocks_m450A81B0E0C12A899C2D57CA02B18A394E00846A_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, int32_t* ___2_locksAcquired, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ConcurrentDictionary_2_ToArray_m3BBAB4587582F5F1337AC5B47138B233DCE05611_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_InitializeFromCollection_m8A9AFB3C35AF03B0D953EF7F62D2419FCCEAA0A6_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_IsValueWriteAtomic_m92D50EA01ED33996745B57924CB025FD4A569F1B_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyValuePair_2__ctor_mD82E516936D2BDE6D46C8C45270250647986231E_gshared (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669* __this, Il2CppFullySharedGenericAny ___0_key, Il2CppFullySharedGenericAny ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Segment__ctor_mE54FC9C999FCB994B13229636F99B4237997DD69_gshared (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, int32_t ___0_boundedLength, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Segment_RoundUpToPowerOf2_m445F2F69CB72AB1661DD9831B06BCB39A21D99FF_gshared (int32_t ___0_i, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_Enqueue_m8E8D8D7943565B34DBC93C5C5D56063D0FBC047D_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_InitializeFromCollection_m93ADF8F03ADBFC32B30A55F09B827C8D5C2CC343_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_CopyTo_mC5A20108CA000589686CAF69C27C8858BF965265_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* ___0_array, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* ConcurrentQueue_1_ToArray_mF0C0898939538EA4EF991869E22E83F978D2C276_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryDequeue_mFF536885040B79E9B6DDE22FE56E1744D731D324_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_result, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryPeek_m36C441A718E7CC9A0451752DBA91021C87997BA6_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_result, bool ___1_resultUsed, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_SnapForObservation_mC813203E9C5757B1DA9466A256DD3C6C2B5836F8_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** ___0_head, int32_t* ___1_headHead, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** ___2_tail, int32_t* ___3_tailTail, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ConcurrentQueue_1_GetCount_m1C16CA95801D6CEA80C60FFA4417CF3C402A3CEF_gshared (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___0_head, int32_t ___1_headHead, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_Enumerate_mBE8F1F279BCCE097150BEB388AF0C6E6D9F4D345_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___0_head, int32_t ___1_headHead, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentQueue_1_GetCount_mDEC6722E41D6B0CD1D6CA1DCC0EDFF4D4079DB0D_gshared (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___0_s, int32_t ___1_head, int32_t ___2_tail, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Segment_get_FreezeOffset_m85C8B0EBFA5AC151A44A14201B0514303F3F52E2_gshared (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Segment_EnsureFrozenForEnqueues_m7E2293D3637D2DF6EF322CE924578CFC6EF46152_gshared (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CEnumerateU3Ed__28__ctor_m4F92C7BB698ED882D8E0497CEE4D8FA3914ED733_gshared (U3CEnumerateU3Ed__28_tEA742C92FD5C83A0B42BC0D9936D693C00E8AB1E* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Segment_TryEnqueue_m717FD50925EA6ABB7EFD908AE4498F58A080BFC0_gshared (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_EnqueueSlow_mA0B6FB508C7DE9FD111F8DFDFC12517DB7D0261D_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Segment_get_Capacity_mDD685AE9A93EB9470B7EF7EA01774B7A53638EE3_gshared (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Segment_TryDequeue_m7F22B9F0E48C58EE142F5F6521573BF540C1036B_gshared (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryDequeueSlow_m2D15E87BAC03C286FC5AED371246B462D8E21551_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Segment_TryPeek_m685ADC5F91B878FDBBFDA6B2AD0C83D66FB42BC7_gshared (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_result, bool ___1_resultUsed, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Segment__ctor_mD5C583944CF31346F08BA757C9C15371C4858FA7_gshared (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, int32_t ___0_boundedLength, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Segment_RoundUpToPowerOf2_m903ED2EB85CA00362471EEBDE70010461BFED979_gshared (int32_t ___0_i, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_Enqueue_m6E14BFDDF046BB59B8EEF4A398D5AB7F4720D0A4_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_InitializeFromCollection_m7749950AB9C43CF95C3C0F24C63942A2A6EC55C6_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_CopyTo_m8A2CD5FB0B29389CAE0ED09D48C7C40C3FE47E47_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ConcurrentQueue_1_ToArray_mE05BD160E613A2B36E3002F87461F4A38B126AFC_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryDequeue_m04C6B697D83A4AA4BAD38344201C140ED7DC5CAA_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject** ___0_result, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryPeek_mC3450BED83DB82DEA37C407E34373008958BC9BB_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject** ___0_result, bool ___1_resultUsed, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_SnapForObservation_m60B8F5FA00D76A094EB67116F89A32807F45B419_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** ___0_head, int32_t* ___1_headHead, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** ___2_tail, int32_t* ___3_tailTail, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ConcurrentQueue_1_GetCount_mFD43C52C52B526FD80C6356E0E8CEB2908E94B1D_gshared (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___0_head, int32_t ___1_headHead, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_Enumerate_mB2EACA03901B963C1957491121264CB11B5B2C05_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___0_head, int32_t ___1_headHead, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentQueue_1_GetCount_m6EE5FF1A402681EE1CBCFC6857C8CEF8CF7C1CD4_gshared (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___0_s, int32_t ___1_head, int32_t ___2_tail, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Segment_get_FreezeOffset_m402D47C4B47FF6B763734B006DA71BA5DBC42582_gshared (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Segment_EnsureFrozenForEnqueues_mC7EA723BE98E075BE173825F3913AA3C16F0B655_gshared (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CEnumerateU3Ed__28__ctor_m12DD4367CAA863C7406D2DC6FD650C53ADA44B29_gshared (U3CEnumerateU3Ed__28_t0208D88B19E67F3B47A3ACACCAF0810D4DA5D4AE* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Segment_TryEnqueue_mC0606A90F9CBCD06D9ED05EA760356F9A9A9AF84_gshared (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_EnqueueSlow_m4CD45BC265B633641FAEEDDBA196DAD43BAE1C67_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Segment_get_Capacity_m6AC42C585777163E56321B193E08010DFD029898_gshared (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Segment_TryDequeue_m65CCE1E0A24F41FA5EE05BBB78C07B873ADCC77E_gshared (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, RuntimeObject** ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryDequeueSlow_m51E29FFC2018FE36494F806DE731B983CF149480_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject** ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Segment_TryPeek_m8AE646DCD469A3337B3B3DA3B568612B8B3F7BD1_gshared (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, RuntimeObject** ___0_result, bool ___1_resultUsed, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_RecomputeSize_mA8EA4C9A414745380F7E16B8A773146319737B39_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_RehashWithoutResize_m7B5A91678E9229FB79E164822F26C2AD4309EE55_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Rehash_m95A9B6F55E92FC8E85D9E5B751B5F0F50F37430B_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_TryGetValue_mA6697354DA1D2A76999FFDCC072C62AC5C364124_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CreateValueCallback_Invoke_mDCA362F0B946C52272C5956DA35F53B8DC49BA83_gshared_inline (CreateValueCallback_t85D075DDCAD202B428EC47723590605681FE2BD1* __this, RuntimeObject* ___0_key, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Add_mA45BB747BEE445F5A6D5ABC32B2070CAF5E9BE44_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator__ctor_m84587408157BE80BC6CBBB684C38AC913FB6FDE6_gshared (Enumerator_t94AEE59300B379FF13424743ADEE68A3E360D190* __this, ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* ___0_table, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m77CE68352881C1970E69FB343827A974C75CB8A6_gshared (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m8B9FF6EA3E63C25A4B1FC8327AEF894C73B573E6_gshared (ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71* __this, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_gshared_inline (ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m810950E3F6481AF44D66A5F789EE04CCA7BE86F4_gshared (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m4F26D0F1036C76A4B6833A1BFF9A0613B5FAE968_gshared (ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029* __this, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719 ConfiguredTaskAwaitable_1_GetAwaiter_m63812BEACBC9720D9E9860A508588B1DE0F34C66_gshared_inline (ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m63FAB9FCE0BDDF0AB1A4838521963EDC84000CD9_gshared (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mC58338FE54F7CA15B1C73A6FD96FEC36F1A24C2F_gshared (ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A* __this, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9 ConfiguredTaskAwaitable_1_GetAwaiter_mE947EA14D65DCF41B2988D73580C1886D1FC836B_gshared_inline (ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m08995B8DCA78C52E51E6793CEBBD3F63E992B847_gshared (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m74B21033ECFC6456863C285996272E5845ED34A3_gshared (ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49* __this, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC ConfiguredTaskAwaitable_1_GetAwaiter_m6B1B72AC1AA4F779C7CADC540F89E33ECCBF93CC_gshared_inline (ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mF2DCDA01D85EF264E6894FAD5145629A90444BF6_gshared (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m4250D7AC55939EE7E067CB43F1EA9205ADCF5BB9_gshared (ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C* __this, Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4 ConfiguredTaskAwaitable_1_GetAwaiter_m3D8C463996184A1FE94D1B59A379F3ACB425C7CF_gshared_inline (ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m81EA182AFEBA13DB3FBEBD681D641477D6CDD7E5_gshared (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mE710DDACEA51B67F609363489CA86CAB560D7097_gshared (ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_gshared_inline (ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m46556B7AD9DF2E22AEDC1162D6129412ED37B288_gshared (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mF6F327D56C404722F1A1274ACDA0B194ABDC7947_gshared (ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B ConfiguredTaskAwaitable_1_GetAwaiter_m447B2323EADC587DE0ABFEA2FEF3AF3342F75186_gshared_inline (ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mE9DAAA97DD3A60C1E8D3B30BD4F54654FA00FE3D_gshared (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mF5604B9DC5F681A54B406BAF635C17A7B6E9388F_gshared (ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3* __this, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C ConfiguredTaskAwaitable_1_GetAwaiter_mFF4EF7AEFA89C01BCDFD3309A0B610F65F81E9DD_gshared_inline (ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mE5C7A10A9927C38D268B75D38ED6087280CB4951_gshared (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m4246B1C32D9D68C5805B05C21DC58DA9C8201586_gshared (ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 ConfiguredTaskAwaitable_1_GetAwaiter_m10364C3B0A904803E890B2D75674665F986BDAB2_gshared_inline (ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m3416F16B5D17AF6DE83C1657DF1DEF4EC56E23D3_gshared (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mBE5D98F1161AD728FC0C2E60FA50C721BCD3122E_gshared (ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904* __this, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC ConfiguredTaskAwaitable_1_GetAwaiter_m76195C44489DF59E908A90F3370693A6905CFDF5_gshared_inline (ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mEB65866BA2A952D268F73A5B0B3C5F0C44ED52D4_gshared (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m45A6EB8D4B86D340F98CC2778C02F4ABAB41A56D_gshared (ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF* __this, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A ConfiguredTaskAwaitable_1_GetAwaiter_mF6A0C005CBE0A04B0342E47C626854C4364ADDB6_gshared_inline (ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m5B53A410AE8900B3D565ED7C7FE9DAB92B2ECEC9_gshared (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mCF681CB4825E085E3ED42B9E990609C36F282536_gshared (ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922* __this, Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A ConfiguredTaskAwaitable_1_GetAwaiter_mA5D8A0E225B9D580F1FC5216C47A0B828B033390_gshared_inline (ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m943014E2A3A7AEEF6B38F9DA31887B07DC417131_gshared (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m2315CEBAE2124E81337575D4A8E42DFFDD28BB60_gshared (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m085AD3A95FDB707E9DE9F4B6A66DCB7D60B5372A_gshared (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 Task_1_get_ResultOnSuccess_mCE17C784EC8A76A7A669ADA89953086B95DEA9E2_gshared_inline (Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ConfiguredTaskAwaiter_GetResult_mE648AD496FFAD4F2E5CFFA8DA38B365FDD634EFD_gshared (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m267BA39F4AC0C8E837F1AAD93740DEF1EF90D8DC_gshared (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m79AE842BC3870C51BAA95A89FD3ACE0ACE5A829A_gshared (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_mC4C4D701AC1683EFC6F0C4B1D2133ECED4748E3E_gshared (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 Task_1_get_ResultOnSuccess_mF3C0355E532212C56EB03CA82EB918C582829907_gshared_inline (Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 ConfiguredTaskAwaiter_GetResult_m347EABFF757C87ACE59FACB17CA0E1F9EC759FF4_gshared (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m7A303575FA10A44B6EA4D4E1E17BC6B138258BF7_gshared (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_mDCDA64598B3552449AFE549B815ED896A2051E74_gshared (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m428A965216C2ECF7652F8EB6076C379E6CFB84B3_gshared (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F Task_1_get_ResultOnSuccess_m6D499E3CAECD874138D8268859F1C5ADB6BFB541_gshared_inline (Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F ConfiguredTaskAwaiter_GetResult_m1DA7AAAC696746E7848FBB001810FB78D141DFE4_gshared (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mD77F71A816384AC7132A1371B9054E2B16CA7463_gshared (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_mD89C6F15B540252DA24A815627E0ED8E4B0B0ABA_gshared (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_mB6816BBBE292CB88E72D47F4A8F50F095FC880CF_gshared (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 Task_1_get_ResultOnSuccess_m214E858FC526E07DBB763D5E8823E3E541228015_gshared_inline (Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 ConfiguredTaskAwaiter_GetResult_m7B3942036E2A45F9A64916D1966F06DA950C1334_gshared (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mC2024766896945A56978CF121456A78A6F054190_gshared (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m7122579D9E3F23FF47037CE5B977673902632BED_gshared (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m56C37FD43DAF113A7BF8ED335649D7EC1C37450F_gshared (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Task_1_get_ResultOnSuccess_m15F655DF9F8EE6F8388A9432454900F07EFC57BB_gshared_inline (Task_1_t824317F4B958F7512E8F7300511752937A6C6043* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_GetResult_mA0D0419EF40E9DF864B87B495FFE05C08475C00B_gshared (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3_gshared (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m15282EE71D354E5E6DD4952FD8283E52D253EF1E_gshared (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m9BBAE6AEBDEFAC8BDBBAC1792B91C838A8328166_gshared (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Task_1_get_ResultOnSuccess_mF098AC108FFA2E0D992306C6D956BA37874FAC77_gshared_inline (Task_1_t4C228DE57804012969575431CFF12D57C875552D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC_gshared (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m6658F40E7404D6C45086F4151F673A3E831A0517_gshared (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_mF6FD9054C0CAEC1D89DEFD0417C91D6103DAF562_gshared (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m771321F48189B5C1005DF8D2F004A9D6C9FEFE05_gshared (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Task_1_get_ResultOnSuccess_m17F426484CA5CE14DB7E1495B6883B542D46BFA4_gshared_inline (Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConfiguredTaskAwaiter_GetResult_mF8CBBA5B63DB7FC72FA27688B4CBA3A556F128B0_gshared (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mD3ADBF1AB3796F39FAEF1A35ED17FB6C37DDC468_gshared (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m6D17EA2A6E0A62EB2A7158425A71D71471FF0816_gshared (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m34F7D3F5D72E39E23835CFCAA6EA1157DDE51B0D_gshared (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Task_1_get_ResultOnSuccess_m017840A0E0E0A7BD35D651A69351C4E0CE25F56F_gshared_inline (Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ConfiguredTaskAwaiter_GetResult_m74960640D8A39D3212F1B6A9380A04BE034278F7_gshared (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mD6243A7544181F96816A5F81459F4B66908ADB5E_gshared (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m7829943710018CAC10D1B5F4890FA27BC8AD9CFC_gshared (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m6A8431DA20DEFD849C4EAC7C7A50B556DD97FDBC_gshared (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Task_1_get_ResultOnSuccess_m747DDF25AF20D348F75409600C9943ED5ED92BA0_gshared_inline (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConfiguredTaskAwaiter_GetResult_m00ABE5C46A983C38086438B7A7CB2C62296B3383_gshared (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m3258297C115BFA2F561ED50AF14721C1C6B6C8B8_gshared (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m99C79C357B2805E7814B01B2EAFC8D59A368BE9B_gshared (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m8D143EF19A23A497822B0C06791724F97CBFEB74_gshared (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A Task_1_get_ResultOnSuccess_m604CAB5861502951B55B242E5D417FB4AC185DA0_gshared_inline (Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A ConfiguredTaskAwaiter_GetResult_m82AD3149723B89AA4D9718934779689FC95044F5_gshared (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m39888D5D6655CC50DF6E925252A5232FD43CD4AB_gshared (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_mFF52588CEF8834BA9D6562D1DDBD7CB0FC238761_gshared (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m49909F7C7467C68FF43DAB744ADF0417F622B869_gshared (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC Task_1_get_ResultOnSuccess_mF2B4314A2FC0448358439C96FC6217501A2ACFE0_gshared_inline (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC ConfiguredTaskAwaiter_GetResult_m916ADADCB83D00E93327439DF6E90E45D1919574_gshared (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mAEF99891A1B576254827D55C54C6E0E1787AA7EF_gshared (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m58DB8E06D138B417E71AFA489D1EB64ECED63284_gshared (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m2EFFC8EFEDD85479876580D8FDEF045B2DCA2D66_gshared (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_GetResult_m14D32632322F465B16F5EB858BFE5886B7217701_gshared (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaitable_1__ctor_m508597503A661BAE9FEB5315DC97BCD99E4BDCB7_gshared_inline (ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043* __this, ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter__ctor_m1FA5EBCEDA701BBF0893ECF2665D06B4CA2D97B9_gshared_inline (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5 ConfiguredValueTaskAwaitable_1_GetAwaiter_m94C14DDAC561363EFCF143293D1E2E5CE74522E3_gshared_inline (ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaitable_1__ctor_mEAA2416875911A8D049C7F0FB4477D6AE4BC124B_gshared_inline (ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98* __this, ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter__ctor_m2119C5D2703D1D7748F0D5DAB18AA40C883229CF_gshared_inline (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99 ConfiguredValueTaskAwaitable_1_GetAwaiter_m7BECD774F029605B45F919BF7DEEC348B2B499B8_gshared_inline (ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaitable_1__ctor_m50F71CECBEA21581E8170F4CDFE15E0182FE41D0_gshared_inline (ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E* __this, ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter__ctor_m3DE02ADEF13DE18D55B4E303EBB2BA001A30DE09_gshared_inline (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaitable_1_GetAwaiter_m44A568FC09F949B84CD6F0F09E907A2A04E2EF46_gshared_inline (ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E* __this, ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* il2cppRetVal, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ValueTask_1_get_IsCompleted_m327391A8FC9F06A07DC95CBC77756BA963EC42A2_gshared_inline (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ConfiguredValueTaskAwaiter_get_IsCompleted_mB0B5FC0CD4E3282961DCA3F5B5C24260680B7461_gshared_inline (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValueTask_1_get_Result_m272AA34FF8C511DECB3E35C6C0A1039F0723F960_gshared_inline (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ConfiguredValueTaskAwaiter_GetResult_mB250A2B7423863EC0EF64C56F679FBA4FD674021_gshared_inline (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209_gshared (Task_1_t4C228DE57804012969575431CFF12D57C875552D* __this, bool ___0_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_OnCompleted_m54151496E9D086C12B909258785D21E0EFF93C0E_gshared (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m234E75BAEA47B62ACD63096F80F18A285A0A1A45_gshared (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ValueTask_1_get_IsCompleted_mB5FE6398DBC9CBAECABB6AFC1B3F3A1F51D1479F_gshared_inline (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ConfiguredValueTaskAwaiter_get_IsCompleted_mA7BC89851224972805007D736DB02E2B7D4700F2_gshared_inline (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ValueTask_1_get_Result_m3035DEA69E68AD985EDB5285416C94558C72B23D_gshared_inline (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ConfiguredValueTaskAwaiter_GetResult_mBB2D627DF9F38F1113F367FF1ACE907F0A82D494_gshared_inline (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8 Task_1_ConfigureAwait_m9D6420C859925B7C250DED7586DD770C91632070_gshared (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, bool ___0_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_OnCompleted_m3589A6D670BE42D9B0A8A68433BE33C450103F38_gshared (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m8412DD1E4BA01EE0FA199061CB05AFF9E1D061E9_gshared (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ConfiguredValueTaskAwaiter_get_IsCompleted_m900B802370ACB3E11F808026A4BEE1183E91507A_gshared_inline (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_GetResult_mCF267B69492EBE1F642327D1A858EF350DEBC19E_gshared_inline (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_OnCompleted_mEEFFB5D64C428B1FFCBC4AE5742DD594C2887DB3_gshared (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m562052388D99EC0C34D5412AE114E2DF90358BFA_gshared (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared (Dictionary_2_t14FE4A752A83D53771C584E4C8D14E01F2AFD7BA* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyBag_1__ctor_mB8004D0AD96FE582C9E03BD628D5C1BCBAAED691_gshared (PropertyBag_1_tD413081183D831D5FD1DB047C6388E9EA8522318* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyBag_1__ctor_mED3A84C21BDE201E5AD050889E215EF25E6BB4DE_gshared (PropertyBag_1_tFA4D14E31A2A501D102D88481DCBC9501A6EF390* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyBag_1__ctor_mE5031AC7F881DD8EC6FCCD8BFA1B2B36A7C5E6DE_gshared (PropertyBag_1_t0967321B2D6F146150A7805676EB01A1FD0E97B6* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyBag_1__ctor_m608955616512B610EA4B2C927CAA4171BB5A33A2_gshared (PropertyBag_1_tE522EC0E4E4C916EBF192933D686DEFDD27B9474* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyBag_1__ctor_m4C94BDC6615CF3024236DCDC4B90837C6FC6714B_gshared (PropertyBag_1_t2F1387D95A1E9B93E66C397645BFB8BCD265219B* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyBag_1__ctor_m3F999AFEEFD9FD5AE95D3BC287DEB25DC4AAF592_gshared (PropertyBag_1_tC24A0A7B21F69286D618A79A4F7CD6F8E9E64E46* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyBag_1__ctor_m072C76EB04E5541CBEE68850C9E6156B54A106CC_gshared (PropertyBag_1_t1E23861777A25A773264A698434477DCE18B34CF* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyBag_1__ctor_mAA213442673F9B9A5948AD7385D832A08475D93B_gshared (PropertyBag_1_tA16FBB091D74A21AC539D829F65E5E8FAF2DB075* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyBag_1__ctor_mF2FC0A3F27C3D8D1F403D7433F4782CB01E4E6D4_gshared (PropertyBag_1_t91378217184AE0BD640D9A003EF2CB208071D593* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyBag_1__ctor_mD0545EB6A8F30FF94E8C8CE7AD6A4F0DF32CBE7C_gshared (PropertyBag_1_tDA117C10FEABA385803A90E976050FB2D270FAD2* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PropertyBag_1__ctor_mB6FF3A98CDA8C851BC0FC108F95BF41644471439_gshared (PropertyBag_1_tD11940BE9DAD74F61B141A397F3D5722E7FF2601* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentHeightCacheInfo__ctor_mF2BB6598B1FEDCE079C61DBE32A2CCA1000648F2_gshared (ContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC* __this, float ___0_sum, int32_t ___1_count, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m4EA33CE4D77D99270E40B283265634B631FE2D82_gshared (Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 Func_2_Invoke_m3C19BD2EA00E1EF46CABE820518716B3F3F10A3C_gshared_inline (Func_2_t9BDD2E959989A0F342560C7A37F50108887A6F4F* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 Func_3_Invoke_mC8E3181B95E1536F05606B557AC4CD80AA7CD658_gshared_inline (Func_3_t38806CDE2B8FBE2C46D0183F71E027E08C5FA249* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m91C2EA31AA8F95E641D6F2CD69E69F40EE195620_gshared (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_m31D9E56C7CAE538FD8564F34CABA2C2A537ED393_gshared_inline (Func_3_tAB0692B406AF1455ADB5F518BF283E084B5E8566* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m6027E209041DB4AF1EFA8C4E8CA5FF48E1860AB4_gshared (Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 Func_2_Invoke_m92CDD270B86A28FBB2E8F17B1FFE06CC1AB6C8E9_gshared_inline (Func_2_tA0EEFAE7C92638659E9BB0B7413EAA91B94F9856* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 Func_3_Invoke_mCAF04CA9F03F9847EE6CBEDA4FF301AA4C9B1E7D_gshared_inline (Func_3_t79EFC91BEF9A031A23D922845DF2FE0FA0BBAB94* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mA627F1796D0CC5F094107EE5561F7CAD50115378_gshared (Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F Func_2_Invoke_mE8DAAA4DEDB6E0CCDE2535CFE3B9528CF200514B_gshared_inline (Func_2_tCD5AA4A296D960BBF4C4F87A28930EAEE61EFD66* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F Func_3_Invoke_m281A6C1FA3BA480C3DC1A60A9F25C3EFE5D52FD8_gshared_inline (Func_3_t2F9CFB060EDA36879A7FAA60EC81BC7513350072* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mF07DC249811270AA9A25EA15DC2DB5E73996F8E4_gshared (Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 Func_2_Invoke_m68B7901C1FA0392923FB23D69FBEBBEF8AED14C8_gshared_inline (Func_2_tFE7563C0628D7F87CCDC5B6B1027F20F842C6A9B* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 Func_3_Invoke_mF3F0C2FB4B606EE6E644DA314D53EBBB9AA9B6FD_gshared_inline (Func_3_t397C51E8BB1FEA88F253F683670464827DD4BDAA* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_mEBA33EAA50213858C739AEE13CB028F6563A585A_gshared (Task_1_t824317F4B958F7512E8F7300511752937A6C6043* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_3_Invoke_mC786FD8356E25F147BEF4CF07A587720613A2C12_gshared_inline (Func_3_tFCEB9D8CEAECBF6D0AD5440F96C6F9010270CE79* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m0BAB0D8F99D9B20D3AAA80352297D4E3D1A17287_gshared (Task_1_t4C228DE57804012969575431CFF12D57C875552D* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Func_2_Invoke_m5216F6C7BCECCCED81384876C2968E0D4358618B_gshared_inline (Func_2_t9A0D493A82DCC47C9C819A3B045E02D9B5DDCE1B* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Func_3_Invoke_mFC6011BA71ECF66C0443D4075110D6020AA7FA1C_gshared_inline (Func_3_t8F3E514F3F44D98D0029402DBF664E587850807D* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m4FD9E652E6AD25DE324F1D25484F2791ED1396D5_gshared (Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Func_2_Invoke_m1FDB82A936AD6A68F455DE792FD9454CE1A4FC9F_gshared_inline (Func_2_t213311159653563BDCC21CC060B449705C96791F* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Func_3_Invoke_mDA55CA9B886C979A98CFB2F97AABAFCCEB781712_gshared_inline (Func_3_t28A9636B716326D9E31566B1E8ECBDEFDB0192CE* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m7038457A44B6D3E9B5205B8FFC6AB4F469B476E9_gshared (Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Func_2_Invoke_m58656B8EA1C7E4D386AC93694C482693052DF452_gshared_inline (Func_2_t78D13C74B0F5A1DD640F8722F0AFB5F5144EAB97* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Func_3_Invoke_mD37FF894994ED3E7C8EC9E0FBCEB2C0449AA657A_gshared_inline (Func_3_t60F75FC08D90822EE0350881730189B813F24589* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m5CFF1880591CBC0CB4FB6791AD761CF233512B78_gshared (Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A Func_2_Invoke_mD3E35946E0C221C1B5833C50E1A94CCFDEA62CAC_gshared_inline (Func_2_t1997BD152D2F0085C9F00A883F4BE34C90ADDA8B* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A Func_3_Invoke_m987D3FA089D0FA94AA36C8325937B3FFFE5576F7_gshared_inline (Func_3_t5D594C7555DF6F84FA098E3F3DE55B9FF132E49A* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task_1__ctor_m8D5C7467696747206A78F279D69BF1A8A1EA1BD8_gshared (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC Func_2_Invoke_mEBF7808CA295B981EAE4B058D26404E3F3D63235_gshared_inline (Func_2_t71FA99F7C6CDD51A4C237B5165867D485B0735EA* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC Func_3_Invoke_mBAE7E5DB9E0DDF359BAD7AD6BB719BF7751A1A74_gshared_inline (Func_3_t978E495A2CFACF4BCDA24F740600DD6A8BEB2435* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline (Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* EqualityComparer_1_CreateComparer_mD2FA619307513193746FBEB5AE522FB54E21B634_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* EqualityComparer_1_CreateComparer_m3BD7BED1F69ABEE55E320BA9CCFBB473E9F57C66_gshared (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4_gshared (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void List_1_AddWithResize_mD783561518F916982595A58C9A148BA3AA8F9B10_gshared (List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A* __this, bool ___0_item, const RuntimeMethod* 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_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318 (Type_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Type_GetTypeCode_m2CE476933AF4B381D7A52F4343B70E9878FDF466 (Type_t* ___0_type, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IntPtr_get_Size_m1FAAA59DA73D7E32BB1AB55DD92A90AFE3251DBE (const RuntimeMethod* method) ;
|
|
inline int32_t ConcurrentDictionary_2_get_DefaultConcurrencyLevel_mD7DC17E84C31ED78EF42461417C8D456B258AA4C (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))ConcurrentDictionary_2_get_DefaultConcurrencyLevel_mD7DC17E84C31ED78EF42461417C8D456B258AA4C_gshared)(method);
|
|
}
|
|
inline void ConcurrentDictionary_2__ctor_m3ACA8D6DD9C6CE2A15779437FB6E1F521E8FA35B (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, int32_t ___0_concurrencyLevel, int32_t ___1_capacity, bool ___2_growLockArray, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, int32_t, int32_t, bool, RuntimeObject*, const RuntimeMethod*))ConcurrentDictionary_2__ctor_m3ACA8D6DD9C6CE2A15779437FB6E1F521E8FA35B_gshared)(__this, ___0_concurrencyLevel, ___1_capacity, ___2_growLockArray, ___3_comparer, method);
|
|
}
|
|
inline RuntimeObject* KeyValuePair_2_get_Key_m94A9BD1AEA6EA0A8BEE3739A3881F479181638C4_inline (KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423*, const RuntimeMethod*))KeyValuePair_2_get_Key_m94A9BD1AEA6EA0A8BEE3739A3881F479181638C4_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A (const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (const RuntimeMethod*))ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A_gshared)(method);
|
|
}
|
|
inline bool KeyValuePair_2_get_Value_mC3C5F83458F19B6276D6E090A86CFDADE6EFAAD8_inline (KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423*, const RuntimeMethod*))KeyValuePair_2_get_Value_mC3C5F83458F19B6276D6E090A86CFDADE6EFAAD8_gshared_inline)(__this, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_TryAddInternal_m478FF4445C5B3FF276773864AB82454184440F3B (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, int32_t ___1_hashcode, bool ___2_value, bool ___3_updateIfExists, bool ___4_acquireLock, bool* ___5_resultingValue, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, RuntimeObject*, int32_t, bool, bool, bool, bool*, const RuntimeMethod*))ConcurrentDictionary_2_TryAddInternal_m478FF4445C5B3FF276773864AB82454184440F3B_gshared)(__this, ___0_key, ___1_hashcode, ___2_value, ___3_updateIfExists, ___4_acquireLock, ___5_resultingValue, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, 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 ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66 (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* __this, String_t* ___0_paramName, String_t* ___1_message, const RuntimeMethod* method) ;
|
|
inline void Tables__ctor_m70463E7A4F0DC7B3CE891A5DB241842EA485D81A (Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* __this, NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* ___0_buckets, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_locks, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___2_countPerLock, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB*, NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, const RuntimeMethod*))Tables__ctor_m70463E7A4F0DC7B3CE891A5DB241842EA485D81A_gshared)(__this, ___0_buckets, ___1_locks, ___2_countPerLock, method);
|
|
}
|
|
inline EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* EqualityComparer_1_get_Default_mA2AD755281D23F496A2579884B39E30C13C208B3_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* (*) (const RuntimeMethod*))EqualityComparer_1_get_Default_mA2AD755281D23F496A2579884B39E30C13C208B3_gshared_inline)(method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_TryGetValue_mBE5FFB39C0B097B2C03D83B46C57B1F43C3CC6C9 (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, RuntimeObject*, bool*, const RuntimeMethod*))ConcurrentDictionary_2_TryGetValue_mBE5FFB39C0B097B2C03D83B46C57B1F43C3CC6C9_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_TryRemoveInternal_mF10F36564ED747935E5679EE4DA7FC2BAE381E73 (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool* ___1_value, bool ___2_matchValue, bool ___3_oldValue, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, RuntimeObject*, bool*, bool, bool, const RuntimeMethod*))ConcurrentDictionary_2_TryRemoveInternal_mF10F36564ED747935E5679EE4DA7FC2BAE381E73_gshared)(__this, ___0_key, ___1_value, ___2_matchValue, ___3_oldValue, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_GetBucketAndLockNo_m441AE35CF9D1725D80BFC34B375B980AE14CC0E5 (int32_t ___0_hashcode, int32_t* ___1_bucketNo, int32_t* ___2_lockNo, int32_t ___3_bucketCount, int32_t ___4_lockCount, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (int32_t, int32_t*, int32_t*, int32_t, int32_t, const RuntimeMethod*))ConcurrentDictionary_2_GetBucketAndLockNo_m441AE35CF9D1725D80BFC34B375B980AE14CC0E5_gshared)(___0_hashcode, ___1_bucketNo, ___2_lockNo, ___3_bucketCount, ___4_lockCount, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA (RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149 (RuntimeObject* ___0_obj, bool* ___1_lockTaken, const RuntimeMethod* method) ;
|
|
inline EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* EqualityComparer_1_get_Default_mBB75BC0723DFD7850F43E72E34026DD070CF5932_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* (*) (const RuntimeMethod*))EqualityComparer_1_get_Default_mBB75BC0723DFD7850F43E72E34026DD070CF5932_gshared_inline)(method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_TryGetValueInternal_mC90C1584E0980D7B1B488EF4C3E36DC009425712 (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, int32_t ___1_hashcode, bool* ___2_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, RuntimeObject*, int32_t, bool*, const RuntimeMethod*))ConcurrentDictionary_2_TryGetValueInternal_mC90C1584E0980D7B1B488EF4C3E36DC009425712_gshared)(__this, ___0_key, ___1_hashcode, ___2_value, method);
|
|
}
|
|
inline int32_t ConcurrentDictionary_2_GetBucket_m1DBE0B3399F83861D75B966C6A0E037316DDFFDD (int32_t ___0_hashcode, int32_t ___1_bucketCount, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (int32_t, int32_t, const RuntimeMethod*))ConcurrentDictionary_2_GetBucket_m1DBE0B3399F83861D75B966C6A0E037316DDFFDD_gshared)(___0_hashcode, ___1_bucketCount, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_ReleaseLocks_mA71B853F13E7FAF3AC663B6AEB45CEC022A4D260 (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, int32_t, int32_t, const RuntimeMethod*))ConcurrentDictionary_2_ReleaseLocks_mA71B853F13E7FAF3AC663B6AEB45CEC022A4D260_gshared)(__this, ___0_fromInclusive, ___1_toExclusive, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_AcquireAllLocks_m1B0055803C381184BE69298304EB2304F72DFC4A (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, int32_t* ___0_locksAcquired, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, int32_t*, const RuntimeMethod*))ConcurrentDictionary_2_AcquireAllLocks_m1B0055803C381184BE69298304EB2304F72DFC4A_gshared)(__this, ___0_locksAcquired, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF (int32_t ___0_val1, int32_t ___1_val2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
inline void ConcurrentDictionary_2_CopyToPairs_m900F67D62C3766A28B46354A6532421B8568B5FF (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7*, int32_t, const RuntimeMethod*))ConcurrentDictionary_2_CopyToPairs_m900F67D62C3766A28B46354A6532421B8568B5FF_gshared)(__this, ___0_array, ___1_index, method);
|
|
}
|
|
inline KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* Array_Empty_TisKeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423_m33FD39B66E19241823DC3F53991FB83782F331C2_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* (*) (const RuntimeMethod*))Array_Empty_TisKeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423_m33FD39B66E19241823DC3F53991FB83782F331C2_gshared_inline)(method);
|
|
}
|
|
inline void KeyValuePair_2__ctor_m57BB84A94F6F00F1CADA0C8C921E726D8D4A4854 (KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423* __this, RuntimeObject* ___0_key, bool ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423*, RuntimeObject*, bool, const RuntimeMethod*))KeyValuePair_2__ctor_m57BB84A94F6F00F1CADA0C8C921E726D8D4A4854_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DictionaryEntry__ctor_m2768353E53A75C4860E34B37DAF1342120C5D1EA (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method) ;
|
|
inline void U3CGetEnumeratorU3Ed__35__ctor_m93C3CB201F9E0CAC03BD99789457E0DF0502B0B7 (U3CGetEnumeratorU3Ed__35_t09ECA34287F02611E13987D9E41BF974EFD81665* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (U3CGetEnumeratorU3Ed__35_t09ECA34287F02611E13987D9E41BF974EFD81665*, int32_t, const RuntimeMethod*))U3CGetEnumeratorU3Ed__35__ctor_m93C3CB201F9E0CAC03BD99789457E0DF0502B0B7_gshared)(__this, ___0_U3CU3E1__state, method);
|
|
}
|
|
inline void Node__ctor_m5A8CED36390839315C7E6E815D1215D9B001EEF4 (Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* __this, RuntimeObject* ___0_key, bool ___1_value, int32_t ___2_hashcode, Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* ___3_next, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5*, RuntimeObject*, bool, int32_t, Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5*, const RuntimeMethod*))Node__ctor_m5A8CED36390839315C7E6E815D1215D9B001EEF4_gshared)(__this, ___0_key, ___1_value, ___2_hashcode, ___3_next, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_GrowTable_mEA819466FD8756C4266E057D366223A929D000BC (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* ___0_tables, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB*, const RuntimeMethod*))ConcurrentDictionary_2_GrowTable_mEA819466FD8756C4266E057D366223A929D000BC_gshared)(__this, ___0_tables, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_ThrowKeyNotFoundException_m2B3EA5F3FAF548B98775CAFCFD3C77C4A712F236 (RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (RuntimeObject*, const RuntimeMethod*))ConcurrentDictionary_2_ThrowKeyNotFoundException_m2B3EA5F3FAF548B98775CAFCFD3C77C4A712F236_gshared)(___0_key, 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 KeyNotFoundException__ctor_mBD1D75B73DD5D7C6C72E4F7A021778837B6F2C6B (KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
inline int32_t ConcurrentDictionary_2_GetCountInternal_m3607F18C53F476E99FA1D177A1FB21EB0A7AEACF (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, const RuntimeMethod*))ConcurrentDictionary_2_GetCountInternal_m3607F18C53F476E99FA1D177A1FB21EB0A7AEACF_gshared)(__this, method);
|
|
}
|
|
inline bool Func_2_Invoke_m2014423FB900F135C8FF994125604FF9E6AAE829_inline (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00*, RuntimeObject*, const RuntimeMethod*))Func_2_Invoke_m2014423FB900F135C8FF994125604FF9E6AAE829_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_TryAdd_m9131A9C97A3FC9B404658285E8707766EEBAD68B (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, RuntimeObject*, bool, const RuntimeMethod*))ConcurrentDictionary_2_TryAdd_m9131A9C97A3FC9B404658285E8707766EEBAD68B_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_TryRemove_m8BDB3FA1F655CD98F6563B3CF7B67CBCFD2D32A9 (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, RuntimeObject*, bool*, const RuntimeMethod*))ConcurrentDictionary_2_TryRemove_m8BDB3FA1F655CD98F6563B3CF7B67CBCFD2D32A9_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* ConcurrentDictionary_2_GetKeys_mC1387F14EE0C8D857CDCE99250E929051E453226 (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, const RuntimeMethod*))ConcurrentDictionary_2_GetKeys_mC1387F14EE0C8D857CDCE99250E929051E453226_gshared)(__this, method);
|
|
}
|
|
inline ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14* ConcurrentDictionary_2_GetValues_m73720151BAFEF4961618F5F84112660E7609126B (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14* (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, const RuntimeMethod*))ConcurrentDictionary_2_GetValues_m73720151BAFEF4961618F5F84112660E7609126B_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155 (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, String_t* ___1_message, const RuntimeMethod* method) ;
|
|
inline RuntimeObject* ConcurrentDictionary_2_GetEnumerator_m6429F2BCF47DF337C5BA1ED025B5BE69BABA354C (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, const RuntimeMethod*))ConcurrentDictionary_2_GetEnumerator_m6429F2BCF47DF337C5BA1ED025B5BE69BABA354C_gshared)(__this, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_ContainsKey_m4220CA2F2BB439BCBC87EE1DFBAD5F4B8AFFAE8F (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, RuntimeObject*, const RuntimeMethod*))ConcurrentDictionary_2_ContainsKey_m4220CA2F2BB439BCBC87EE1DFBAD5F4B8AFFAE8F_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline void DictionaryEnumerator__ctor_m8939BDDCC2510C40831561CB7D1845F751EC3C7C (DictionaryEnumerator_t89B36B17C8760EDB41C3B7B9CB958EB90E92B183* __this, ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* ___0_dictionary, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DictionaryEnumerator_t89B36B17C8760EDB41C3B7B9CB958EB90E92B183*, ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, const RuntimeMethod*))DictionaryEnumerator__ctor_m8939BDDCC2510C40831561CB7D1845F751EC3C7C_gshared)(__this, ___0_dictionary, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_set_Item_m71753CC41408C8AFFE4A121A6B818E72A83D059C (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, RuntimeObject*, bool, const RuntimeMethod*))ConcurrentDictionary_2_set_Item_m71753CC41408C8AFFE4A121A6B818E72A83D059C_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57 (RuntimeArray* __this, const RuntimeMethod* method) ;
|
|
inline void ConcurrentDictionary_2_CopyToEntries_m4771A9A4F6FCD1436DB6A13633CF0D2CB872C517 (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533*, int32_t, const RuntimeMethod*))ConcurrentDictionary_2_CopyToEntries_m4771A9A4F6FCD1436DB6A13633CF0D2CB872C517_gshared)(__this, ___0_array, ___1_index, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_CopyToObjects_m4105F3AF4F7746BE773241B908E4AE76A90F5C57 (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, int32_t, const RuntimeMethod*))ConcurrentDictionary_2_CopyToObjects_m4105F3AF4F7746BE773241B908E4AE76A90F5C57_gshared)(__this, ___0_array, ___1_index, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, String_t* ___1_paramName, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
inline void ConcurrentDictionary_2_AcquireLocks_m6DCC70E9E92179B98BF49E314AE1A654DEECB9A1 (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, int32_t* ___2_locksAcquired, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, int32_t, int32_t, int32_t*, const RuntimeMethod*))ConcurrentDictionary_2_AcquireLocks_m6DCC70E9E92179B98BF49E314AE1A654DEECB9A1_gshared)(__this, ___0_fromInclusive, ___1_toExclusive, ___2_locksAcquired, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41 (RuntimeArray* ___0_sourceArray, int32_t ___1_sourceIndex, RuntimeArray* ___2_destinationArray, int32_t ___3_destinationIndex, int32_t ___4_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t PlatformHelper_get_ProcessorCount_m123AB465E201104882D03864A7C6E08F1A55F3F9 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventSource_IsEnabled_m0B2F63F81423D7832DC5526D0F3490C77CAB57A5 (EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CDSCollectionETWBCLProvider_ConcurrentDictionary_AcquiringAllLocks_mF33BBE9D19970C7F3C3DB3C0F6BCF16BEEC26EFA (CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999* __this, int32_t ___0_numOfBuckets, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951 (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* __this, const RuntimeMethod* method) ;
|
|
inline void List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428 (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, int32_t ___0_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, int32_t, const RuntimeMethod*))List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428_gshared)(__this, ___0_capacity, method);
|
|
}
|
|
inline void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline void ReadOnlyCollection_1__ctor_mF2D2ACE0752C3B97343B72328D49200F45C14B65 (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* __this, RuntimeObject* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_mF2D2ACE0752C3B97343B72328D49200F45C14B65_gshared)(__this, ___0_list, method);
|
|
}
|
|
inline void List_1__ctor_m91DC7897CFBCC9E83397E65300A31D6D6FDEA6FC (List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A* __this, int32_t ___0_capacity, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A*, int32_t, const RuntimeMethod*))List_1__ctor_m91DC7897CFBCC9E83397E65300A31D6D6FDEA6FC_gshared)(__this, ___0_capacity, method);
|
|
}
|
|
inline void List_1_Add_m5AAB6DCB6C30EB5769B4E8DB8170E50319F0A9ED_inline (List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A* __this, bool ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A*, bool, const RuntimeMethod*))List_1_Add_m5AAB6DCB6C30EB5769B4E8DB8170E50319F0A9ED_gshared_inline)(__this, ___0_item, method);
|
|
}
|
|
inline void ReadOnlyCollection_1__ctor_m3042DC024824AA3294D16E9595FFF5F600B3E18D (ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14* __this, RuntimeObject* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14*, RuntimeObject*, const RuntimeMethod*))ReadOnlyCollection_1__ctor_m3042DC024824AA3294D16E9595FFF5F600B3E18D_gshared)(__this, ___0_list, method);
|
|
}
|
|
inline KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* ConcurrentDictionary_2_ToArray_m771E20D504478265040C2EABD8CC9F5EC838A7F5 (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, const RuntimeMethod*))ConcurrentDictionary_2_ToArray_m771E20D504478265040C2EABD8CC9F5EC838A7F5_gshared)(__this, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_InitializeFromCollection_mF839AEDF0EB65654C73D36DDACEE1CB8BC875585 (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01*, RuntimeObject*, const RuntimeMethod*))ConcurrentDictionary_2_InitializeFromCollection_mF839AEDF0EB65654C73D36DDACEE1CB8BC875585_gshared)(__this, ___0_collection, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_IsValueWriteAtomic_m05B4374DF135C28F4CA8CA474793052557BFD54C (const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (const RuntimeMethod*))ConcurrentDictionary_2_IsValueWriteAtomic_m05B4374DF135C28F4CA8CA474793052557BFD54C_gshared)(method);
|
|
}
|
|
inline int32_t ConcurrentDictionary_2_get_DefaultConcurrencyLevel_m6D0A5B42819471D975E4CB0AE3867346D2A81383 (const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (const RuntimeMethod*))ConcurrentDictionary_2_get_DefaultConcurrencyLevel_m6D0A5B42819471D975E4CB0AE3867346D2A81383_gshared)(method);
|
|
}
|
|
inline void ConcurrentDictionary_2__ctor_m6E7D16F028BFD7FF1F86EC8CA87B54BA90D2B00E (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, int32_t ___0_concurrencyLevel, int32_t ___1_capacity, bool ___2_growLockArray, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, int32_t, int32_t, bool, RuntimeObject*, const RuntimeMethod*))ConcurrentDictionary_2__ctor_m6E7D16F028BFD7FF1F86EC8CA87B54BA90D2B00E_gshared)(__this, ___0_concurrencyLevel, ___1_capacity, ___2_growLockArray, ___3_comparer, method);
|
|
}
|
|
inline RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230*, const RuntimeMethod*))KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6 (const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (const RuntimeMethod*))ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6_gshared)(method);
|
|
}
|
|
inline RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230*, const RuntimeMethod*))KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline)(__this, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_TryAddInternal_m62921F1BBA26758C8E118413653422214D054B05 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, int32_t ___1_hashcode, RuntimeObject* ___2_value, bool ___3_updateIfExists, bool ___4_acquireLock, RuntimeObject** ___5_resultingValue, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, RuntimeObject*, int32_t, RuntimeObject*, bool, bool, RuntimeObject**, const RuntimeMethod*))ConcurrentDictionary_2_TryAddInternal_m62921F1BBA26758C8E118413653422214D054B05_gshared)(__this, ___0_key, ___1_hashcode, ___2_value, ___3_updateIfExists, ___4_acquireLock, ___5_resultingValue, method);
|
|
}
|
|
inline void Tables__ctor_m53DA34DE77197BE2E495B724556D3B9C5BB8B65E (Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* __this, NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* ___0_buckets, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___1_locks, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___2_countPerLock, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6*, NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, const RuntimeMethod*))Tables__ctor_m53DA34DE77197BE2E495B724556D3B9C5BB8B65E_gshared)(__this, ___0_buckets, ___1_locks, ___2_countPerLock, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_TryGetValue_mE794BBB2811B9244CF8ECB11994F70DEB6BEFDF7 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, RuntimeObject*, RuntimeObject**, const RuntimeMethod*))ConcurrentDictionary_2_TryGetValue_mE794BBB2811B9244CF8ECB11994F70DEB6BEFDF7_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_TryRemoveInternal_mECC197E0B75D875C446D3D53E65B37E9BC72B162 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, bool ___2_matchValue, RuntimeObject* ___3_oldValue, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, RuntimeObject*, RuntimeObject**, bool, RuntimeObject*, const RuntimeMethod*))ConcurrentDictionary_2_TryRemoveInternal_mECC197E0B75D875C446D3D53E65B37E9BC72B162_gshared)(__this, ___0_key, ___1_value, ___2_matchValue, ___3_oldValue, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_GetBucketAndLockNo_m45E3479E1AACFE4F39CD86B8CC6C49E8AD6507A1 (int32_t ___0_hashcode, int32_t* ___1_bucketNo, int32_t* ___2_lockNo, int32_t ___3_bucketCount, int32_t ___4_lockCount, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (int32_t, int32_t*, int32_t*, int32_t, int32_t, const RuntimeMethod*))ConcurrentDictionary_2_GetBucketAndLockNo_m45E3479E1AACFE4F39CD86B8CC6C49E8AD6507A1_gshared)(___0_hashcode, ___1_bucketNo, ___2_lockNo, ___3_bucketCount, ___4_lockCount, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_TryGetValueInternal_m6652F2101F8A95B357BD0EF5FF6CA6EF9FFAB4E6 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, int32_t ___1_hashcode, RuntimeObject** ___2_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, RuntimeObject*, int32_t, RuntimeObject**, const RuntimeMethod*))ConcurrentDictionary_2_TryGetValueInternal_m6652F2101F8A95B357BD0EF5FF6CA6EF9FFAB4E6_gshared)(__this, ___0_key, ___1_hashcode, ___2_value, method);
|
|
}
|
|
inline int32_t ConcurrentDictionary_2_GetBucket_m9EB38A937BA93FB1FF25671CC62113967A829799 (int32_t ___0_hashcode, int32_t ___1_bucketCount, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (int32_t, int32_t, const RuntimeMethod*))ConcurrentDictionary_2_GetBucket_m9EB38A937BA93FB1FF25671CC62113967A829799_gshared)(___0_hashcode, ___1_bucketCount, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_ReleaseLocks_m0F2C015E8701256B786281D8D29B75868171C705 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, int32_t, int32_t, const RuntimeMethod*))ConcurrentDictionary_2_ReleaseLocks_m0F2C015E8701256B786281D8D29B75868171C705_gshared)(__this, ___0_fromInclusive, ___1_toExclusive, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_AcquireAllLocks_mEEA5D51FFF0AE48412FCF37B5C8954A5DEE8C9D6 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, int32_t* ___0_locksAcquired, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, int32_t*, const RuntimeMethod*))ConcurrentDictionary_2_AcquireAllLocks_mEEA5D51FFF0AE48412FCF37B5C8954A5DEE8C9D6_gshared)(__this, ___0_locksAcquired, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_CopyToPairs_mF6358833C6BB17A51A6C91CC8C34A019711D429E (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67*, int32_t, const RuntimeMethod*))ConcurrentDictionary_2_CopyToPairs_mF6358833C6BB17A51A6C91CC8C34A019711D429E_gshared)(__this, ___0_array, ___1_index, method);
|
|
}
|
|
inline KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* Array_Empty_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_m2D55A4A51DA7B1571C2722D1B9ADDBBA8C6EC441_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* (*) (const RuntimeMethod*))Array_Empty_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_m2D55A4A51DA7B1571C2722D1B9ADDBBA8C6EC441_gshared_inline)(method);
|
|
}
|
|
inline void KeyValuePair_2__ctor_m0D5C3E0BE2D37252D3F4E0F0EA9A13C9458D4950 (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))KeyValuePair_2__ctor_m0D5C3E0BE2D37252D3F4E0F0EA9A13C9458D4950_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void U3CGetEnumeratorU3Ed__35__ctor_m081A1FE89C23793EF327B27268262718EDD11462 (U3CGetEnumeratorU3Ed__35_tFBB72033DD97EBEE1D1AB495DD3A0C1827242215* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (U3CGetEnumeratorU3Ed__35_tFBB72033DD97EBEE1D1AB495DD3A0C1827242215*, int32_t, const RuntimeMethod*))U3CGetEnumeratorU3Ed__35__ctor_m081A1FE89C23793EF327B27268262718EDD11462_gshared)(__this, ___0_U3CU3E1__state, method);
|
|
}
|
|
inline void Node__ctor_m653DF0B15E45A27457D589067D641C5EFC97D2CB (Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, int32_t ___2_hashcode, Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* ___3_next, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Node_t821211F0535E80E80FDC8FFB600F681E98286BF0*, RuntimeObject*, RuntimeObject*, int32_t, Node_t821211F0535E80E80FDC8FFB600F681E98286BF0*, const RuntimeMethod*))Node__ctor_m653DF0B15E45A27457D589067D641C5EFC97D2CB_gshared)(__this, ___0_key, ___1_value, ___2_hashcode, ___3_next, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_GrowTable_mA69966B4AFC2B973D73A66853B8821CBF7B6DE6E (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* ___0_tables, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6*, const RuntimeMethod*))ConcurrentDictionary_2_GrowTable_mA69966B4AFC2B973D73A66853B8821CBF7B6DE6E_gshared)(__this, ___0_tables, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_ThrowKeyNotFoundException_m41CDF9614DAC667AD5F3C68C636E604D33ACADD3 (RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (RuntimeObject*, const RuntimeMethod*))ConcurrentDictionary_2_ThrowKeyNotFoundException_m41CDF9614DAC667AD5F3C68C636E604D33ACADD3_gshared)(___0_key, method);
|
|
}
|
|
inline int32_t ConcurrentDictionary_2_GetCountInternal_m27C98C3E7DD93340C1E785A2AB447302EB908792 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, const RuntimeMethod*))ConcurrentDictionary_2_GetCountInternal_m27C98C3E7DD93340C1E785A2AB447302EB908792_gshared)(__this, method);
|
|
}
|
|
inline RuntimeObject* Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_inline (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Func_2_tACBF5A1656250800CE861707354491F0611F6624*, RuntimeObject*, const RuntimeMethod*))Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_TryAdd_mA7D07DAB0E4F228BEDBEBA3BEA124A7C839B0DFC (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))ConcurrentDictionary_2_TryAdd_mA7D07DAB0E4F228BEDBEBA3BEA124A7C839B0DFC_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_TryRemove_m24DC33BB549CD9414E0782A591303A484D2BA255 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, RuntimeObject*, RuntimeObject**, const RuntimeMethod*))ConcurrentDictionary_2_TryRemove_m24DC33BB549CD9414E0782A591303A484D2BA255_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* ConcurrentDictionary_2_GetKeys_m88788E15E6643C73CCEBECACE48FE70A95BE7F79 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, const RuntimeMethod*))ConcurrentDictionary_2_GetKeys_m88788E15E6643C73CCEBECACE48FE70A95BE7F79_gshared)(__this, method);
|
|
}
|
|
inline ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* ConcurrentDictionary_2_GetValues_m3081AC59E79522BDBD904B8E83BD71AFCCB888F7 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, const RuntimeMethod*))ConcurrentDictionary_2_GetValues_m3081AC59E79522BDBD904B8E83BD71AFCCB888F7_gshared)(__this, method);
|
|
}
|
|
inline RuntimeObject* ConcurrentDictionary_2_GetEnumerator_m12EC3080C7512F05099338965FD8626ACB343320 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, const RuntimeMethod*))ConcurrentDictionary_2_GetEnumerator_m12EC3080C7512F05099338965FD8626ACB343320_gshared)(__this, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_ContainsKey_m9BDE52D83802C8E05ED223C1864017FB19B43DBC (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, RuntimeObject*, const RuntimeMethod*))ConcurrentDictionary_2_ContainsKey_m9BDE52D83802C8E05ED223C1864017FB19B43DBC_gshared)(__this, ___0_key, method);
|
|
}
|
|
inline void DictionaryEnumerator__ctor_mED6D481F16E8597DF1F8FD3F1A173ED8F0D4D8E9 (DictionaryEnumerator_tBF822449C5FD8462D9DB8BF961E29F69C2F913A9* __this, ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* ___0_dictionary, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (DictionaryEnumerator_tBF822449C5FD8462D9DB8BF961E29F69C2F913A9*, ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, const RuntimeMethod*))DictionaryEnumerator__ctor_mED6D481F16E8597DF1F8FD3F1A173ED8F0D4D8E9_gshared)(__this, ___0_dictionary, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_set_Item_m95DD60ECF2EBCA55F2EC3B0AC122FE0C0D7D4E39 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))ConcurrentDictionary_2_set_Item_m95DD60ECF2EBCA55F2EC3B0AC122FE0C0D7D4E39_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_CopyToEntries_m86A84943282DF9A9DE1BEFBE06636986BB4326B3 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533*, int32_t, const RuntimeMethod*))ConcurrentDictionary_2_CopyToEntries_m86A84943282DF9A9DE1BEFBE06636986BB4326B3_gshared)(__this, ___0_array, ___1_index, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_CopyToObjects_m8F7F1238D5B978CFEFD2C8F21CA8EBB7F93DEF72 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, int32_t, const RuntimeMethod*))ConcurrentDictionary_2_CopyToObjects_m8F7F1238D5B978CFEFD2C8F21CA8EBB7F93DEF72_gshared)(__this, ___0_array, ___1_index, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_AcquireLocks_m450A81B0E0C12A899C2D57CA02B18A394E00846A (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, int32_t* ___2_locksAcquired, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, int32_t, int32_t, int32_t*, const RuntimeMethod*))ConcurrentDictionary_2_AcquireLocks_m450A81B0E0C12A899C2D57CA02B18A394E00846A_gshared)(__this, ___0_fromInclusive, ___1_toExclusive, ___2_locksAcquired, method);
|
|
}
|
|
inline KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ConcurrentDictionary_2_ToArray_m3BBAB4587582F5F1337AC5B47138B233DCE05611 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, const RuntimeMethod*))ConcurrentDictionary_2_ToArray_m3BBAB4587582F5F1337AC5B47138B233DCE05611_gshared)(__this, method);
|
|
}
|
|
inline void ConcurrentDictionary_2_InitializeFromCollection_m8A9AFB3C35AF03B0D953EF7F62D2419FCCEAA0A6 (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF*, RuntimeObject*, const RuntimeMethod*))ConcurrentDictionary_2_InitializeFromCollection_m8A9AFB3C35AF03B0D953EF7F62D2419FCCEAA0A6_gshared)(__this, ___0_collection, method);
|
|
}
|
|
inline bool ConcurrentDictionary_2_IsValueWriteAtomic_m92D50EA01ED33996745B57924CB025FD4A569F1B (const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (const RuntimeMethod*))ConcurrentDictionary_2_IsValueWriteAtomic_m92D50EA01ED33996745B57924CB025FD4A569F1B_gshared)(method);
|
|
}
|
|
inline void KeyValuePair_2__ctor_mD82E516936D2BDE6D46C8C45270250647986231E (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669* __this, Il2CppFullySharedGenericAny ___0_key, Il2CppFullySharedGenericAny ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, const RuntimeMethod*))KeyValuePair_2__ctor_mD82E516936D2BDE6D46C8C45270250647986231E_gshared)((KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void Segment__ctor_mE54FC9C999FCB994B13229636F99B4237997DD69 (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, int32_t ___0_boundedLength, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*, int32_t, const RuntimeMethod*))Segment__ctor_mE54FC9C999FCB994B13229636F99B4237997DD69_gshared)(__this, ___0_boundedLength, method);
|
|
}
|
|
inline int32_t Segment_RoundUpToPowerOf2_m445F2F69CB72AB1661DD9831B06BCB39A21D99FF (int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (int32_t, const RuntimeMethod*))Segment_RoundUpToPowerOf2_m445F2F69CB72AB1661DD9831B06BCB39A21D99FF_gshared)(___0_i, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52 (int32_t ___0_val1, int32_t ___1_val2, const RuntimeMethod* method) ;
|
|
inline void ConcurrentQueue_1_Enqueue_m8E8D8D7943565B34DBC93C5C5D56063D0FBC047D (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8*, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD, const RuntimeMethod*))ConcurrentQueue_1_Enqueue_m8E8D8D7943565B34DBC93C5C5D56063D0FBC047D_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void ConcurrentQueue_1_InitializeFromCollection_m93ADF8F03ADBFC32B30A55F09B827C8D5C2CC343 (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8*, RuntimeObject*, const RuntimeMethod*))ConcurrentQueue_1_InitializeFromCollection_m93ADF8F03ADBFC32B30A55F09B827C8D5C2CC343_gshared)(__this, ___0_collection, method);
|
|
}
|
|
inline void ConcurrentQueue_1_CopyTo_mC5A20108CA000589686CAF69C27C8858BF965265 (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8*, ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203*, int32_t, const RuntimeMethod*))ConcurrentQueue_1_CopyTo_mC5A20108CA000589686CAF69C27C8858BF965265_gshared)(__this, ___0_array, ___1_index, method);
|
|
}
|
|
inline ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* ConcurrentQueue_1_ToArray_mF0C0898939538EA4EF991869E22E83F978D2C276 (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* (*) (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8*, const RuntimeMethod*))ConcurrentQueue_1_ToArray_mF0C0898939538EA4EF991869E22E83F978D2C276_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_CopyTo_mFD42E3443AB3B850ED6F19359698E242A08E1BAB (RuntimeArray* __this, RuntimeArray* ___0_array, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
inline bool ConcurrentQueue_1_TryDequeue_mFF536885040B79E9B6DDE22FE56E1744D731D324 (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8*, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD*, const RuntimeMethod*))ConcurrentQueue_1_TryDequeue_mFF536885040B79E9B6DDE22FE56E1744D731D324_gshared)(__this, ___0_result, method);
|
|
}
|
|
inline bool ConcurrentQueue_1_TryPeek_m36C441A718E7CC9A0451752DBA91021C87997BA6 (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_result, bool ___1_resultUsed, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8*, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD*, bool, const RuntimeMethod*))ConcurrentQueue_1_TryPeek_m36C441A718E7CC9A0451752DBA91021C87997BA6_gshared)(__this, ___0_result, ___1_resultUsed, method);
|
|
}
|
|
inline void ConcurrentQueue_1_SnapForObservation_mC813203E9C5757B1DA9466A256DD3C6C2B5836F8 (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** ___0_head, int32_t* ___1_headHead, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** ___2_tail, int32_t* ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8*, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531**, int32_t*, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531**, int32_t*, const RuntimeMethod*))ConcurrentQueue_1_SnapForObservation_mC813203E9C5757B1DA9466A256DD3C6C2B5836F8_gshared)(__this, ___0_head, ___1_headHead, ___2_tail, ___3_tailTail, method);
|
|
}
|
|
inline int64_t ConcurrentQueue_1_GetCount_m1C16CA95801D6CEA80C60FFA4417CF3C402A3CEF (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___0_head, int32_t ___1_headHead, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*, int32_t, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*, int32_t, const RuntimeMethod*))ConcurrentQueue_1_GetCount_m1C16CA95801D6CEA80C60FFA4417CF3C402A3CEF_gshared)(___0_head, ___1_headHead, ___2_tail, ___3_tailTail, method);
|
|
}
|
|
inline RuntimeObject* ConcurrentQueue_1_Enumerate_mBE8F1F279BCCE097150BEB388AF0C6E6D9F4D345 (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___0_head, int32_t ___1_headHead, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8*, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*, int32_t, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*, int32_t, const RuntimeMethod*))ConcurrentQueue_1_Enumerate_mBE8F1F279BCCE097150BEB388AF0C6E6D9F4D345_gshared)(__this, ___0_head, ___1_headHead, ___2_tail, ___3_tailTail, method);
|
|
}
|
|
inline int32_t ConcurrentQueue_1_GetCount_mDEC6722E41D6B0CD1D6CA1DCC0EDFF4D4079DB0D (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___0_s, int32_t ___1_head, int32_t ___2_tail, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*, int32_t, int32_t, const RuntimeMethod*))ConcurrentQueue_1_GetCount_mDEC6722E41D6B0CD1D6CA1DCC0EDFF4D4079DB0D_gshared)(___0_s, ___1_head, ___2_tail, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SpinWait_SpinOnce_m5B74E6B15013E90667646C0D943E886D4EC596AF (SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675* __this, const RuntimeMethod* method) ;
|
|
inline int32_t Segment_get_FreezeOffset_m85C8B0EBFA5AC151A44A14201B0514303F3F52E2 (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*, const RuntimeMethod*))Segment_get_FreezeOffset_m85C8B0EBFA5AC151A44A14201B0514303F3F52E2_gshared)(__this, method);
|
|
}
|
|
inline void Segment_EnsureFrozenForEnqueues_m7E2293D3637D2DF6EF322CE924578CFC6EF46152 (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*, const RuntimeMethod*))Segment_EnsureFrozenForEnqueues_m7E2293D3637D2DF6EF322CE924578CFC6EF46152_gshared)(__this, method);
|
|
}
|
|
inline void U3CEnumerateU3Ed__28__ctor_m4F92C7BB698ED882D8E0497CEE4D8FA3914ED733 (U3CEnumerateU3Ed__28_tEA742C92FD5C83A0B42BC0D9936D693C00E8AB1E* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (U3CEnumerateU3Ed__28_tEA742C92FD5C83A0B42BC0D9936D693C00E8AB1E*, int32_t, const RuntimeMethod*))U3CEnumerateU3Ed__28__ctor_m4F92C7BB698ED882D8E0497CEE4D8FA3914ED733_gshared)(__this, ___0_U3CU3E1__state, method);
|
|
}
|
|
inline bool Segment_TryEnqueue_m717FD50925EA6ABB7EFD908AE4498F58A080BFC0 (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD, const RuntimeMethod*))Segment_TryEnqueue_m717FD50925EA6ABB7EFD908AE4498F58A080BFC0_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void ConcurrentQueue_1_EnqueueSlow_mA0B6FB508C7DE9FD111F8DFDFC12517DB7D0261D (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8*, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD, const RuntimeMethod*))ConcurrentQueue_1_EnqueueSlow_mA0B6FB508C7DE9FD111F8DFDFC12517DB7D0261D_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline int32_t Segment_get_Capacity_mDD685AE9A93EB9470B7EF7EA01774B7A53638EE3 (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*, const RuntimeMethod*))Segment_get_Capacity_mDD685AE9A93EB9470B7EF7EA01774B7A53638EE3_gshared)(__this, method);
|
|
}
|
|
inline bool Segment_TryDequeue_m7F22B9F0E48C58EE142F5F6521573BF540C1036B (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD*, const RuntimeMethod*))Segment_TryDequeue_m7F22B9F0E48C58EE142F5F6521573BF540C1036B_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline bool ConcurrentQueue_1_TryDequeueSlow_m2D15E87BAC03C286FC5AED371246B462D8E21551 (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8*, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD*, const RuntimeMethod*))ConcurrentQueue_1_TryDequeueSlow_m2D15E87BAC03C286FC5AED371246B462D8E21551_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline bool Segment_TryPeek_m685ADC5F91B878FDBBFDA6B2AD0C83D66FB42BC7 (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_result, bool ___1_resultUsed, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD*, bool, const RuntimeMethod*))Segment_TryPeek_m685ADC5F91B878FDBBFDA6B2AD0C83D66FB42BC7_gshared)(__this, ___0_result, ___1_resultUsed, method);
|
|
}
|
|
inline void Segment__ctor_mD5C583944CF31346F08BA757C9C15371C4858FA7 (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, int32_t ___0_boundedLength, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*, int32_t, const RuntimeMethod*))Segment__ctor_mD5C583944CF31346F08BA757C9C15371C4858FA7_gshared)(__this, ___0_boundedLength, method);
|
|
}
|
|
inline int32_t Segment_RoundUpToPowerOf2_m903ED2EB85CA00362471EEBDE70010461BFED979 (int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (int32_t, const RuntimeMethod*))Segment_RoundUpToPowerOf2_m903ED2EB85CA00362471EEBDE70010461BFED979_gshared)(___0_i, method);
|
|
}
|
|
inline void ConcurrentQueue_1_Enqueue_m6E14BFDDF046BB59B8EEF4A398D5AB7F4720D0A4 (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4*, RuntimeObject*, const RuntimeMethod*))ConcurrentQueue_1_Enqueue_m6E14BFDDF046BB59B8EEF4A398D5AB7F4720D0A4_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void ConcurrentQueue_1_InitializeFromCollection_m7749950AB9C43CF95C3C0F24C63942A2A6EC55C6 (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4*, RuntimeObject*, const RuntimeMethod*))ConcurrentQueue_1_InitializeFromCollection_m7749950AB9C43CF95C3C0F24C63942A2A6EC55C6_gshared)(__this, ___0_collection, method);
|
|
}
|
|
inline void ConcurrentQueue_1_CopyTo_m8A2CD5FB0B29389CAE0ED09D48C7C40C3FE47E47 (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, int32_t, const RuntimeMethod*))ConcurrentQueue_1_CopyTo_m8A2CD5FB0B29389CAE0ED09D48C7C40C3FE47E47_gshared)(__this, ___0_array, ___1_index, method);
|
|
}
|
|
inline ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ConcurrentQueue_1_ToArray_mE05BD160E613A2B36E3002F87461F4A38B126AFC (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* (*) (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4*, const RuntimeMethod*))ConcurrentQueue_1_ToArray_mE05BD160E613A2B36E3002F87461F4A38B126AFC_gshared)(__this, method);
|
|
}
|
|
inline bool ConcurrentQueue_1_TryDequeue_m04C6B697D83A4AA4BAD38344201C140ED7DC5CAA (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject** ___0_result, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4*, RuntimeObject**, const RuntimeMethod*))ConcurrentQueue_1_TryDequeue_m04C6B697D83A4AA4BAD38344201C140ED7DC5CAA_gshared)(__this, ___0_result, method);
|
|
}
|
|
inline bool ConcurrentQueue_1_TryPeek_mC3450BED83DB82DEA37C407E34373008958BC9BB (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject** ___0_result, bool ___1_resultUsed, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4*, RuntimeObject**, bool, const RuntimeMethod*))ConcurrentQueue_1_TryPeek_mC3450BED83DB82DEA37C407E34373008958BC9BB_gshared)(__this, ___0_result, ___1_resultUsed, method);
|
|
}
|
|
inline void ConcurrentQueue_1_SnapForObservation_m60B8F5FA00D76A094EB67116F89A32807F45B419 (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** ___0_head, int32_t* ___1_headHead, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** ___2_tail, int32_t* ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4*, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2**, int32_t*, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2**, int32_t*, const RuntimeMethod*))ConcurrentQueue_1_SnapForObservation_m60B8F5FA00D76A094EB67116F89A32807F45B419_gshared)(__this, ___0_head, ___1_headHead, ___2_tail, ___3_tailTail, method);
|
|
}
|
|
inline int64_t ConcurrentQueue_1_GetCount_mFD43C52C52B526FD80C6356E0E8CEB2908E94B1D (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___0_head, int32_t ___1_headHead, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*, int32_t, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*, int32_t, const RuntimeMethod*))ConcurrentQueue_1_GetCount_mFD43C52C52B526FD80C6356E0E8CEB2908E94B1D_gshared)(___0_head, ___1_headHead, ___2_tail, ___3_tailTail, method);
|
|
}
|
|
inline RuntimeObject* ConcurrentQueue_1_Enumerate_mB2EACA03901B963C1957491121264CB11B5B2C05 (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___0_head, int32_t ___1_headHead, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4*, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*, int32_t, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*, int32_t, const RuntimeMethod*))ConcurrentQueue_1_Enumerate_mB2EACA03901B963C1957491121264CB11B5B2C05_gshared)(__this, ___0_head, ___1_headHead, ___2_tail, ___3_tailTail, method);
|
|
}
|
|
inline int32_t ConcurrentQueue_1_GetCount_m6EE5FF1A402681EE1CBCFC6857C8CEF8CF7C1CD4 (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___0_s, int32_t ___1_head, int32_t ___2_tail, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*, int32_t, int32_t, const RuntimeMethod*))ConcurrentQueue_1_GetCount_m6EE5FF1A402681EE1CBCFC6857C8CEF8CF7C1CD4_gshared)(___0_s, ___1_head, ___2_tail, method);
|
|
}
|
|
inline int32_t Segment_get_FreezeOffset_m402D47C4B47FF6B763734B006DA71BA5DBC42582 (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*, const RuntimeMethod*))Segment_get_FreezeOffset_m402D47C4B47FF6B763734B006DA71BA5DBC42582_gshared)(__this, method);
|
|
}
|
|
inline void Segment_EnsureFrozenForEnqueues_mC7EA723BE98E075BE173825F3913AA3C16F0B655 (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*, const RuntimeMethod*))Segment_EnsureFrozenForEnqueues_mC7EA723BE98E075BE173825F3913AA3C16F0B655_gshared)(__this, method);
|
|
}
|
|
inline void U3CEnumerateU3Ed__28__ctor_m12DD4367CAA863C7406D2DC6FD650C53ADA44B29 (U3CEnumerateU3Ed__28_t0208D88B19E67F3B47A3ACACCAF0810D4DA5D4AE* __this, int32_t ___0_U3CU3E1__state, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (U3CEnumerateU3Ed__28_t0208D88B19E67F3B47A3ACACCAF0810D4DA5D4AE*, int32_t, const RuntimeMethod*))U3CEnumerateU3Ed__28__ctor_m12DD4367CAA863C7406D2DC6FD650C53ADA44B29_gshared)(__this, ___0_U3CU3E1__state, method);
|
|
}
|
|
inline bool Segment_TryEnqueue_mC0606A90F9CBCD06D9ED05EA760356F9A9A9AF84 (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*, RuntimeObject*, const RuntimeMethod*))Segment_TryEnqueue_mC0606A90F9CBCD06D9ED05EA760356F9A9A9AF84_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void ConcurrentQueue_1_EnqueueSlow_m4CD45BC265B633641FAEEDDBA196DAD43BAE1C67 (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4*, RuntimeObject*, const RuntimeMethod*))ConcurrentQueue_1_EnqueueSlow_m4CD45BC265B633641FAEEDDBA196DAD43BAE1C67_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline int32_t Segment_get_Capacity_m6AC42C585777163E56321B193E08010DFD029898 (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*, const RuntimeMethod*))Segment_get_Capacity_m6AC42C585777163E56321B193E08010DFD029898_gshared)(__this, method);
|
|
}
|
|
inline bool Segment_TryDequeue_m65CCE1E0A24F41FA5EE05BBB78C07B873ADCC77E (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, RuntimeObject** ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*, RuntimeObject**, const RuntimeMethod*))Segment_TryDequeue_m65CCE1E0A24F41FA5EE05BBB78C07B873ADCC77E_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline bool ConcurrentQueue_1_TryDequeueSlow_m51E29FFC2018FE36494F806DE731B983CF149480 (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject** ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4*, RuntimeObject**, const RuntimeMethod*))ConcurrentQueue_1_TryDequeueSlow_m51E29FFC2018FE36494F806DE731B983CF149480_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline bool Segment_TryPeek_m8AE646DCD469A3337B3B3DA3B568612B8B3F7BD1 (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* __this, RuntimeObject** ___0_result, bool ___1_resultUsed, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*, RuntimeObject**, bool, const RuntimeMethod*))Segment_TryPeek_m8AE646DCD469A3337B3B3DA3B568612B8B3F7BD1_gshared)(__this, ___0_result, ___1_resultUsed, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GC_register_ephemeron_array_m7798D3C75D2E2DC50CAA2422C2B36656D7793D18 (EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t RuntimeHelpers_GetHashCode_m7B5D57E1EE2A59EDFA1BD237E9B37C6C836D774B (RuntimeObject* ___0_o, const RuntimeMethod* method) ;
|
|
inline void ConditionalWeakTable_2_RecomputeSize_mA8EA4C9A414745380F7E16B8A773146319737B39 (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605*, const RuntimeMethod*))ConditionalWeakTable_2_RecomputeSize_mA8EA4C9A414745380F7E16B8A773146319737B39_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t HashHelpers_GetPrime_m5B7AE10D5E76267579296C8F2CB8464AC2DE8472 (int32_t ___0_min, const RuntimeMethod* method) ;
|
|
inline void ConditionalWeakTable_2_RehashWithoutResize_m7B5A91678E9229FB79E164822F26C2AD4309EE55 (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605*, const RuntimeMethod*))ConditionalWeakTable_2_RehashWithoutResize_m7B5A91678E9229FB79E164822F26C2AD4309EE55_gshared)(__this, method);
|
|
}
|
|
inline void ConditionalWeakTable_2_Rehash_m95A9B6F55E92FC8E85D9E5B751B5F0F50F37430B (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605*, const RuntimeMethod*))ConditionalWeakTable_2_Rehash_m95A9B6F55E92FC8E85D9E5B751B5F0F50F37430B_gshared)(__this, method);
|
|
}
|
|
inline bool ConditionalWeakTable_2_TryGetValue_mA6697354DA1D2A76999FFDCC072C62AC5C364124 (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605*, RuntimeObject*, RuntimeObject**, const RuntimeMethod*))ConditionalWeakTable_2_TryGetValue_mA6697354DA1D2A76999FFDCC072C62AC5C364124_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline RuntimeObject* CreateValueCallback_Invoke_mDCA362F0B946C52272C5956DA35F53B8DC49BA83_inline (CreateValueCallback_t85D075DDCAD202B428EC47723590605681FE2BD1* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (CreateValueCallback_t85D075DDCAD202B428EC47723590605681FE2BD1*, RuntimeObject*, const RuntimeMethod*))CreateValueCallback_Invoke_mDCA362F0B946C52272C5956DA35F53B8DC49BA83_gshared_inline)(__this, ___0_key, method);
|
|
}
|
|
inline void ConditionalWeakTable_2_Add_mA45BB747BEE445F5A6D5ABC32B2070CAF5E9BE44 (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))ConditionalWeakTable_2_Add_mA45BB747BEE445F5A6D5ABC32B2070CAF5E9BE44_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void Enumerator__ctor_m84587408157BE80BC6CBBB684C38AC913FB6FDE6 (Enumerator_t94AEE59300B379FF13424743ADEE68A3E360D190* __this, ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* ___0_table, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t94AEE59300B379FF13424743ADEE68A3E360D190*, ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605*, const RuntimeMethod*))Enumerator__ctor_m84587408157BE80BC6CBBB684C38AC913FB6FDE6_gshared)(__this, ___0_table, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter__ctor_m77CE68352881C1970E69FB343827A974C75CB8A6 (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5*, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_m77CE68352881C1970E69FB343827A974C75CB8A6_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline void ConfiguredTaskAwaitable_1__ctor_m8B9FF6EA3E63C25A4B1FC8327AEF894C73B573E6 (ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71* __this, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71*, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m8B9FF6EA3E63C25A4B1FC8327AEF894C73B573E6_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_inline (ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 (*) (ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter__ctor_m810950E3F6481AF44D66A5F789EE04CCA7BE86F4 (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719*, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D*, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_m810950E3F6481AF44D66A5F789EE04CCA7BE86F4_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline void ConfiguredTaskAwaitable_1__ctor_m4F26D0F1036C76A4B6833A1BFF9A0613B5FAE968 (ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029* __this, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029*, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D*, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m4F26D0F1036C76A4B6833A1BFF9A0613B5FAE968_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719 ConfiguredTaskAwaitable_1_GetAwaiter_m63812BEACBC9720D9E9860A508588B1DE0F34C66_inline (ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719 (*) (ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m63812BEACBC9720D9E9860A508588B1DE0F34C66_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter__ctor_m63FAB9FCE0BDDF0AB1A4838521963EDC84000CD9 (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9*, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_m63FAB9FCE0BDDF0AB1A4838521963EDC84000CD9_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline void ConfiguredTaskAwaitable_1__ctor_mC58338FE54F7CA15B1C73A6FD96FEC36F1A24C2F (ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A* __this, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A*, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_mC58338FE54F7CA15B1C73A6FD96FEC36F1A24C2F_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9 ConfiguredTaskAwaitable_1_GetAwaiter_mE947EA14D65DCF41B2988D73580C1886D1FC836B_inline (ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9 (*) (ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_mE947EA14D65DCF41B2988D73580C1886D1FC836B_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter__ctor_m08995B8DCA78C52E51E6793CEBBD3F63E992B847 (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC*, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_m08995B8DCA78C52E51E6793CEBBD3F63E992B847_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline void ConfiguredTaskAwaitable_1__ctor_m74B21033ECFC6456863C285996272E5845ED34A3 (ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49* __this, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49*, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m74B21033ECFC6456863C285996272E5845ED34A3_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC ConfiguredTaskAwaitable_1_GetAwaiter_m6B1B72AC1AA4F779C7CADC540F89E33ECCBF93CC_inline (ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC (*) (ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m6B1B72AC1AA4F779C7CADC540F89E33ECCBF93CC_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter__ctor_mF2DCDA01D85EF264E6894FAD5145629A90444BF6 (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4*, Task_1_t824317F4B958F7512E8F7300511752937A6C6043*, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_mF2DCDA01D85EF264E6894FAD5145629A90444BF6_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline void ConfiguredTaskAwaitable_1__ctor_m4250D7AC55939EE7E067CB43F1EA9205ADCF5BB9 (ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C* __this, Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C*, Task_1_t824317F4B958F7512E8F7300511752937A6C6043*, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m4250D7AC55939EE7E067CB43F1EA9205ADCF5BB9_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4 ConfiguredTaskAwaitable_1_GetAwaiter_m3D8C463996184A1FE94D1B59A379F3ACB425C7CF_inline (ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4 (*) (ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m3D8C463996184A1FE94D1B59A379F3ACB425C7CF_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter__ctor_m81EA182AFEBA13DB3FBEBD681D641477D6CDD7E5 (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*, Task_1_t4C228DE57804012969575431CFF12D57C875552D*, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_m81EA182AFEBA13DB3FBEBD681D641477D6CDD7E5_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline void ConfiguredTaskAwaitable_1__ctor_mE710DDACEA51B67F609363489CA86CAB560D7097 (ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A*, Task_1_t4C228DE57804012969575431CFF12D57C875552D*, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_mE710DDACEA51B67F609363489CA86CAB560D7097_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_inline (ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 (*) (ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter__ctor_m46556B7AD9DF2E22AEDC1162D6129412ED37B288 (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B*, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_m46556B7AD9DF2E22AEDC1162D6129412ED37B288_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline void ConfiguredTaskAwaitable_1__ctor_mF6F327D56C404722F1A1274ACDA0B194ABDC7947 (ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8*, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_mF6F327D56C404722F1A1274ACDA0B194ABDC7947_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B ConfiguredTaskAwaitable_1_GetAwaiter_m447B2323EADC587DE0ABFEA2FEF3AF3342F75186_inline (ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B (*) (ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m447B2323EADC587DE0ABFEA2FEF3AF3342F75186_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter__ctor_mE9DAAA97DD3A60C1E8D3B30BD4F54654FA00FE3D (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C*, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F*, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_mE9DAAA97DD3A60C1E8D3B30BD4F54654FA00FE3D_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline void ConfiguredTaskAwaitable_1__ctor_mF5604B9DC5F681A54B406BAF635C17A7B6E9388F (ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3* __this, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3*, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F*, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_mF5604B9DC5F681A54B406BAF635C17A7B6E9388F_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C ConfiguredTaskAwaitable_1_GetAwaiter_mFF4EF7AEFA89C01BCDFD3309A0B610F65F81E9DD_inline (ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C (*) (ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_mFF4EF7AEFA89C01BCDFD3309A0B610F65F81E9DD_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter__ctor_mE5C7A10A9927C38D268B75D38ED6087280CB4951 (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_mE5C7A10A9927C38D268B75D38ED6087280CB4951_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline void ConfiguredTaskAwaitable_1__ctor_m4246B1C32D9D68C5805B05C21DC58DA9C8201586 (ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m4246B1C32D9D68C5805B05C21DC58DA9C8201586_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 ConfiguredTaskAwaitable_1_GetAwaiter_m10364C3B0A904803E890B2D75674665F986BDAB2_inline (ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 (*) (ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m10364C3B0A904803E890B2D75674665F986BDAB2_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter__ctor_m3416F16B5D17AF6DE83C1657DF1DEF4EC56E23D3 (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC*, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F*, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_m3416F16B5D17AF6DE83C1657DF1DEF4EC56E23D3_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline void ConfiguredTaskAwaitable_1__ctor_mBE5D98F1161AD728FC0C2E60FA50C721BCD3122E (ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904* __this, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904*, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F*, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_mBE5D98F1161AD728FC0C2E60FA50C721BCD3122E_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC ConfiguredTaskAwaitable_1_GetAwaiter_m76195C44489DF59E908A90F3370693A6905CFDF5_inline (ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC (*) (ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_m76195C44489DF59E908A90F3370693A6905CFDF5_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter__ctor_mEB65866BA2A952D268F73A5B0B3C5F0C44ED52D4 (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A*, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_mEB65866BA2A952D268F73A5B0B3C5F0C44ED52D4_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline void ConfiguredTaskAwaitable_1__ctor_m45A6EB8D4B86D340F98CC2778C02F4ABAB41A56D (ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF* __this, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF*, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_m45A6EB8D4B86D340F98CC2778C02F4ABAB41A56D_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A ConfiguredTaskAwaitable_1_GetAwaiter_mF6A0C005CBE0A04B0342E47C626854C4364ADDB6_inline (ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A (*) (ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_mF6A0C005CBE0A04B0342E47C626854C4364ADDB6_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter__ctor_m5B53A410AE8900B3D565ED7C7FE9DAB92B2ECEC9 (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A*, Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*, bool, const RuntimeMethod*))ConfiguredTaskAwaiter__ctor_m5B53A410AE8900B3D565ED7C7FE9DAB92B2ECEC9_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline void ConfiguredTaskAwaitable_1__ctor_mCF681CB4825E085E3ED42B9E990609C36F282536 (ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922* __this, Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922*, Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*, bool, const RuntimeMethod*))ConfiguredTaskAwaitable_1__ctor_mCF681CB4825E085E3ED42B9E990609C36F282536_gshared)(__this, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
inline ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A ConfiguredTaskAwaitable_1_GetAwaiter_mA5D8A0E225B9D580F1FC5216C47A0B828B033390_inline (ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A (*) (ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922*, const RuntimeMethod*))ConfiguredTaskAwaitable_1_GetAwaiter_mA5D8A0E225B9D580F1FC5216C47A0B828B033390_gshared_inline)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* __this, const RuntimeMethod* method) ;
|
|
inline bool ConfiguredTaskAwaiter_get_IsCompleted_m943014E2A3A7AEEF6B38F9DA31887B07DC417131 (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m943014E2A3A7AEEF6B38F9DA31887B07DC417131_gshared)(__this, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___0_task, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___1_continuation, bool ___2_continueOnCapturedContext, bool ___3_flowExecutionContext, const RuntimeMethod* method) ;
|
|
inline void ConfiguredTaskAwaiter_OnCompleted_m2315CEBAE2124E81337575D4A8E42DFFDD28BB60 (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_m2315CEBAE2124E81337575D4A8E42DFFDD28BB60_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_m085AD3A95FDB707E9DE9F4B6A66DCB7D60B5372A (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m085AD3A95FDB707E9DE9F4B6A66DCB7D60B5372A_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___0_task, const RuntimeMethod* method) ;
|
|
inline Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 Task_1_get_ResultOnSuccess_mCE17C784EC8A76A7A669ADA89953086B95DEA9E2_inline (Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 (*) (Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*, const RuntimeMethod*))Task_1_get_ResultOnSuccess_mCE17C784EC8A76A7A669ADA89953086B95DEA9E2_gshared_inline)(__this, method);
|
|
}
|
|
inline Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ConfiguredTaskAwaiter_GetResult_mE648AD496FFAD4F2E5CFFA8DA38B365FDD634EFD (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 (*) (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_mE648AD496FFAD4F2E5CFFA8DA38B365FDD634EFD_gshared)(__this, method);
|
|
}
|
|
inline bool ConfiguredTaskAwaiter_get_IsCompleted_m267BA39F4AC0C8E837F1AAD93740DEF1EF90D8DC (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m267BA39F4AC0C8E837F1AAD93740DEF1EF90D8DC_gshared)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_OnCompleted_m79AE842BC3870C51BAA95A89FD3ACE0ACE5A829A (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_m79AE842BC3870C51BAA95A89FD3ACE0ACE5A829A_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_mC4C4D701AC1683EFC6F0C4B1D2133ECED4748E3E (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_mC4C4D701AC1683EFC6F0C4B1D2133ECED4748E3E_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 Task_1_get_ResultOnSuccess_mF3C0355E532212C56EB03CA82EB918C582829907_inline (Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 (*) (Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D*, const RuntimeMethod*))Task_1_get_ResultOnSuccess_mF3C0355E532212C56EB03CA82EB918C582829907_gshared_inline)(__this, method);
|
|
}
|
|
inline ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 ConfiguredTaskAwaiter_GetResult_m347EABFF757C87ACE59FACB17CA0E1F9EC759FF4 (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 (*) (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m347EABFF757C87ACE59FACB17CA0E1F9EC759FF4_gshared)(__this, method);
|
|
}
|
|
inline bool ConfiguredTaskAwaiter_get_IsCompleted_m7A303575FA10A44B6EA4D4E1E17BC6B138258BF7 (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m7A303575FA10A44B6EA4D4E1E17BC6B138258BF7_gshared)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_OnCompleted_mDCDA64598B3552449AFE549B815ED896A2051E74 (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_mDCDA64598B3552449AFE549B815ED896A2051E74_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_m428A965216C2ECF7652F8EB6076C379E6CFB84B3 (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m428A965216C2ECF7652F8EB6076C379E6CFB84B3_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F Task_1_get_ResultOnSuccess_m6D499E3CAECD874138D8268859F1C5ADB6BFB541_inline (Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F (*) (Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*, const RuntimeMethod*))Task_1_get_ResultOnSuccess_m6D499E3CAECD874138D8268859F1C5ADB6BFB541_gshared_inline)(__this, method);
|
|
}
|
|
inline ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F ConfiguredTaskAwaiter_GetResult_m1DA7AAAC696746E7848FBB001810FB78D141DFE4 (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F (*) (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m1DA7AAAC696746E7848FBB001810FB78D141DFE4_gshared)(__this, method);
|
|
}
|
|
inline bool ConfiguredTaskAwaiter_get_IsCompleted_mD77F71A816384AC7132A1371B9054E2B16CA7463 (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_mD77F71A816384AC7132A1371B9054E2B16CA7463_gshared)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_OnCompleted_mD89C6F15B540252DA24A815627E0ED8E4B0B0ABA (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_mD89C6F15B540252DA24A815627E0ED8E4B0B0ABA_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_mB6816BBBE292CB88E72D47F4A8F50F095FC880CF (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_mB6816BBBE292CB88E72D47F4A8F50F095FC880CF_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 Task_1_get_ResultOnSuccess_m214E858FC526E07DBB763D5E8823E3E541228015_inline (Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 (*) (Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*, const RuntimeMethod*))Task_1_get_ResultOnSuccess_m214E858FC526E07DBB763D5E8823E3E541228015_gshared_inline)(__this, method);
|
|
}
|
|
inline ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 ConfiguredTaskAwaiter_GetResult_m7B3942036E2A45F9A64916D1966F06DA950C1334 (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 (*) (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m7B3942036E2A45F9A64916D1966F06DA950C1334_gshared)(__this, method);
|
|
}
|
|
inline bool ConfiguredTaskAwaiter_get_IsCompleted_mC2024766896945A56978CF121456A78A6F054190 (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_mC2024766896945A56978CF121456A78A6F054190_gshared)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_OnCompleted_m7122579D9E3F23FF47037CE5B977673902632BED (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_m7122579D9E3F23FF47037CE5B977673902632BED_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_m56C37FD43DAF113A7BF8ED335649D7EC1C37450F (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m56C37FD43DAF113A7BF8ED335649D7EC1C37450F_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline bool Task_1_get_ResultOnSuccess_m15F655DF9F8EE6F8388A9432454900F07EFC57BB_inline (Task_1_t824317F4B958F7512E8F7300511752937A6C6043* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Task_1_t824317F4B958F7512E8F7300511752937A6C6043*, const RuntimeMethod*))Task_1_get_ResultOnSuccess_m15F655DF9F8EE6F8388A9432454900F07EFC57BB_gshared_inline)(__this, method);
|
|
}
|
|
inline bool ConfiguredTaskAwaiter_GetResult_mA0D0419EF40E9DF864B87B495FFE05C08475C00B (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_mA0D0419EF40E9DF864B87B495FFE05C08475C00B_gshared)(__this, method);
|
|
}
|
|
inline bool ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3 (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3_gshared)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_OnCompleted_m15282EE71D354E5E6DD4952FD8283E52D253EF1E (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_m15282EE71D354E5E6DD4952FD8283E52D253EF1E_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_m9BBAE6AEBDEFAC8BDBBAC1792B91C838A8328166 (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m9BBAE6AEBDEFAC8BDBBAC1792B91C838A8328166_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline int32_t Task_1_get_ResultOnSuccess_mF098AC108FFA2E0D992306C6D956BA37874FAC77_inline (Task_1_t4C228DE57804012969575431CFF12D57C875552D* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Task_1_t4C228DE57804012969575431CFF12D57C875552D*, const RuntimeMethod*))Task_1_get_ResultOnSuccess_mF098AC108FFA2E0D992306C6D956BA37874FAC77_gshared_inline)(__this, method);
|
|
}
|
|
inline int32_t ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC_gshared)(__this, method);
|
|
}
|
|
inline bool ConfiguredTaskAwaiter_get_IsCompleted_m6658F40E7404D6C45086F4151F673A3E831A0517 (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m6658F40E7404D6C45086F4151F673A3E831A0517_gshared)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_OnCompleted_mF6FD9054C0CAEC1D89DEFD0417C91D6103DAF562 (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_mF6FD9054C0CAEC1D89DEFD0417C91D6103DAF562_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_m771321F48189B5C1005DF8D2F004A9D6C9FEFE05 (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m771321F48189B5C1005DF8D2F004A9D6C9FEFE05_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline int32_t Task_1_get_ResultOnSuccess_m17F426484CA5CE14DB7E1495B6883B542D46BFA4_inline (Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*, const RuntimeMethod*))Task_1_get_ResultOnSuccess_m17F426484CA5CE14DB7E1495B6883B542D46BFA4_gshared_inline)(__this, method);
|
|
}
|
|
inline int32_t ConfiguredTaskAwaiter_GetResult_mF8CBBA5B63DB7FC72FA27688B4CBA3A556F128B0 (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_mF8CBBA5B63DB7FC72FA27688B4CBA3A556F128B0_gshared)(__this, method);
|
|
}
|
|
inline bool ConfiguredTaskAwaiter_get_IsCompleted_mD3ADBF1AB3796F39FAEF1A35ED17FB6C37DDC468 (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_mD3ADBF1AB3796F39FAEF1A35ED17FB6C37DDC468_gshared)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_OnCompleted_m6D17EA2A6E0A62EB2A7158425A71D71471FF0816 (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_m6D17EA2A6E0A62EB2A7158425A71D71471FF0816_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_m34F7D3F5D72E39E23835CFCAA6EA1157DDE51B0D (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m34F7D3F5D72E39E23835CFCAA6EA1157DDE51B0D_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline int64_t Task_1_get_ResultOnSuccess_m017840A0E0E0A7BD35D651A69351C4E0CE25F56F_inline (Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F*, const RuntimeMethod*))Task_1_get_ResultOnSuccess_m017840A0E0E0A7BD35D651A69351C4E0CE25F56F_gshared_inline)(__this, method);
|
|
}
|
|
inline int64_t ConfiguredTaskAwaiter_GetResult_m74960640D8A39D3212F1B6A9380A04BE034278F7 (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m74960640D8A39D3212F1B6A9380A04BE034278F7_gshared)(__this, method);
|
|
}
|
|
inline bool ConfiguredTaskAwaiter_get_IsCompleted_mD6243A7544181F96816A5F81459F4B66908ADB5E (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_mD6243A7544181F96816A5F81459F4B66908ADB5E_gshared)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_OnCompleted_m7829943710018CAC10D1B5F4890FA27BC8AD9CFC (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_m7829943710018CAC10D1B5F4890FA27BC8AD9CFC_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_m6A8431DA20DEFD849C4EAC7C7A50B556DD97FDBC (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m6A8431DA20DEFD849C4EAC7C7A50B556DD97FDBC_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline RuntimeObject* Task_1_get_ResultOnSuccess_m747DDF25AF20D348F75409600C9943ED5ED92BA0_inline (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Task_1_get_ResultOnSuccess_m747DDF25AF20D348F75409600C9943ED5ED92BA0_gshared_inline)(__this, method);
|
|
}
|
|
inline RuntimeObject* ConfiguredTaskAwaiter_GetResult_m00ABE5C46A983C38086438B7A7CB2C62296B3383 (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m00ABE5C46A983C38086438B7A7CB2C62296B3383_gshared)(__this, method);
|
|
}
|
|
inline bool ConfiguredTaskAwaiter_get_IsCompleted_m3258297C115BFA2F561ED50AF14721C1C6B6C8B8 (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m3258297C115BFA2F561ED50AF14721C1C6B6C8B8_gshared)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_OnCompleted_m99C79C357B2805E7814B01B2EAFC8D59A368BE9B (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_m99C79C357B2805E7814B01B2EAFC8D59A368BE9B_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_m8D143EF19A23A497822B0C06791724F97CBFEB74 (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m8D143EF19A23A497822B0C06791724F97CBFEB74_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A Task_1_get_ResultOnSuccess_m604CAB5861502951B55B242E5D417FB4AC185DA0_inline (Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A (*) (Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F*, const RuntimeMethod*))Task_1_get_ResultOnSuccess_m604CAB5861502951B55B242E5D417FB4AC185DA0_gshared_inline)(__this, method);
|
|
}
|
|
inline SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A ConfiguredTaskAwaiter_GetResult_m82AD3149723B89AA4D9718934779689FC95044F5 (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A (*) (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m82AD3149723B89AA4D9718934779689FC95044F5_gshared)(__this, method);
|
|
}
|
|
inline bool ConfiguredTaskAwaiter_get_IsCompleted_m39888D5D6655CC50DF6E925252A5232FD43CD4AB (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_m39888D5D6655CC50DF6E925252A5232FD43CD4AB_gshared)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_OnCompleted_mFF52588CEF8834BA9D6562D1DDBD7CB0FC238761 (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_mFF52588CEF8834BA9D6562D1DDBD7CB0FC238761_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_m49909F7C7467C68FF43DAB744ADF0417F622B869 (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m49909F7C7467C68FF43DAB744ADF0417F622B869_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC Task_1_get_ResultOnSuccess_mF2B4314A2FC0448358439C96FC6217501A2ACFE0_inline (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC (*) (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*, const RuntimeMethod*))Task_1_get_ResultOnSuccess_mF2B4314A2FC0448358439C96FC6217501A2ACFE0_gshared_inline)(__this, method);
|
|
}
|
|
inline VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC ConfiguredTaskAwaiter_GetResult_m916ADADCB83D00E93327439DF6E90E45D1919574 (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC (*) (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m916ADADCB83D00E93327439DF6E90E45D1919574_gshared)(__this, method);
|
|
}
|
|
inline bool ConfiguredTaskAwaiter_get_IsCompleted_mAEF99891A1B576254827D55C54C6E0E1787AA7EF (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A*, const RuntimeMethod*))ConfiguredTaskAwaiter_get_IsCompleted_mAEF99891A1B576254827D55C54C6E0E1787AA7EF_gshared)(__this, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_OnCompleted_m58DB8E06D138B417E71AFA489D1EB64ECED63284 (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_OnCompleted_m58DB8E06D138B417E71AFA489D1EB64ECED63284_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_UnsafeOnCompleted_m2EFFC8EFEDD85479876580D8FDEF045B2DCA2D66 (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredTaskAwaiter_UnsafeOnCompleted_m2EFFC8EFEDD85479876580D8FDEF045B2DCA2D66_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredTaskAwaiter_GetResult_m14D32632322F465B16F5EB858BFE5886B7217701 (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))ConfiguredTaskAwaiter_GetResult_m14D32632322F465B16F5EB858BFE5886B7217701_gshared)((ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A*)__this, il2cppRetVal, method);
|
|
}
|
|
inline void ConfiguredValueTaskAwaitable_1__ctor_m508597503A661BAE9FEB5315DC97BCD99E4BDCB7_inline (ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043* __this, ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043*, ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21, const RuntimeMethod*))ConfiguredValueTaskAwaitable_1__ctor_m508597503A661BAE9FEB5315DC97BCD99E4BDCB7_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
inline void ConfiguredValueTaskAwaiter__ctor_m1FA5EBCEDA701BBF0893ECF2665D06B4CA2D97B9_inline (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5*, ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21, const RuntimeMethod*))ConfiguredValueTaskAwaiter__ctor_m1FA5EBCEDA701BBF0893ECF2665D06B4CA2D97B9_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
inline ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5 ConfiguredValueTaskAwaitable_1_GetAwaiter_m94C14DDAC561363EFCF143293D1E2E5CE74522E3_inline (ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5 (*) (ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043*, const RuntimeMethod*))ConfiguredValueTaskAwaitable_1_GetAwaiter_m94C14DDAC561363EFCF143293D1E2E5CE74522E3_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredValueTaskAwaitable_1__ctor_mEAA2416875911A8D049C7F0FB4477D6AE4BC124B_inline (ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98* __this, ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98*, ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215, const RuntimeMethod*))ConfiguredValueTaskAwaitable_1__ctor_mEAA2416875911A8D049C7F0FB4477D6AE4BC124B_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
inline void ConfiguredValueTaskAwaiter__ctor_m2119C5D2703D1D7748F0D5DAB18AA40C883229CF_inline (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99*, ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215, const RuntimeMethod*))ConfiguredValueTaskAwaiter__ctor_m2119C5D2703D1D7748F0D5DAB18AA40C883229CF_gshared_inline)(__this, ___0_value, method);
|
|
}
|
|
inline ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99 ConfiguredValueTaskAwaitable_1_GetAwaiter_m7BECD774F029605B45F919BF7DEEC348B2B499B8_inline (ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99 (*) (ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98*, const RuntimeMethod*))ConfiguredValueTaskAwaitable_1_GetAwaiter_m7BECD774F029605B45F919BF7DEEC348B2B499B8_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredValueTaskAwaitable_1__ctor_m50F71CECBEA21581E8170F4CDFE15E0182FE41D0_inline (ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E* __this, ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E*, ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7, const RuntimeMethod*))ConfiguredValueTaskAwaitable_1__ctor_m50F71CECBEA21581E8170F4CDFE15E0182FE41D0_gshared_inline)((ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E*)__this, ___0_value, method);
|
|
}
|
|
inline void ConfiguredValueTaskAwaiter__ctor_m3DE02ADEF13DE18D55B4E303EBB2BA001A30DE09_inline (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*, ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7, const RuntimeMethod*))ConfiguredValueTaskAwaiter__ctor_m3DE02ADEF13DE18D55B4E303EBB2BA001A30DE09_gshared_inline)((ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*)__this, ___0_value, method);
|
|
}
|
|
inline void ConfiguredValueTaskAwaitable_1_GetAwaiter_m44A568FC09F949B84CD6F0F09E907A2A04E2EF46_inline (ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E* __this, ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E*, ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*, const RuntimeMethod*))ConfiguredValueTaskAwaitable_1_GetAwaiter_m44A568FC09F949B84CD6F0F09E907A2A04E2EF46_gshared_inline)((ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E*)__this, il2cppRetVal, method);
|
|
}
|
|
inline bool ValueTask_1_get_IsCompleted_m327391A8FC9F06A07DC95CBC77756BA963EC42A2_inline (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*, const RuntimeMethod*))ValueTask_1_get_IsCompleted_m327391A8FC9F06A07DC95CBC77756BA963EC42A2_gshared_inline)(__this, method);
|
|
}
|
|
inline bool ConfiguredValueTaskAwaiter_get_IsCompleted_mB0B5FC0CD4E3282961DCA3F5B5C24260680B7461_inline (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5*, const RuntimeMethod*))ConfiguredValueTaskAwaiter_get_IsCompleted_mB0B5FC0CD4E3282961DCA3F5B5C24260680B7461_gshared_inline)(__this, method);
|
|
}
|
|
inline int32_t ValueTask_1_get_Result_m272AA34FF8C511DECB3E35C6C0A1039F0723F960_inline (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*, const RuntimeMethod*))ValueTask_1_get_Result_m272AA34FF8C511DECB3E35C6C0A1039F0723F960_gshared_inline)(__this, method);
|
|
}
|
|
inline int32_t ConfiguredValueTaskAwaiter_GetResult_mB250A2B7423863EC0EF64C56F679FBA4FD674021_inline (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5*, const RuntimeMethod*))ConfiguredValueTaskAwaiter_GetResult_mB250A2B7423863EC0EF64C56F679FBA4FD674021_gshared_inline)(__this, method);
|
|
}
|
|
inline ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209 (Task_1_t4C228DE57804012969575431CFF12D57C875552D* __this, bool ___0_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A (*) (Task_1_t4C228DE57804012969575431CFF12D57C875552D*, bool, const RuntimeMethod*))Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209_gshared)(__this, ___0_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ValueTask_get_CompletedTask_m420F6BE3426808DE6345091B4A871BFABD0354DD (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4 (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* __this, bool ___0_continueOnCapturedContext, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline (ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_mB6A56C98F368A70EC9FC750C492A08F62DD7EEA5 (ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
inline void ConfiguredValueTaskAwaiter_OnCompleted_m54151496E9D086C12B909258785D21E0EFF93C0E (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredValueTaskAwaiter_OnCompleted_m54151496E9D086C12B909258785D21E0EFF93C0E_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m4D9FAB57031DB65424E4AACFB07EFF773CAC4618 (ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method) ;
|
|
inline void ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m234E75BAEA47B62ACD63096F80F18A285A0A1A45 (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m234E75BAEA47B62ACD63096F80F18A285A0A1A45_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline bool ValueTask_1_get_IsCompleted_mB5FE6398DBC9CBAECABB6AFC1B3F3A1F51D1479F_inline (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*, const RuntimeMethod*))ValueTask_1_get_IsCompleted_mB5FE6398DBC9CBAECABB6AFC1B3F3A1F51D1479F_gshared_inline)(__this, method);
|
|
}
|
|
inline bool ConfiguredValueTaskAwaiter_get_IsCompleted_mA7BC89851224972805007D736DB02E2B7D4700F2_inline (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99*, const RuntimeMethod*))ConfiguredValueTaskAwaiter_get_IsCompleted_mA7BC89851224972805007D736DB02E2B7D4700F2_gshared_inline)(__this, method);
|
|
}
|
|
inline RuntimeObject* ValueTask_1_get_Result_m3035DEA69E68AD985EDB5285416C94558C72B23D_inline (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*, const RuntimeMethod*))ValueTask_1_get_Result_m3035DEA69E68AD985EDB5285416C94558C72B23D_gshared_inline)(__this, method);
|
|
}
|
|
inline RuntimeObject* ConfiguredValueTaskAwaiter_GetResult_mBB2D627DF9F38F1113F367FF1ACE907F0A82D494_inline (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99*, const RuntimeMethod*))ConfiguredValueTaskAwaiter_GetResult_mBB2D627DF9F38F1113F367FF1ACE907F0A82D494_gshared_inline)(__this, method);
|
|
}
|
|
inline ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8 Task_1_ConfigureAwait_m9D6420C859925B7C250DED7586DD770C91632070 (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, bool ___0_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
return (( ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8 (*) (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, bool, const RuntimeMethod*))Task_1_ConfigureAwait_m9D6420C859925B7C250DED7586DD770C91632070_gshared)(__this, ___0_continueOnCapturedContext, method);
|
|
}
|
|
inline void ConfiguredValueTaskAwaiter_OnCompleted_m3589A6D670BE42D9B0A8A68433BE33C450103F38 (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredValueTaskAwaiter_OnCompleted_m3589A6D670BE42D9B0A8A68433BE33C450103F38_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m8412DD1E4BA01EE0FA199061CB05AFF9E1D061E9 (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m8412DD1E4BA01EE0FA199061CB05AFF9E1D061E9_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline bool ConfiguredValueTaskAwaiter_get_IsCompleted_m900B802370ACB3E11F808026A4BEE1183E91507A_inline (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*, const RuntimeMethod*))ConfiguredValueTaskAwaiter_get_IsCompleted_m900B802370ACB3E11F808026A4BEE1183E91507A_gshared_inline)(__this, method);
|
|
}
|
|
inline void ConfiguredValueTaskAwaiter_GetResult_mCF267B69492EBE1F642327D1A858EF350DEBC19E_inline (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))ConfiguredValueTaskAwaiter_GetResult_mCF267B69492EBE1F642327D1A858EF350DEBC19E_gshared_inline)((ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*)__this, il2cppRetVal, method);
|
|
}
|
|
inline void ConfiguredValueTaskAwaiter_OnCompleted_mEEFFB5D64C428B1FFCBC4AE5742DD594C2887DB3 (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredValueTaskAwaiter_OnCompleted_mEEFFB5D64C428B1FFCBC4AE5742DD594C2887DB3_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
inline void ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m562052388D99EC0C34D5412AE114E2DF90358BFA (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m562052388D99EC0C34D5412AE114E2DF90358BFA_gshared)(__this, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TypeTraits_IsContainer_m46D04F3E3219371CC5F133E2CC54BCA46FD72505 (Type_t* ___0_type, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8 (String_t* ___0_format, RuntimeObject* ___1_arg0, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162 (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
inline bool Dictionary_2_TryGetValue_m522F6200C80B048140765E8FDDC35163B8C5B983 (Dictionary_2_t4DFECF621C500453991651A5A026D9FCC484C340* __this, String_t* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t4DFECF621C500453991651A5A026D9FCC484C340*, String_t*, RuntimeObject**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void List_1__ctor_m57D8371DCB7C28F480CAF18E51D1B04EA3A3DB91 (List_1_tE031E2B1B3599B1B808F7E565E285D0265829963* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tE031E2B1B3599B1B808F7E565E285D0265829963*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m449C17EEFEEA3A55E5EF321DD63ABD514BB3AE6D (Dictionary_2_t4DFECF621C500453991651A5A026D9FCC484C340* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t4DFECF621C500453991651A5A026D9FCC484C340*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void PropertyBag_1__ctor_mB8004D0AD96FE582C9E03BD628D5C1BCBAAED691 (PropertyBag_1_tD413081183D831D5FD1DB047C6388E9EA8522318* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PropertyBag_1_tD413081183D831D5FD1DB047C6388E9EA8522318*, const RuntimeMethod*))PropertyBag_1__ctor_mB8004D0AD96FE582C9E03BD628D5C1BCBAAED691_gshared)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_mEA00F2AB0AEFDC61A917C116709E02251542BC7E (Dictionary_2_tBCB806C16A2ADAA77600E3249746F7B6CB638FB1* __this, String_t* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tBCB806C16A2ADAA77600E3249746F7B6CB638FB1*, String_t*, RuntimeObject**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void List_1__ctor_m61582885FE798C86CB9D58B0F55CE26D5AFBF049 (List_1_tB0305892E26D0C482A75FD711E7CF6277D867EAA* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tB0305892E26D0C482A75FD711E7CF6277D867EAA*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m8899907CC9958E266E7973BF9C4BDBFF0A8C6963 (Dictionary_2_tBCB806C16A2ADAA77600E3249746F7B6CB638FB1* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tBCB806C16A2ADAA77600E3249746F7B6CB638FB1*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void PropertyBag_1__ctor_mED3A84C21BDE201E5AD050889E215EF25E6BB4DE (PropertyBag_1_tFA4D14E31A2A501D102D88481DCBC9501A6EF390* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PropertyBag_1_tFA4D14E31A2A501D102D88481DCBC9501A6EF390*, const RuntimeMethod*))PropertyBag_1__ctor_mED3A84C21BDE201E5AD050889E215EF25E6BB4DE_gshared)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_mEAEA64971DBFD9BF2B74962BE03DADB2A6E46990 (Dictionary_2_tF0CBEE260E4459BD7FBD88642D10D13072A1733B* __this, String_t* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tF0CBEE260E4459BD7FBD88642D10D13072A1733B*, String_t*, RuntimeObject**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void List_1__ctor_mDBE66BC49CFDC5057EAFD460E79D974E38E7E331 (List_1_t514193F05FE01729A5ADF1CBD11F2A3282FEA464* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t514193F05FE01729A5ADF1CBD11F2A3282FEA464*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m60FF7F62FD19585DA0F4A01C46F9542AB59AF25E (Dictionary_2_tF0CBEE260E4459BD7FBD88642D10D13072A1733B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tF0CBEE260E4459BD7FBD88642D10D13072A1733B*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void PropertyBag_1__ctor_mE5031AC7F881DD8EC6FCCD8BFA1B2B36A7C5E6DE (PropertyBag_1_t0967321B2D6F146150A7805676EB01A1FD0E97B6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PropertyBag_1_t0967321B2D6F146150A7805676EB01A1FD0E97B6*, const RuntimeMethod*))PropertyBag_1__ctor_mE5031AC7F881DD8EC6FCCD8BFA1B2B36A7C5E6DE_gshared)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_mDFB16269445CB4F3A94F898E69BBDEB6FD95BD17 (Dictionary_2_tD654CA36EB61C368D46FEE82344A2850BBD293DC* __this, String_t* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tD654CA36EB61C368D46FEE82344A2850BBD293DC*, String_t*, RuntimeObject**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void List_1__ctor_mCE306BD23E19D2FF7F020FC38DC65439DF124DE2 (List_1_t395DB400634B381F180F661D6F23047177C54A41* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t395DB400634B381F180F661D6F23047177C54A41*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m6CD99A454EA949E383DDF4EE0DDB5C785ACEE53F (Dictionary_2_tD654CA36EB61C368D46FEE82344A2850BBD293DC* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tD654CA36EB61C368D46FEE82344A2850BBD293DC*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void PropertyBag_1__ctor_m608955616512B610EA4B2C927CAA4171BB5A33A2 (PropertyBag_1_tE522EC0E4E4C916EBF192933D686DEFDD27B9474* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PropertyBag_1_tE522EC0E4E4C916EBF192933D686DEFDD27B9474*, const RuntimeMethod*))PropertyBag_1__ctor_m608955616512B610EA4B2C927CAA4171BB5A33A2_gshared)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_mF94B5FC48E46CA428793D23B166648548F877592 (Dictionary_2_t493CD60A61DC7E34769F611A3B574105A00F7C8E* __this, String_t* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t493CD60A61DC7E34769F611A3B574105A00F7C8E*, String_t*, RuntimeObject**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void List_1__ctor_m0AC71C49E8DA47E34C175D32A2094779A7C22F81 (List_1_tF5A67096A0D68151D8E28B9AC51E2BEBA8BA6488* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF5A67096A0D68151D8E28B9AC51E2BEBA8BA6488*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_mB5F3C4E9EAC8145CDE8309911AF73572066BEC6F (Dictionary_2_t493CD60A61DC7E34769F611A3B574105A00F7C8E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t493CD60A61DC7E34769F611A3B574105A00F7C8E*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void PropertyBag_1__ctor_m4C94BDC6615CF3024236DCDC4B90837C6FC6714B (PropertyBag_1_t2F1387D95A1E9B93E66C397645BFB8BCD265219B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PropertyBag_1_t2F1387D95A1E9B93E66C397645BFB8BCD265219B*, const RuntimeMethod*))PropertyBag_1__ctor_m4C94BDC6615CF3024236DCDC4B90837C6FC6714B_gshared)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_m3D3388DDE5287E71E1CE3601EF2DB32756F5A222 (Dictionary_2_tB38AB04EAE4BF1A8AB4F3EB5C6D61C0BA1C63485* __this, String_t* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tB38AB04EAE4BF1A8AB4F3EB5C6D61C0BA1C63485*, String_t*, RuntimeObject**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void List_1__ctor_m33B09E2B0D5F361C8213E5FB0D121A19AD7B5DE4 (List_1_t02FDA4992BFC534B37236850E63707788E0AE2AE* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t02FDA4992BFC534B37236850E63707788E0AE2AE*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m530B9014AC61228DD2B5B29A6A29125C8216499A (Dictionary_2_tB38AB04EAE4BF1A8AB4F3EB5C6D61C0BA1C63485* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tB38AB04EAE4BF1A8AB4F3EB5C6D61C0BA1C63485*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void PropertyBag_1__ctor_m3F999AFEEFD9FD5AE95D3BC287DEB25DC4AAF592 (PropertyBag_1_tC24A0A7B21F69286D618A79A4F7CD6F8E9E64E46* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PropertyBag_1_tC24A0A7B21F69286D618A79A4F7CD6F8E9E64E46*, const RuntimeMethod*))PropertyBag_1__ctor_m3F999AFEEFD9FD5AE95D3BC287DEB25DC4AAF592_gshared)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_m36BF608F84557D9EB3E37C5BA9E8ABC3A453F221 (Dictionary_2_tE037C9F1FF6B6E97DF0AE5A0BE4042375C5D9D8C* __this, String_t* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tE037C9F1FF6B6E97DF0AE5A0BE4042375C5D9D8C*, String_t*, RuntimeObject**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void List_1__ctor_m511AAB7A5556C9351081708B257D32B8DF56C813 (List_1_t5D909E7F131356377BE392FFE312172FA301EB67* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t5D909E7F131356377BE392FFE312172FA301EB67*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m1D4C6D51942DFF650A5B73371C3595CBEF1EA2F8 (Dictionary_2_tE037C9F1FF6B6E97DF0AE5A0BE4042375C5D9D8C* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tE037C9F1FF6B6E97DF0AE5A0BE4042375C5D9D8C*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void PropertyBag_1__ctor_m072C76EB04E5541CBEE68850C9E6156B54A106CC (PropertyBag_1_t1E23861777A25A773264A698434477DCE18B34CF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PropertyBag_1_t1E23861777A25A773264A698434477DCE18B34CF*, const RuntimeMethod*))PropertyBag_1__ctor_m072C76EB04E5541CBEE68850C9E6156B54A106CC_gshared)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_m509508824AF3839BCD463D58FA0377C96458FD06 (Dictionary_2_t4A4C489FCB5A50BCD97D454B320936FFB26B6259* __this, String_t* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t4A4C489FCB5A50BCD97D454B320936FFB26B6259*, String_t*, RuntimeObject**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void List_1__ctor_m0E6487BF4CA4AC6A65BC5D3613BD0ADE34B733B5 (List_1_tF7ED81D8CAE526E27D4579AA1E0D00A211BAE4FE* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tF7ED81D8CAE526E27D4579AA1E0D00A211BAE4FE*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m0DE9983A579D8D986E0284E05C8A97D89BCEC41B (Dictionary_2_t4A4C489FCB5A50BCD97D454B320936FFB26B6259* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t4A4C489FCB5A50BCD97D454B320936FFB26B6259*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void PropertyBag_1__ctor_mAA213442673F9B9A5948AD7385D832A08475D93B (PropertyBag_1_tA16FBB091D74A21AC539D829F65E5E8FAF2DB075* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PropertyBag_1_tA16FBB091D74A21AC539D829F65E5E8FAF2DB075*, const RuntimeMethod*))PropertyBag_1__ctor_mAA213442673F9B9A5948AD7385D832A08475D93B_gshared)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_m35330545804127349712DBF97F7E1B07E4500480 (Dictionary_2_tAFF77A63BAC70A823CF7D433372A35F9A9FA53F9* __this, String_t* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tAFF77A63BAC70A823CF7D433372A35F9A9FA53F9*, String_t*, RuntimeObject**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void List_1__ctor_m252A7F64A1966550F6BD7E5A4DB8FA94339CC7DA (List_1_t097837D1E5E15D037E5CC2958A380C5BB39F6B54* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t097837D1E5E15D037E5CC2958A380C5BB39F6B54*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m0C79D717773CD8AE25D6628CC683D56FFA1E9606 (Dictionary_2_tAFF77A63BAC70A823CF7D433372A35F9A9FA53F9* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tAFF77A63BAC70A823CF7D433372A35F9A9FA53F9*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void PropertyBag_1__ctor_mF2FC0A3F27C3D8D1F403D7433F4782CB01E4E6D4 (PropertyBag_1_t91378217184AE0BD640D9A003EF2CB208071D593* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PropertyBag_1_t91378217184AE0BD640D9A003EF2CB208071D593*, const RuntimeMethod*))PropertyBag_1__ctor_mF2FC0A3F27C3D8D1F403D7433F4782CB01E4E6D4_gshared)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_m20B8BF4BA904E10FB4272A01F7437412C13D4E46 (Dictionary_2_tF48CBAD539B087D7950015E9ACC37504C4F7F095* __this, String_t* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_tF48CBAD539B087D7950015E9ACC37504C4F7F095*, String_t*, RuntimeObject**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void List_1__ctor_mD109B5C7939A6327470D2893F6B8E788CFE99D32 (List_1_t061B25A9A84AEF321FDDB1F001818B7F63981724* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t061B25A9A84AEF321FDDB1F001818B7F63981724*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_mBF44F0A2F72B1C865BFE2E037BFCB7C1B10EFE99 (Dictionary_2_tF48CBAD539B087D7950015E9ACC37504C4F7F095* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_tF48CBAD539B087D7950015E9ACC37504C4F7F095*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void PropertyBag_1__ctor_mD0545EB6A8F30FF94E8C8CE7AD6A4F0DF32CBE7C (PropertyBag_1_tDA117C10FEABA385803A90E976050FB2D270FAD2* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PropertyBag_1_tDA117C10FEABA385803A90E976050FB2D270FAD2*, const RuntimeMethod*))PropertyBag_1__ctor_mD0545EB6A8F30FF94E8C8CE7AD6A4F0DF32CBE7C_gshared)(__this, method);
|
|
}
|
|
inline bool Dictionary_2_TryGetValue_mCB142B637C6BA4EC38158CCAB573111F0F926FAF (Dictionary_2_t4C7611B1B9A7003542D940F8505DCFF0186D9648* __this, String_t* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Dictionary_2_t4C7611B1B9A7003542D940F8505DCFF0186D9648*, String_t*, RuntimeObject**, const RuntimeMethod*))Dictionary_2_TryGetValue_mD15380A4ED7CDEE99EA45881577D26BA9CE1B849_gshared)(__this, ___0_key, ___1_value, method);
|
|
}
|
|
inline void List_1__ctor_mCF0315031D745EBA7C0CDEFDC3A6BC278B13D44B (List_1_t9F62F67493B4FDE523DD405881E159817B80CAC2* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t9F62F67493B4FDE523DD405881E159817B80CAC2*, const RuntimeMethod*))List_1__ctor_m7F078BB342729BDF11327FD89D7872265328F690_gshared)(__this, method);
|
|
}
|
|
inline void Dictionary_2__ctor_m126690CDD3B2B23C96B1A67847ED1940DD64A010 (Dictionary_2_t4C7611B1B9A7003542D940F8505DCFF0186D9648* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t4C7611B1B9A7003542D940F8505DCFF0186D9648*, const RuntimeMethod*))Dictionary_2__ctor_m5B32FBC624618211EB461D59CFBB10E987FD1329_gshared)(__this, method);
|
|
}
|
|
inline void PropertyBag_1__ctor_mB6FF3A98CDA8C851BC0FC108F95BF41644471439 (PropertyBag_1_tD11940BE9DAD74F61B141A397F3D5722E7FF2601* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (PropertyBag_1_tD11940BE9DAD74F61B141A397F3D5722E7FF2601*, const RuntimeMethod*))PropertyBag_1__ctor_mB6FF3A98CDA8C851BC0FC108F95BF41644471439_gshared)(__this, method);
|
|
}
|
|
inline void ContentHeightCacheInfo__ctor_mF2BB6598B1FEDCE079C61DBE32A2CCA1000648F2 (ContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC* __this, float ___0_sum, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC*, float, int32_t, const RuntimeMethod*))ContentHeightCacheInfo__ctor_mF2BB6598B1FEDCE079C61DBE32A2CCA1000648F2_gshared)(__this, ___0_sum, ___1_count, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C (int32_t ___0_creationOptions, const RuntimeMethod* method) ;
|
|
inline void Task_1__ctor_m4EA33CE4D77D99270E40B283265634B631FE2D82 (Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*, Delegate_t*, RuntimeObject*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, int32_t, int32_t, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*, const RuntimeMethod*))Task_1__ctor_m4EA33CE4D77D99270E40B283265634B631FE2D82_gshared)(__this, ___0_valueSelector, ___1_state, ___2_parent, ___3_cancellationToken, ___4_creationOptions, ___5_internalOptions, ___6_scheduler, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* __this, const RuntimeMethod* method) ;
|
|
inline Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 Func_2_Invoke_m0EF04754D1F37AD0EA83DD573E016B6F59E58E39_inline (Func_2_t53C16EDB9A3E0F3470F3AFDC2589E59CC5AF63D5* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 (*) (Func_2_t53C16EDB9A3E0F3470F3AFDC2589E59CC5AF63D5*, Task_1_t4C228DE57804012969575431CFF12D57C875552D*, const RuntimeMethod*))Func_2_Invoke_m3C19BD2EA00E1EF46CABE820518716B3F3F10A3C_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 Func_3_Invoke_mD7C77190AB6BFA9C12A606A23776E53DCD0A87EB_inline (Func_3_t741E34C10F6FE17B3BA3853E4763638628690208* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 (*) (Func_3_t741E34C10F6FE17B3BA3853E4763638628690208*, Task_1_t4C228DE57804012969575431CFF12D57C875552D*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_mC8E3181B95E1536F05606B557AC4CD80AA7CD658_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Task_1__ctor_m91C2EA31AA8F95E641D6F2CD69E69F40EE195620 (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, Delegate_t*, RuntimeObject*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, int32_t, int32_t, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*, const RuntimeMethod*))Task_1__ctor_m91C2EA31AA8F95E641D6F2CD69E69F40EE195620_gshared)(__this, ___0_valueSelector, ___1_state, ___2_parent, ___3_cancellationToken, ___4_creationOptions, ___5_internalOptions, ___6_scheduler, method);
|
|
}
|
|
inline RuntimeObject* Func_2_Invoke_mDF4D003FD6659916C80E93EC84573FF9114D3F88_inline (Func_2_tCAA612459A254A772A62B258A3DEF8F628BFFA14* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Func_2_tCAA612459A254A772A62B258A3DEF8F628BFFA14*, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*, const RuntimeMethod*))Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline RuntimeObject* Func_3_Invoke_m9A18F216198A9686AD2C88A55F1CDCF13843AF26_inline (Func_3_tF1E460056412D39AFBCC5042F0EA0552F8B64345* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Func_3_tF1E460056412D39AFBCC5042F0EA0552F8B64345*, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_m31D9E56C7CAE538FD8564F34CABA2C2A537ED393_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 Func_2_Invoke_mC310726FC26460E0A1DD3E5102309EE28245F1B7_inline (Func_2_tD4DDFE1683E01166E2F8934282DC94BBDCD37DED* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 (*) (Func_2_tD4DDFE1683E01166E2F8934282DC94BBDCD37DED*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Func_2_Invoke_m3C19BD2EA00E1EF46CABE820518716B3F3F10A3C_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 Func_3_Invoke_mBEBEF72C6C7D7F2EBD475E072E450D2FACBE8A88_inline (Func_3_t3C035C4481D7553088B1824393D0A937F0B017AB* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 (*) (Func_3_t3C035C4481D7553088B1824393D0A937F0B017AB*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_mC8E3181B95E1536F05606B557AC4CD80AA7CD658_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Task_1__ctor_m6027E209041DB4AF1EFA8C4E8CA5FF48E1860AB4 (Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D*, Delegate_t*, RuntimeObject*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, int32_t, int32_t, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*, const RuntimeMethod*))Task_1__ctor_m6027E209041DB4AF1EFA8C4E8CA5FF48E1860AB4_gshared)(__this, ___0_valueSelector, ___1_state, ___2_parent, ___3_cancellationToken, ___4_creationOptions, ___5_internalOptions, ___6_scheduler, method);
|
|
}
|
|
inline ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 Func_2_Invoke_mA769C11B612C91B80CEB20ECBA4DEDA8C4B7DCE0_inline (Func_2_t710C9443E65A47F34F20273E119C67F86A4F6618* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 (*) (Func_2_t710C9443E65A47F34F20273E119C67F86A4F6618*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Func_2_Invoke_m92CDD270B86A28FBB2E8F17B1FFE06CC1AB6C8E9_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 Func_3_Invoke_m946F1D94787430669A8051B17ABD0BA49E5CED0A_inline (Func_3_t67613617ED6D0678EC039E4D97DC38B8049B72E4* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 (*) (Func_3_t67613617ED6D0678EC039E4D97DC38B8049B72E4*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_mCAF04CA9F03F9847EE6CBEDA4FF301AA4C9B1E7D_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Task_1__ctor_mA627F1796D0CC5F094107EE5561F7CAD50115378 (Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*, Delegate_t*, RuntimeObject*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, int32_t, int32_t, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*, const RuntimeMethod*))Task_1__ctor_mA627F1796D0CC5F094107EE5561F7CAD50115378_gshared)(__this, ___0_valueSelector, ___1_state, ___2_parent, ___3_cancellationToken, ___4_creationOptions, ___5_internalOptions, ___6_scheduler, method);
|
|
}
|
|
inline ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F Func_2_Invoke_mB1405D1F40473D3BCA7EBB04C4F6ED03E6E4C94D_inline (Func_2_tF3F851D4A7EE63295D4A27756EE77F24346954BA* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F (*) (Func_2_tF3F851D4A7EE63295D4A27756EE77F24346954BA*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Func_2_Invoke_mE8DAAA4DEDB6E0CCDE2535CFE3B9528CF200514B_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F Func_3_Invoke_m73D63ABC4B0BEB920F269E09618E58742F83C8B2_inline (Func_3_tCB81839DD3418F2A0788EB43DA278B7D6693BEA7* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F (*) (Func_3_tCB81839DD3418F2A0788EB43DA278B7D6693BEA7*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_m281A6C1FA3BA480C3DC1A60A9F25C3EFE5D52FD8_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Task_1__ctor_mF07DC249811270AA9A25EA15DC2DB5E73996F8E4 (Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*, Delegate_t*, RuntimeObject*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, int32_t, int32_t, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*, const RuntimeMethod*))Task_1__ctor_mF07DC249811270AA9A25EA15DC2DB5E73996F8E4_gshared)(__this, ___0_valueSelector, ___1_state, ___2_parent, ___3_cancellationToken, ___4_creationOptions, ___5_internalOptions, ___6_scheduler, method);
|
|
}
|
|
inline ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 Func_2_Invoke_mB1BC66FC59FB922A0F0256530681D400DE9F09DA_inline (Func_2_t9217EFFDF0F926C559DEA0624F254D87134FC073* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 (*) (Func_2_t9217EFFDF0F926C559DEA0624F254D87134FC073*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Func_2_Invoke_m68B7901C1FA0392923FB23D69FBEBBEF8AED14C8_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 Func_3_Invoke_mD2F735593002C1F9AD9F30836379F9F37AF6B862_inline (Func_3_tC0A2388D48F4EB5BDED4835CBEA96A87B3D62D71* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 (*) (Func_3_tC0A2388D48F4EB5BDED4835CBEA96A87B3D62D71*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_mF3F0C2FB4B606EE6E644DA314D53EBBB9AA9B6FD_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Task_1__ctor_mEBA33EAA50213858C739AEE13CB028F6563A585A (Task_1_t824317F4B958F7512E8F7300511752937A6C6043* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_t824317F4B958F7512E8F7300511752937A6C6043*, Delegate_t*, RuntimeObject*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, int32_t, int32_t, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*, const RuntimeMethod*))Task_1__ctor_mEBA33EAA50213858C739AEE13CB028F6563A585A_gshared)(__this, ___0_valueSelector, ___1_state, ___2_parent, ___3_cancellationToken, ___4_creationOptions, ___5_internalOptions, ___6_scheduler, method);
|
|
}
|
|
inline bool Func_2_Invoke_mF4D6E81932BC2F6FAE1777A07870466BF51519FA_inline (Func_2_tC4EF69AA76D73F932F643A1A2F61B8E102C1E756* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Func_2_tC4EF69AA76D73F932F643A1A2F61B8E102C1E756*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Func_2_Invoke_m2014423FB900F135C8FF994125604FF9E6AAE829_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline bool Func_3_Invoke_mAFD212C8BF2E79A8D9EFB92FA437978D10BA69CA_inline (Func_3_tB0721508F3796CC22DD7A5D2D9D9697DC1E974D0* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Func_3_tB0721508F3796CC22DD7A5D2D9D9697DC1E974D0*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_mC786FD8356E25F147BEF4CF07A587720613A2C12_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Task_1__ctor_m0BAB0D8F99D9B20D3AAA80352297D4E3D1A17287 (Task_1_t4C228DE57804012969575431CFF12D57C875552D* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_t4C228DE57804012969575431CFF12D57C875552D*, Delegate_t*, RuntimeObject*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, int32_t, int32_t, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*, const RuntimeMethod*))Task_1__ctor_m0BAB0D8F99D9B20D3AAA80352297D4E3D1A17287_gshared)(__this, ___0_valueSelector, ___1_state, ___2_parent, ___3_cancellationToken, ___4_creationOptions, ___5_internalOptions, ___6_scheduler, method);
|
|
}
|
|
inline int32_t Func_2_Invoke_mF9F470D68052113F127AD6AD8747CA732838D1E4_inline (Func_2_t4A7100D6CA55E0D5E840D600DD4C004E374EA0C4* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Func_2_t4A7100D6CA55E0D5E840D600DD4C004E374EA0C4*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Func_2_Invoke_m5216F6C7BCECCCED81384876C2968E0D4358618B_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline int32_t Func_3_Invoke_m6F05546FEABBA1BA8135AE536796E06B3C88A797_inline (Func_3_t7318E37306A270D9D4368630319FB5EAE41EE343* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Func_3_t7318E37306A270D9D4368630319FB5EAE41EE343*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_mFC6011BA71ECF66C0443D4075110D6020AA7FA1C_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Task_1__ctor_m4FD9E652E6AD25DE324F1D25484F2791ED1396D5 (Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*, Delegate_t*, RuntimeObject*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, int32_t, int32_t, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*, const RuntimeMethod*))Task_1__ctor_m4FD9E652E6AD25DE324F1D25484F2791ED1396D5_gshared)(__this, ___0_valueSelector, ___1_state, ___2_parent, ___3_cancellationToken, ___4_creationOptions, ___5_internalOptions, ___6_scheduler, method);
|
|
}
|
|
inline int32_t Func_2_Invoke_m0BA4EB7177382E2E3D6170F97635C3260FA14313_inline (Func_2_tF55433C2E934D2C7FCCC31245AE7E2731A7C04DA* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Func_2_tF55433C2E934D2C7FCCC31245AE7E2731A7C04DA*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Func_2_Invoke_m1FDB82A936AD6A68F455DE792FD9454CE1A4FC9F_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline int32_t Func_3_Invoke_m2066573F1AEBEA7DDD98F13C01A7B7E9B2DCFDED_inline (Func_3_t4944E5E5F13CAC7D326C07B48FC1CB2E02818679* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Func_3_t4944E5E5F13CAC7D326C07B48FC1CB2E02818679*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_mDA55CA9B886C979A98CFB2F97AABAFCCEB781712_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Task_1__ctor_m7038457A44B6D3E9B5205B8FFC6AB4F469B476E9 (Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F*, Delegate_t*, RuntimeObject*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, int32_t, int32_t, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*, const RuntimeMethod*))Task_1__ctor_m7038457A44B6D3E9B5205B8FFC6AB4F469B476E9_gshared)(__this, ___0_valueSelector, ___1_state, ___2_parent, ___3_cancellationToken, ___4_creationOptions, ___5_internalOptions, ___6_scheduler, method);
|
|
}
|
|
inline int64_t Func_2_Invoke_m119EA919E4FDAE96EC0AC475685A7DE38A1218A3_inline (Func_2_t14F0C1442EA414868F293290E263005881E270CD* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (Func_2_t14F0C1442EA414868F293290E263005881E270CD*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Func_2_Invoke_m58656B8EA1C7E4D386AC93694C482693052DF452_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline int64_t Func_3_Invoke_mE3B76087ED5100E50F342BC476E508D80F675B69_inline (Func_3_t6BFD0508E30AF0D3CFA47658967899EDB15F686B* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (Func_3_t6BFD0508E30AF0D3CFA47658967899EDB15F686B*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_mD37FF894994ED3E7C8EC9E0FBCEB2C0449AA657A_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline RuntimeObject* Func_2_Invoke_m15FA1AB01B7C5A645157A76BD36837CC17F71461_inline (Func_2_t374ECF90050F953CFA1EB9E9CE02A9C76AC292B2* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Func_2_t374ECF90050F953CFA1EB9E9CE02A9C76AC292B2*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline RuntimeObject* Func_3_Invoke_m9F34FCA27280E6F6D10A501025E298C685BB4200_inline (Func_3_t0E081CDB7B5E8262004CBC882A738B3951375D06* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Func_3_t0E081CDB7B5E8262004CBC882A738B3951375D06*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_m31D9E56C7CAE538FD8564F34CABA2C2A537ED393_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Task_1__ctor_m5CFF1880591CBC0CB4FB6791AD761CF233512B78 (Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F*, Delegate_t*, RuntimeObject*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, int32_t, int32_t, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*, const RuntimeMethod*))Task_1__ctor_m5CFF1880591CBC0CB4FB6791AD761CF233512B78_gshared)(__this, ___0_valueSelector, ___1_state, ___2_parent, ___3_cancellationToken, ___4_creationOptions, ___5_internalOptions, ___6_scheduler, method);
|
|
}
|
|
inline SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A Func_2_Invoke_m7982523179341751777995833964B1DC094896CB_inline (Func_2_t1AD23BAD40F98053E72168B8ECBE30D235D80AA7* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A (*) (Func_2_t1AD23BAD40F98053E72168B8ECBE30D235D80AA7*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Func_2_Invoke_mD3E35946E0C221C1B5833C50E1A94CCFDEA62CAC_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A Func_3_Invoke_m859DB37968A0CDDCDD9FDEEAF56BF9A3563449C5_inline (Func_3_tD95F3399CA13499EB2DAC0BFE6F4632D70E79620* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A (*) (Func_3_tD95F3399CA13499EB2DAC0BFE6F4632D70E79620*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_m987D3FA089D0FA94AA36C8325937B3FFFE5576F7_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Task_1__ctor_m8D5C7467696747206A78F279D69BF1A8A1EA1BD8 (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* __this, Delegate_t* ___0_valueSelector, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*, Delegate_t*, RuntimeObject*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, int32_t, int32_t, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*, const RuntimeMethod*))Task_1__ctor_m8D5C7467696747206A78F279D69BF1A8A1EA1BD8_gshared)(__this, ___0_valueSelector, ___1_state, ___2_parent, ___3_cancellationToken, ___4_creationOptions, ___5_internalOptions, ___6_scheduler, method);
|
|
}
|
|
inline VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC Func_2_Invoke_m995C346676D556F0214ADC09A7D85B65843A0603_inline (Func_2_t79586ED298818483600EFEA82001DCE9C509204B* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC (*) (Func_2_t79586ED298818483600EFEA82001DCE9C509204B*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Func_2_Invoke_mEBF7808CA295B981EAE4B058D26404E3F3D63235_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC Func_3_Invoke_mC3A71B687F078A0C67FE4CDD47D99250208DC4DF_inline (Func_3_t22D2883D2955083AC7B0ACF58C1BFCF6C149341D* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC (*) (Func_3_t22D2883D2955083AC7B0ACF58C1BFCF6C149341D*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_mBAE7E5DB9E0DDF359BAD7AD6BB719BF7751A1A74_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline RuntimeObject* Func_2_Invoke_mC6F99B45D651B6D87983D4476DBDDCD2F5B01FDC_inline (Func_2_t771FE8EE731C9D8BA2456DA5169FA459ED5D38D3* __this, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Func_2_t771FE8EE731C9D8BA2456DA5169FA459ED5D38D3*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, const RuntimeMethod*))Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline)(__this, ___0_arg, method);
|
|
}
|
|
inline RuntimeObject* Func_3_Invoke_mAC123F7F500646692FA0BAFAC59729A0C3058820_inline (Func_3_tF6961E555C9FB4ED507E9C2DBFF6165C17476260* __this, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
return (( RuntimeObject* (*) (Func_3_tF6961E555C9FB4ED507E9C2DBFF6165C17476260*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, RuntimeObject*, const RuntimeMethod*))Func_3_Invoke_m31D9E56C7CAE538FD8564F34CABA2C2A537ED393_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Task__ctor_m5B0CC976AA85C96DBBDBFCE32829D1A2DC66941D (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* __this, Delegate_t* ___0_action, RuntimeObject* ___1_state, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___2_parent, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED ___3_cancellationToken, int32_t ___4_creationOptions, int32_t ___5_internalOptions, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E* ___6_scheduler, const RuntimeMethod* method) ;
|
|
inline void Action_1_Invoke_m712357D4D07C4936EACDE8DCEF8D1DB9E80800AF_inline (Action_1_tE7E60800BAB8D8D90AE806130B19787F3CD867DC* __this, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_tE7E60800BAB8D8D90AE806130B19787F3CD867DC*, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void Action_2_Invoke_mFCB257D834D427F72703896580AC92E727ACF512_inline (Action_2_t12B97C2411B381417D267317B83796945763B77F* __this, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t12B97C2411B381417D267317B83796945763B77F*, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*, RuntimeObject*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Action_1_Invoke_m0C5A865E0D664E4E2FAB1498B4103EA11F63FE15_inline (Action_1_tCC3B5679C4B7925785C6055A266DE1D9E1220607* __this, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_tCC3B5679C4B7925785C6055A266DE1D9E1220607*, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void Action_2_Invoke_m33BB24AD90037EE07C4FE528898BD9C308CB7A2A_inline (Action_2_tB323E678D9134E8D74D87649A85A082FF718934E* __this, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_tB323E678D9134E8D74D87649A85A082FF718934E*, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D*, RuntimeObject*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Action_1_Invoke_mAAA17B09BEC7461D75C6E7B5955972F7579E8381_inline (Action_1_t55BF2E340CAEB91E47B90E3EFF59120EDBDCC98D* __this, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t55BF2E340CAEB91E47B90E3EFF59120EDBDCC98D*, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void Action_2_Invoke_m6769F46067EB59472DC4EE100895A7C63016AAA7_inline (Action_2_t58329FB9FD988D2BA8B903095C0571509D45FDBF* __this, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t58329FB9FD988D2BA8B903095C0571509D45FDBF*, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*, RuntimeObject*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Action_1_Invoke_mC262011A01D46253CEDCF9E3A167F036692A53C2_inline (Action_1_tC00AB03D2E40EC53D13387EBDF0DBD1FBCA6F123* __this, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_tC00AB03D2E40EC53D13387EBDF0DBD1FBCA6F123*, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void Action_2_Invoke_m6740AD6883D3A3296F1B15F7BF50439DBB1A0ABC_inline (Action_2_t0997F02B602DB9E76CB2F8B8E9962030CCE2D59C* __this, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t0997F02B602DB9E76CB2F8B8E9962030CCE2D59C*, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*, RuntimeObject*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Action_1_Invoke_m0B4352C262325B25DA496C092BDF7E43BDB71BA0_inline (Action_1_t12D515BBBDB69A29DC0C4812555D0A8A51D6B856* __this, Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t12D515BBBDB69A29DC0C4812555D0A8A51D6B856*, Task_1_t824317F4B958F7512E8F7300511752937A6C6043*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void Action_2_Invoke_m317C459C005A786A542A8A5F643E969845472A13_inline (Action_2_tB24338D0D12EC5B856C3E6331A8CBF67693F2968* __this, Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_tB24338D0D12EC5B856C3E6331A8CBF67693F2968*, Task_1_t824317F4B958F7512E8F7300511752937A6C6043*, RuntimeObject*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Action_1_Invoke_m30F8D4CC797DD1889B4BEAA4E825516F972174EB_inline (Action_1_tD921DD4207843C7FA208DF2A04B64A7EC6EE90F1* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_tD921DD4207843C7FA208DF2A04B64A7EC6EE90F1*, Task_1_t4C228DE57804012969575431CFF12D57C875552D*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void Action_2_Invoke_m58E8A057759E00DC7C256A81A80DB7F196A2EEB0_inline (Action_2_tAC9CD6807BFD5D7CA53A98BD1CA72DC380606690* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_tAC9CD6807BFD5D7CA53A98BD1CA72DC380606690*, Task_1_t4C228DE57804012969575431CFF12D57C875552D*, RuntimeObject*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Action_1_Invoke_mC826BD07A1768B3B2222D43ACC12F0BBC49ABCCD_inline (Action_1_tC3BD22662CBF7BCA7CF101E25DD9C3BC0C8058B4* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_tC3BD22662CBF7BCA7CF101E25DD9C3BC0C8058B4*, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void Action_2_Invoke_mCE279D2999E8B43CEA23D3DE469745D5A8704296_inline (Action_2_t134192076C48EB6DAB17640388597B62F563A686* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t134192076C48EB6DAB17640388597B62F563A686*, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*, RuntimeObject*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Action_1_Invoke_m532B5A9C3A0C5EC796BB502B9757B2CC42A56333_inline (Action_1_t14B26BAC2002B527764811C43BAEC429C3B25446* __this, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t14B26BAC2002B527764811C43BAEC429C3B25446*, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void Action_2_Invoke_mC60F35F6E10E4A53F88D08A8FEFACDB7A0C0A2C9_inline (Action_2_t7599F1A874E645E7131D6D33F960155F7DBB019E* __this, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t7599F1A874E645E7131D6D33F960155F7DBB019E*, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F*, RuntimeObject*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Action_1_Invoke_m1169A2DC53203BA573048ACBB879FA99B18917BE_inline (Action_1_t0328A8A468C762DAECEC2BDBE23D4E47955D8678* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t0328A8A468C762DAECEC2BDBE23D4E47955D8678*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void Action_2_Invoke_m9130F513A7CB9C401B5E06E35023B1706DB9F0D2_inline (Action_2_t688A348E6918A7E3E4FE534B179A3DFDCF958DED* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t688A348E6918A7E3E4FE534B179A3DFDCF958DED*, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*, RuntimeObject*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Action_1_Invoke_mD838BCF879ED89516C546ACD12757FCD690C7D58_inline (Action_1_t839F3E949693088C3B23DB29849AC0CA1A2583BA* __this, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t839F3E949693088C3B23DB29849AC0CA1A2583BA*, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void Action_2_Invoke_mC3EBDEA90E4EB99862F59ADD9B81D57CC703D20A_inline (Action_2_tF48592AA21538CB1125537B525EA5254EEF3581C* __this, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_tF48592AA21538CB1125537B525EA5254EEF3581C*, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F*, RuntimeObject*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline void Action_1_Invoke_m50BA9D8AF39D61E89FDBCF982BCB43E4B3CB1B63_inline (Action_1_t2A5DF92F66A322B1138DECB857638383A0616590* __this, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_1_t2A5DF92F66A322B1138DECB857638383A0616590*, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*, const RuntimeMethod*))Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline)(__this, ___0_obj, method);
|
|
}
|
|
inline void Action_2_Invoke_m1029EE6B9B8AF17A4E4BF52CC91A90092FD48F55_inline (Action_2_t69E25DD22422E23B12565DA2320B148058096C8E* __this, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Action_2_t69E25DD22422E23B12565DA2320B148058096C8E*, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*, RuntimeObject*, const RuntimeMethod*))Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline)(__this, ___0_arg1, ___1_arg2, method);
|
|
}
|
|
inline EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* EqualityComparer_1_CreateComparer_mD2FA619307513193746FBEB5AE522FB54E21B634 (const RuntimeMethod* method)
|
|
{
|
|
return (( EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* (*) (const RuntimeMethod*))EqualityComparer_1_CreateComparer_mD2FA619307513193746FBEB5AE522FB54E21B634_gshared)(method);
|
|
}
|
|
inline EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* EqualityComparer_1_CreateComparer_m3BD7BED1F69ABEE55E320BA9CCFBB473E9F57C66 (const RuntimeMethod* method)
|
|
{
|
|
return (( EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* (*) (const RuntimeMethod*))EqualityComparer_1_CreateComparer_m3BD7BED1F69ABEE55E320BA9CCFBB473E9F57C66_gshared)(method);
|
|
}
|
|
inline void List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4 (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*, RuntimeObject*, const RuntimeMethod*))List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4_gshared)(__this, ___0_item, method);
|
|
}
|
|
inline void List_1_AddWithResize_mD783561518F916982595A58C9A148BA3AA8F9B10 (List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A* __this, bool ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A*, bool, const RuntimeMethod*))List_1_AddWithResize_mD783561518F916982595A58C9A148BA3AA8F9B10_gshared)(__this, ___0_item, method);
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_IsValueWriteAtomic_m05B4374DF135C28F4CA8CA474793052557BFD54C_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
V_0 = L_1;
|
|
Type_t* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Type_t* L_4 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Type_GetTypeCode_m2CE476933AF4B381D7A52F4343B70E9878FDF466(L_4, NULL);
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, 3)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_7;
|
|
L_7 = IntPtr_get_Size_m1FAAA59DA73D7E32BB1AB55DD92A90AFE3251DBE(NULL);
|
|
return (bool)((((int32_t)L_7) == ((int32_t)8))? 1 : 0);
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__ctor_m6473BDB91AFD9883D085AE9FD49A778A7E25DDD4_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
int32_t L_0;
|
|
L_0 = ConcurrentDictionary_2_get_DefaultConcurrencyLevel_mD7DC17E84C31ED78EF42461417C8D456B258AA4C(il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
ConcurrentDictionary_2__ctor_m3ACA8D6DD9C6CE2A15779437FB6E1F521E8FA35B(__this, L_0, ((int32_t)31), (bool)1, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__ctor_mE9F6F5041B11FA2600BA9A0E354CD62E9F7996D1_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
int32_t L_0;
|
|
L_0 = ConcurrentDictionary_2_get_DefaultConcurrencyLevel_mD7DC17E84C31ED78EF42461417C8D456B258AA4C(il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
RuntimeObject* L_1 = ___0_comparer;
|
|
ConcurrentDictionary_2__ctor_m3ACA8D6DD9C6CE2A15779437FB6E1F521E8FA35B(__this, L_0, ((int32_t)31), (bool)1, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_InitializeFromCollection_mF839AEDF0EB65654C73D36DDACEE1CB8BC875585_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
RuntimeObject* V_1 = NULL;
|
|
KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
RuntimeObject* L_0 = ___0_collection;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_0);
|
|
V_1 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0064:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_1;
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
|
|
IL_0009_1:
|
|
{
|
|
RuntimeObject* L_4 = V_1;
|
|
NullCheck(L_4);
|
|
KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 L_5;
|
|
L_5 = InterfaceFuncInvoker0< KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_4);
|
|
V_2 = L_5;
|
|
RuntimeObject* L_6;
|
|
L_6 = KeyValuePair_2_get_Key_m94A9BD1AEA6EA0A8BEE3739A3881F479181638C4_inline((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
if (L_6)
|
|
{
|
|
goto IL_0023_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0023_1:
|
|
{
|
|
RuntimeObject* L_7;
|
|
L_7 = KeyValuePair_2_get_Key_m94A9BD1AEA6EA0A8BEE3739A3881F479181638C4_inline((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
RuntimeObject* L_8 = __this->____comparer;
|
|
RuntimeObject* L_9;
|
|
L_9 = KeyValuePair_2_get_Key_m94A9BD1AEA6EA0A8BEE3739A3881F479181638C4_inline((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
NullCheck(L_8);
|
|
int32_t L_10;
|
|
L_10 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_8, L_9);
|
|
bool L_11;
|
|
L_11 = KeyValuePair_2_get_Value_mC3C5F83458F19B6276D6E090A86CFDADE6EFAAD8_inline((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
bool L_12;
|
|
L_12 = ConcurrentDictionary_2_TryAddInternal_m478FF4445C5B3FF276773864AB82454184440F3B(__this, L_7, L_10, L_11, (bool)0, (bool)0, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
if (L_12)
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_13 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC0CC039753090F0DDDF2727802FC6E1570B317B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, method);
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
RuntimeObject* L_14 = V_1;
|
|
NullCheck((RuntimeObject*)L_14);
|
|
bool L_15;
|
|
L_15 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
|
|
if (L_15)
|
|
{
|
|
goto IL_0009_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
int32_t L_16 = __this->____budget;
|
|
if (L_16)
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
}
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_17 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_17);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_18 = L_17->____buckets;
|
|
NullCheck(L_18);
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_19 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_19);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = L_19->____locks;
|
|
NullCheck(L_20);
|
|
__this->____budget = ((int32_t)(((int32_t)(((RuntimeArray*)L_18)->max_length))/((int32_t)(((RuntimeArray*)L_20)->max_length))));
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__ctor_m3ACA8D6DD9C6CE2A15779437FB6E1F521E8FA35B_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, int32_t ___0_concurrencyLevel, int32_t ___1_capacity, bool ___2_growLockArray, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_1 = NULL;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RuntimeObject* G_B11_0 = NULL;
|
|
ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* G_B11_1 = NULL;
|
|
RuntimeObject* G_B10_0 = NULL;
|
|
ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* G_B10_1 = NULL;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
int32_t L_0 = ___0_concurrencyLevel;
|
|
if ((((int32_t)L_0) >= ((int32_t)1)))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBF10EFAF6473141D13A05C1B850DEF40E641A918)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral68445D6E030501243B18C07E57CF1AE5C1C5AAF2)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_2 = ___1_capacity;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE59C400B29D20EE4CB5A86E1F46ED782D7872D43)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
int32_t L_4 = ___1_capacity;
|
|
int32_t L_5 = ___0_concurrencyLevel;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_concurrencyLevel;
|
|
___1_capacity = L_6;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
int32_t L_7 = ___0_concurrencyLevel;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_7);
|
|
V_0 = L_8;
|
|
V_3 = 0;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = V_0;
|
|
int32_t L_10 = V_3;
|
|
RuntimeObject* L_11 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_11, NULL);
|
|
NullCheck(L_9);
|
|
ArrayElementTypeCheck (L_9, L_11);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (RuntimeObject*)L_11);
|
|
int32_t L_12 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
int32_t L_13 = V_3;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = V_0;
|
|
NullCheck(L_14);
|
|
if ((((int32_t)L_13) < ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_16 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)));
|
|
V_1 = L_16;
|
|
int32_t L_17 = ___1_capacity;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_18 = (NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6*)(NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 23), (uint32_t)L_17);
|
|
V_2 = L_18;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_19 = V_2;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_21 = V_1;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_22 = (Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 21));
|
|
Tables__ctor_m70463E7A4F0DC7B3CE891A5DB241842EA485D81A(L_22, L_19, L_20, L_21, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tables = L_22;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tables), (void*)L_22);
|
|
RuntimeObject* L_23 = ___3_comparer;
|
|
RuntimeObject* L_24 = L_23;
|
|
if (L_24)
|
|
{
|
|
G_B11_0 = L_24;
|
|
G_B11_1 = __this;
|
|
goto IL_007e;
|
|
}
|
|
G_B10_0 = L_24;
|
|
G_B10_1 = __this;
|
|
}
|
|
{
|
|
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_25;
|
|
L_25 = EqualityComparer_1_get_Default_mA2AD755281D23F496A2579884B39E30C13C208B3_inline(il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
G_B11_0 = ((RuntimeObject*)(L_25));
|
|
G_B11_1 = G_B10_1;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
NullCheck(G_B11_1);
|
|
G_B11_1->____comparer = G_B11_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&G_B11_1->____comparer), (void*)G_B11_0);
|
|
bool L_26 = ___2_growLockArray;
|
|
__this->____growLockArray = L_26;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_27 = V_2;
|
|
NullCheck(L_27);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_28 = V_0;
|
|
NullCheck(L_28);
|
|
__this->____budget = ((int32_t)(((int32_t)(((RuntimeArray*)L_27)->max_length))/((int32_t)(((RuntimeArray*)L_28)->max_length))));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryAdd_m9131A9C97A3FC9B404658285E8707766EEBAD68B_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool ___1_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
RuntimeObject* L_2 = __this->____comparer;
|
|
RuntimeObject* L_3 = ___0_key;
|
|
NullCheck(L_2);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_2, L_3);
|
|
bool L_5 = ___1_value;
|
|
bool L_6;
|
|
L_6 = ConcurrentDictionary_2_TryAddInternal_m478FF4445C5B3FF276773864AB82454184440F3B(__this, L_1, L_4, L_5, (bool)0, (bool)1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_ContainsKey_m4220CA2F2BB439BCBC87EE1DFBAD5F4B8AFFAE8F_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
bool L_2;
|
|
L_2 = ConcurrentDictionary_2_TryGetValue_mBE5FFB39C0B097B2C03D83B46C57B1F43C3CC6C9(__this, L_1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryRemove_m8BDB3FA1F655CD98F6563B3CF7B67CBCFD2D32A9_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
bool* L_2 = ___1_value;
|
|
il2cpp_codegen_initobj((&V_0), sizeof(bool));
|
|
bool L_3 = V_0;
|
|
bool L_4;
|
|
L_4 = ConcurrentDictionary_2_TryRemoveInternal_mF10F36564ED747935E5679EE4DA7FC2BAE381E73(__this, L_1, L_2, (bool)0, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryRemoveInternal_mF10F36564ED747935E5679EE4DA7FC2BAE381E73_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool* ___1_value, bool ___2_matchValue, bool ___3_oldValue, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
RuntimeObject* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* V_6 = NULL;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* V_7 = NULL;
|
|
bool V_8 = false;
|
|
{
|
|
RuntimeObject* L_0 = __this->____comparer;
|
|
RuntimeObject* L_1 = ___0_key;
|
|
NullCheck(L_0);
|
|
int32_t L_2;
|
|
L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_0, L_1);
|
|
V_0 = L_2;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_3 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_1 = L_3;
|
|
int32_t L_4 = V_0;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_5 = V_1;
|
|
NullCheck(L_5);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_6 = L_5->____buckets;
|
|
NullCheck(L_6);
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = L_7->____locks;
|
|
NullCheck(L_8);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_GetBucketAndLockNo_m441AE35CF9D1725D80BFC34B375B980AE14CC0E5(L_4, (&V_2), (&V_3), ((int32_t)(((RuntimeArray*)L_6)->max_length)), ((int32_t)(((RuntimeArray*)L_8)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = L_9->____locks;
|
|
int32_t L_11 = V_3;
|
|
NullCheck(L_10);
|
|
int32_t L_12 = L_11;
|
|
RuntimeObject* L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
|
|
V_4 = L_13;
|
|
V_5 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_011d:
|
|
{
|
|
{
|
|
bool L_14 = V_5;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0128;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_15 = V_4;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_15, NULL);
|
|
}
|
|
|
|
IL_0128:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_16 = V_4;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_16, (&V_5), NULL);
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_17 = V_1;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_18 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((((RuntimeObject*)(Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB*)L_17) == ((RuntimeObject*)(Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB*)L_18)))
|
|
{
|
|
goto IL_0053_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_0053_1:
|
|
{
|
|
V_6 = (Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5*)NULL;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_19 = V_1;
|
|
NullCheck(L_19);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_20 = L_19->____buckets;
|
|
int32_t L_21 = V_2;
|
|
NullCheck(L_20);
|
|
int32_t L_22 = L_21;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
|
|
V_7 = L_23;
|
|
goto IL_0114_1;
|
|
}
|
|
|
|
IL_0065_1:
|
|
{
|
|
int32_t L_24 = V_0;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_25 = V_7;
|
|
NullCheck(L_25);
|
|
int32_t L_26 = L_25->____hashcode;
|
|
if ((!(((uint32_t)L_24) == ((uint32_t)L_26))))
|
|
{
|
|
goto IL_0105_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_27 = __this->____comparer;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_28 = V_7;
|
|
NullCheck(L_28);
|
|
RuntimeObject* L_29 = L_28->____key;
|
|
RuntimeObject* L_30 = ___0_key;
|
|
NullCheck(L_27);
|
|
bool L_31;
|
|
L_31 = InterfaceFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_27, L_29, L_30);
|
|
if (!L_31)
|
|
{
|
|
goto IL_0105_1;
|
|
}
|
|
}
|
|
{
|
|
bool L_32 = ___2_matchValue;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00ae_1;
|
|
}
|
|
}
|
|
{
|
|
EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* L_33;
|
|
L_33 = EqualityComparer_1_get_Default_mBB75BC0723DFD7850F43E72E34026DD070CF5932_inline(il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
bool L_34 = ___3_oldValue;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_35 = V_7;
|
|
NullCheck(L_35);
|
|
bool L_36 = L_35->____value;
|
|
NullCheck(L_33);
|
|
bool L_37;
|
|
L_37 = VirtualFuncInvoker2< bool, bool, bool >::Invoke(8, L_33, L_34, L_36);
|
|
if (L_37)
|
|
{
|
|
goto IL_00ae_1;
|
|
}
|
|
}
|
|
{
|
|
bool* L_38 = ___1_value;
|
|
il2cpp_codegen_initobj(L_38, sizeof(bool));
|
|
V_8 = (bool)0;
|
|
goto IL_0132;
|
|
}
|
|
|
|
IL_00ae_1:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_39 = V_6;
|
|
if (L_39)
|
|
{
|
|
goto IL_00ce_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_40 = V_1;
|
|
NullCheck(L_40);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_41 = L_40->____buckets;
|
|
int32_t L_42 = V_2;
|
|
NullCheck(L_41);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_43 = V_7;
|
|
NullCheck(L_43);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_44 = L_43->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
VolatileWrite((Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5**)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42))), (Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5*)L_44);
|
|
goto IL_00e0_1;
|
|
}
|
|
|
|
IL_00ce_1:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_45 = V_6;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_46 = V_7;
|
|
NullCheck(L_46);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_47 = L_46->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_45);
|
|
il2cpp_codegen_memory_barrier();
|
|
L_45->____next = L_47;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_45->____next), (void*)L_47);
|
|
}
|
|
|
|
IL_00e0_1:
|
|
{
|
|
bool* L_48 = ___1_value;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_49 = V_7;
|
|
NullCheck(L_49);
|
|
bool L_50 = L_49->____value;
|
|
*(bool*)L_48 = L_50;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_51 = V_1;
|
|
NullCheck(L_51);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_52 = L_51->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_53 = V_3;
|
|
NullCheck(L_52);
|
|
int32_t* L_54 = ((L_52)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_53)));
|
|
int32_t L_55 = *((int32_t*)L_54);
|
|
*((int32_t*)L_54) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_55, 1));
|
|
V_8 = (bool)1;
|
|
goto IL_0132;
|
|
}
|
|
|
|
IL_0105_1:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_56 = V_7;
|
|
V_6 = L_56;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_57 = V_7;
|
|
NullCheck(L_57);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_58 = L_57->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_7 = L_58;
|
|
}
|
|
|
|
IL_0114_1:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_59 = V_7;
|
|
if (L_59)
|
|
{
|
|
goto IL_0065_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0129;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0129:
|
|
{
|
|
bool* L_60 = ___1_value;
|
|
il2cpp_codegen_initobj(L_60, sizeof(bool));
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0132:
|
|
{
|
|
bool L_61 = V_8;
|
|
return L_61;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryGetValue_mBE5FFB39C0B097B2C03D83B46C57B1F43C3CC6C9_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
RuntimeObject* L_2 = __this->____comparer;
|
|
RuntimeObject* L_3 = ___0_key;
|
|
NullCheck(L_2);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_2, L_3);
|
|
bool* L_5 = ___1_value;
|
|
bool L_6;
|
|
L_6 = ConcurrentDictionary_2_TryGetValueInternal_mC90C1584E0980D7B1B488EF4C3E36DC009425712(__this, L_1, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryGetValueInternal_mC90C1584E0980D7B1B488EF4C3E36DC009425712_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, int32_t ___1_hashcode, bool* ___2_value, const RuntimeMethod* method)
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* V_2 = NULL;
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
int32_t L_1 = ___1_hashcode;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_3 = L_2->____buckets;
|
|
NullCheck(L_3);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
int32_t L_4;
|
|
L_4 = ConcurrentDictionary_2_GetBucket_m1DBE0B3399F83861D75B966C6A0E037316DDFFDD(L_1, ((int32_t)(((RuntimeArray*)L_3)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
V_1 = L_4;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_6 = L_5->____buckets;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_8;
|
|
L_8 = VolatileRead(((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7))));
|
|
V_2 = L_8;
|
|
goto IL_0060;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
int32_t L_9 = ___1_hashcode;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
int32_t L_11 = L_10->____hashcode;
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_12 = __this->____comparer;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_13 = V_2;
|
|
NullCheck(L_13);
|
|
RuntimeObject* L_14 = L_13->____key;
|
|
RuntimeObject* L_15 = ___0_key;
|
|
NullCheck(L_12);
|
|
bool L_16;
|
|
L_16 = InterfaceFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_12, L_14, L_15);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
bool* L_17 = ___2_value;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_18 = V_2;
|
|
NullCheck(L_18);
|
|
bool L_19 = L_18->____value;
|
|
*(bool*)L_17 = L_19;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_20 = V_2;
|
|
NullCheck(L_20);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_21 = L_20->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_21;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_22 = V_2;
|
|
if (L_22)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
bool* L_23 = ___2_value;
|
|
il2cpp_codegen_initobj(L_23, sizeof(bool));
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_Clear_mBB1172D4AF2CB0BBE194C700B0648488CF51AD0F_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* V_1 = NULL;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0062:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_mA71B853F13E7FAF3AC663B6AEB45CEC022A4D260(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_m1B0055803C381184BE69298304EB2304F72DFC4A(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_1 = (NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6*)(NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 23), (uint32_t)((int32_t)31));
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_2 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_2);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_2->____locks;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_4 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_4);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = L_4->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_5);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)));
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_7 = (Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 21));
|
|
Tables__ctor_m70463E7A4F0DC7B3CE891A5DB241842EA485D81A(L_7, L_1, L_3, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
V_1 = L_7;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_8 = V_1;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tables = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tables), (void*)L_8);
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_10 = L_9->____buckets;
|
|
NullCheck(L_10);
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_11 = V_1;
|
|
NullCheck(L_11);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = L_11->____locks;
|
|
NullCheck(L_12);
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_13;
|
|
L_13 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(1, ((int32_t)(((int32_t)(((RuntimeArray*)L_10)->max_length))/((int32_t)(((RuntimeArray*)L_12)->max_length)))), NULL);
|
|
__this->____budget = L_13;
|
|
goto IL_006b;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_mA51E984ADA347F16B94D405C7932747119834712_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
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:
|
|
{
|
|
int32_t L_2 = ___1_index;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD0D86565E49BD212E7AC64BABD33BE3668A4C45B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0081:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_mA71B853F13E7FAF3AC663B6AEB45CEC022A4D260(__this, 0, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_m1B0055803C381184BE69298304EB2304F72DFC4A(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
V_1 = 0;
|
|
V_2 = 0;
|
|
goto IL_004a_1;
|
|
}
|
|
|
|
IL_0032_1:
|
|
{
|
|
int32_t L_5 = V_1;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_6 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_6);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = L_6->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_8 = V_2;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
int32_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_5, L_10));
|
|
int32_t L_11 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
}
|
|
|
|
IL_004a_1:
|
|
{
|
|
int32_t L_12 = V_2;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_13 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_13);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = L_13->____locks;
|
|
NullCheck(L_14);
|
|
if ((((int32_t)L_12) >= ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))
|
|
{
|
|
goto IL_0060_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = V_1;
|
|
if ((((int32_t)L_15) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0032_1;
|
|
}
|
|
}
|
|
|
|
IL_0060_1:
|
|
{
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_16 = ___0_array;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = ___1_index;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_16)->max_length)), L_17))) < ((int32_t)L_18)))
|
|
{
|
|
goto IL_006c_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_1;
|
|
if ((((int32_t)L_19) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0077_1;
|
|
}
|
|
}
|
|
|
|
IL_006c_1:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_20 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral672E993A9AD93822B712B165C6987759C6DED80B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, method);
|
|
}
|
|
|
|
IL_0077_1:
|
|
{
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_21 = ___0_array;
|
|
int32_t L_22 = ___1_index;
|
|
ConcurrentDictionary_2_CopyToPairs_m900F67D62C3766A28B46354A6532421B8568B5FF(__this, L_21, L_22, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* ConcurrentDictionary_2_ToArray_m771E20D504478265040C2EABD8CC9F5EC838A7F5_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* V_4 = NULL;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005a:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_mA71B853F13E7FAF3AC663B6AEB45CEC022A4D260(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_m1B0055803C381184BE69298304EB2304F72DFC4A(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
V_1 = 0;
|
|
V_3 = 0;
|
|
goto IL_0028_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
int32_t L_1 = V_1;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_2 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_2);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = L_2->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_4 = V_3;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
if (((int64_t)L_1 + (int64_t)L_6 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_1 + (int64_t)L_6 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_1, L_6));
|
|
int32_t L_7 = V_3;
|
|
if (((int64_t)L_7 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_7 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0028_1:
|
|
{
|
|
int32_t L_8 = V_3;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_9 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_9);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = L_9->____locks;
|
|
NullCheck(L_10);
|
|
if ((((int32_t)L_8) < ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = V_1;
|
|
if (L_11)
|
|
{
|
|
goto IL_0046_1;
|
|
}
|
|
}
|
|
{
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_12;
|
|
L_12 = Array_Empty_TisKeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423_m33FD39B66E19241823DC3F53991FB83782F331C2_inline(il2cpp_rgctx_method(method->klass->rgctx_data, 47));
|
|
V_4 = L_12;
|
|
goto IL_0063;
|
|
}
|
|
|
|
IL_0046_1:
|
|
{
|
|
int32_t L_13 = V_1;
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_14 = (KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7*)(KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 48), (uint32_t)L_13);
|
|
V_2 = L_14;
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_15 = V_2;
|
|
ConcurrentDictionary_2_CopyToPairs_m900F67D62C3766A28B46354A6532421B8568B5FF(__this, L_15, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_16 = V_2;
|
|
V_4 = L_16;
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_17 = V_4;
|
|
return L_17;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToPairs_m900F67D62C3766A28B46354A6532421B8568B5FF_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* V_2 = NULL;
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_0);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_1 = L_0->____buckets;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_2 = L_5;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_6 = ___0_array;
|
|
int32_t L_7 = ___1_index;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_8 = V_2;
|
|
NullCheck(L_8);
|
|
RuntimeObject* L_9 = L_8->____key;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
bool L_11 = L_10->____value;
|
|
KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
KeyValuePair_2__ctor_m57BB84A94F6F00F1CADA0C8C921E726D8D4A4854((&L_12), L_9, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423)L_12);
|
|
int32_t L_13 = ___1_index;
|
|
___1_index = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_14 = V_2;
|
|
NullCheck(L_14);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_15 = L_14->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_15;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_16 = V_2;
|
|
if (L_16)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
int32_t L_18 = V_1;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_19 = V_0;
|
|
NullCheck(L_19);
|
|
if ((((int32_t)L_18) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToEntries_m4771A9A4F6FCD1436DB6A13633CF0D2CB872C517_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* V_2 = NULL;
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_0);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_1 = L_0->____buckets;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_2 = L_5;
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* L_6 = ___0_array;
|
|
int32_t L_7 = ___1_index;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_8 = V_2;
|
|
NullCheck(L_8);
|
|
RuntimeObject* L_9 = L_8->____key;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
bool L_11 = L_10->____value;
|
|
bool L_12 = L_11;
|
|
RuntimeObject* L_13 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17), &L_12);
|
|
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB L_14;
|
|
memset((&L_14), 0, sizeof(L_14));
|
|
DictionaryEntry__ctor_m2768353E53A75C4860E34B37DAF1342120C5D1EA((&L_14), L_9, L_13, NULL);
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB)L_14);
|
|
int32_t L_15 = ___1_index;
|
|
___1_index = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_16 = V_2;
|
|
NullCheck(L_16);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_17 = L_16->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_17;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_18 = V_2;
|
|
if (L_18)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
int32_t L_20 = V_1;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_21 = V_0;
|
|
NullCheck(L_21);
|
|
if ((((int32_t)L_20) < ((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToObjects_m4105F3AF4F7746BE773241B908E4AE76A90F5C57_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* V_2 = NULL;
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_0);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_1 = L_0->____buckets;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_2 = L_5;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___0_array;
|
|
int32_t L_7 = ___1_index;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_8 = V_2;
|
|
NullCheck(L_8);
|
|
RuntimeObject* L_9 = L_8->____key;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
bool L_11 = L_10->____value;
|
|
KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
KeyValuePair_2__ctor_m57BB84A94F6F00F1CADA0C8C921E726D8D4A4854((&L_12), L_9, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
|
|
KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 L_13 = L_12;
|
|
RuntimeObject* L_14 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9), &L_13);
|
|
NullCheck(L_6);
|
|
ArrayElementTypeCheck (L_6, L_14);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_14);
|
|
int32_t L_15 = ___1_index;
|
|
___1_index = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_16 = V_2;
|
|
NullCheck(L_16);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_17 = L_16->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_17;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_18 = V_2;
|
|
if (L_18)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
int32_t L_20 = V_1;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_21 = V_0;
|
|
NullCheck(L_21);
|
|
if ((((int32_t)L_20) < ((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_GetEnumerator_m6429F2BCF47DF337C5BA1ED025B5BE69BABA354C_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
U3CGetEnumeratorU3Ed__35_t09ECA34287F02611E13987D9E41BF974EFD81665* L_0 = (U3CGetEnumeratorU3Ed__35_t09ECA34287F02611E13987D9E41BF974EFD81665*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 50));
|
|
U3CGetEnumeratorU3Ed__35__ctor_m93C3CB201F9E0CAC03BD99789457E0DF0502B0B7(L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
|
|
U3CGetEnumeratorU3Ed__35_t09ECA34287F02611E13987D9E41BF974EFD81665* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
L_1->___U3CU3E4__this = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this), (void*)__this);
|
|
return (RuntimeObject*)L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryAddInternal_m478FF4445C5B3FF276773864AB82454184440F3B_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, int32_t ___1_hashcode, bool ___2_value, bool ___3_updateIfExists, bool ___4_acquireLock, bool* ___5_resultingValue, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* V_2 = NULL;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* V_5 = NULL;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* V_6 = NULL;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* V_7 = NULL;
|
|
bool V_8 = false;
|
|
|
|
IL_0000:
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_0;
|
|
int32_t L_1 = ___1_hashcode;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_2 = V_2;
|
|
NullCheck(L_2);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_3 = L_2->____buckets;
|
|
NullCheck(L_3);
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_4 = V_2;
|
|
NullCheck(L_4);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_4->____locks;
|
|
NullCheck(L_5);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_GetBucketAndLockNo_m441AE35CF9D1725D80BFC34B375B980AE14CC0E5(L_1, (&V_0), (&V_1), ((int32_t)(((RuntimeArray*)L_3)->max_length)), ((int32_t)(((RuntimeArray*)L_5)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
V_3 = (bool)0;
|
|
V_4 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_014e:
|
|
{
|
|
{
|
|
bool L_6 = V_4;
|
|
if (!L_6)
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
}
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_7 = V_2;
|
|
NullCheck(L_7);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = L_7->____locks;
|
|
int32_t L_9 = V_1;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
RuntimeObject* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_11, NULL);
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
bool L_12 = ___4_acquireLock;
|
|
if (!L_12)
|
|
{
|
|
goto IL_003b_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_13 = V_2;
|
|
NullCheck(L_13);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = L_13->____locks;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
RuntimeObject* L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_17, (&V_4), NULL);
|
|
}
|
|
|
|
IL_003b_1:
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_18 = V_2;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_19 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((((RuntimeObject*)(Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB*)L_18) == ((RuntimeObject*)(Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB*)L_19)))
|
|
{
|
|
goto IL_0048_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0000;
|
|
}
|
|
|
|
IL_0048_1:
|
|
{
|
|
V_5 = (Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5*)NULL;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_20 = V_2;
|
|
NullCheck(L_20);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_21 = L_20->____buckets;
|
|
int32_t L_22 = V_0;
|
|
NullCheck(L_21);
|
|
int32_t L_23 = L_22;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
|
|
V_6 = L_24;
|
|
goto IL_00fd_1;
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
int32_t L_25 = ___1_hashcode;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_26 = V_6;
|
|
NullCheck(L_26);
|
|
int32_t L_27 = L_26->____hashcode;
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)L_27))))
|
|
{
|
|
goto IL_00ee_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_28 = __this->____comparer;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_29 = V_6;
|
|
NullCheck(L_29);
|
|
RuntimeObject* L_30 = L_29->____key;
|
|
RuntimeObject* L_31 = ___0_key;
|
|
NullCheck(L_28);
|
|
bool L_32;
|
|
L_32 = InterfaceFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_28, L_30, L_31);
|
|
if (!L_32)
|
|
{
|
|
goto IL_00ee_1;
|
|
}
|
|
}
|
|
{
|
|
bool L_33 = ___3_updateIfExists;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00d8_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
bool L_34 = ((ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_isValueWriteAtomic;
|
|
if (!L_34)
|
|
{
|
|
goto IL_0091_1;
|
|
}
|
|
}
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_35 = V_6;
|
|
bool L_36 = ___2_value;
|
|
NullCheck(L_35);
|
|
L_35->____value = L_36;
|
|
goto IL_00ce_1;
|
|
}
|
|
|
|
IL_0091_1:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
RuntimeObject* L_38 = L_37->____key;
|
|
bool L_39 = ___2_value;
|
|
int32_t L_40 = ___1_hashcode;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_41 = V_6;
|
|
NullCheck(L_41);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_42 = L_41->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_43 = (Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 31));
|
|
Node__ctor_m5A8CED36390839315C7E6E815D1215D9B001EEF4(L_43, L_38, L_39, L_40, L_42, il2cpp_rgctx_method(method->klass->rgctx_data, 52));
|
|
V_7 = L_43;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_44 = V_5;
|
|
if (L_44)
|
|
{
|
|
goto IL_00c3_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_45 = V_2;
|
|
NullCheck(L_45);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_46 = L_45->____buckets;
|
|
int32_t L_47 = V_0;
|
|
NullCheck(L_46);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_48 = V_7;
|
|
VolatileWrite((Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5**)((L_46)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_47))), (Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5*)L_48);
|
|
goto IL_00ce_1;
|
|
}
|
|
|
|
IL_00c3_1:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_49 = V_5;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_50 = V_7;
|
|
NullCheck(L_49);
|
|
il2cpp_codegen_memory_barrier();
|
|
L_49->____next = L_50;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_49->____next), (void*)L_50);
|
|
}
|
|
|
|
IL_00ce_1:
|
|
{
|
|
bool* L_51 = ___5_resultingValue;
|
|
bool L_52 = ___2_value;
|
|
*(bool*)L_51 = L_52;
|
|
goto IL_00e6_1;
|
|
}
|
|
|
|
IL_00d8_1:
|
|
{
|
|
bool* L_53 = ___5_resultingValue;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_54 = V_6;
|
|
NullCheck(L_54);
|
|
bool L_55 = L_54->____value;
|
|
*(bool*)L_53 = L_55;
|
|
}
|
|
|
|
IL_00e6_1:
|
|
{
|
|
V_8 = (bool)0;
|
|
goto IL_0174;
|
|
}
|
|
|
|
IL_00ee_1:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_56 = V_6;
|
|
V_5 = L_56;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_57 = V_6;
|
|
NullCheck(L_57);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_58 = L_57->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_6 = L_58;
|
|
}
|
|
|
|
IL_00fd_1:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_59 = V_6;
|
|
if (L_59)
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_60 = V_2;
|
|
NullCheck(L_60);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_61 = L_60->____buckets;
|
|
int32_t L_62 = V_0;
|
|
NullCheck(L_61);
|
|
RuntimeObject* L_63 = ___0_key;
|
|
bool L_64 = ___2_value;
|
|
int32_t L_65 = ___1_hashcode;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_66 = V_2;
|
|
NullCheck(L_66);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_67 = L_66->____buckets;
|
|
int32_t L_68 = V_0;
|
|
NullCheck(L_67);
|
|
int32_t L_69 = L_68;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_70 = (L_67)->GetAt(static_cast<il2cpp_array_size_t>(L_69));
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_71 = (Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 31));
|
|
Node__ctor_m5A8CED36390839315C7E6E815D1215D9B001EEF4(L_71, L_63, L_64, L_65, L_70, il2cpp_rgctx_method(method->klass->rgctx_data, 52));
|
|
VolatileWrite((Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5**)((L_61)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_62))), (Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5*)L_71);
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_72 = V_2;
|
|
NullCheck(L_72);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_73 = L_72->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_74 = V_1;
|
|
NullCheck(L_73);
|
|
int32_t* L_75 = ((L_73)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_74)));
|
|
int32_t L_76 = *((int32_t*)L_75);
|
|
if (((int64_t)L_76 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_76 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
*((int32_t*)L_75) = (int32_t)((int32_t)il2cpp_codegen_add(L_76, 1));
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_77 = V_2;
|
|
NullCheck(L_77);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_78 = L_77->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_79 = V_1;
|
|
NullCheck(L_78);
|
|
int32_t L_80 = L_79;
|
|
int32_t L_81 = (L_78)->GetAt(static_cast<il2cpp_array_size_t>(L_80));
|
|
int32_t L_82 = __this->____budget;
|
|
if ((((int32_t)L_81) <= ((int32_t)L_82)))
|
|
{
|
|
goto IL_014c_1;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)1;
|
|
}
|
|
|
|
IL_014c_1:
|
|
{
|
|
goto IL_0160;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0160:
|
|
{
|
|
bool L_83 = V_3;
|
|
if (!L_83)
|
|
{
|
|
goto IL_016a;
|
|
}
|
|
}
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_84 = V_2;
|
|
ConcurrentDictionary_2_GrowTable_mEA819466FD8756C4266E057D366223A929D000BC(__this, L_84, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
|
|
}
|
|
|
|
IL_016a:
|
|
{
|
|
bool* L_85 = ___5_resultingValue;
|
|
bool L_86 = ___2_value;
|
|
*(bool*)L_85 = L_86;
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0174:
|
|
{
|
|
bool L_87 = V_8;
|
|
return L_87;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_get_Item_mB36F5126B4F11D024F0B6E8EFAD49C6EEF71A5BF_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
bool L_1;
|
|
L_1 = ConcurrentDictionary_2_TryGetValue_mBE5FFB39C0B097B2C03D83B46C57B1F43C3CC6C9(__this, L_0, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
if (L_1)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_key;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNotFoundException_m2B3EA5F3FAF548B98775CAFCFD3C77C4A712F236(L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 54));
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_set_Item_m71753CC41408C8AFFE4A121A6B818E72A83D059C_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool ___1_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
RuntimeObject* L_2 = __this->____comparer;
|
|
RuntimeObject* L_3 = ___0_key;
|
|
NullCheck(L_2);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_2, L_3);
|
|
bool L_5 = ___1_value;
|
|
bool L_6;
|
|
L_6 = ConcurrentDictionary_2_TryAddInternal_m478FF4445C5B3FF276773864AB82454184440F3B(__this, L_1, L_4, L_5, (bool)1, (bool)1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ThrowKeyNotFoundException_m2B3EA5F3FAF548B98775CAFCFD3C77C4A712F236_gshared (RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
NullCheck(L_0);
|
|
String_t* L_1;
|
|
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_0);
|
|
String_t* L_2;
|
|
L_2 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC524653D78C03BE4033DDC43C45B67FFB841D141)), (RuntimeObject*)L_1, NULL);
|
|
KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E* L_3 = (KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E_il2cpp_TypeInfo_var)));
|
|
KeyNotFoundException__ctor_mBD1D75B73DD5D7C6C72E4F7A021778837B6F2C6B(L_3, L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_0 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_get_Count_m5253DBACD67860607AA263D6180B828C8F464D33_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0013:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_mA71B853F13E7FAF3AC663B6AEB45CEC022A4D260(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_m1B0055803C381184BE69298304EB2304F72DFC4A(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
int32_t L_1;
|
|
L_1 = ConcurrentDictionary_2_GetCountInternal_m3607F18C53F476E99FA1D177A1FB21EB0A7AEACF(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 55));
|
|
V_1 = L_1;
|
|
goto IL_001c;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t L_2 = V_1;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_GetCountInternal_m3607F18C53F476E99FA1D177A1FB21EB0A7AEACF_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_1 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = L_1->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_5));
|
|
int32_t L_6 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_7 = V_1;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_8 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_8);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = L_8->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_9);
|
|
if ((((int32_t)L_7) < ((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_GetOrAdd_m5AD2FBF5D5DA6FF93AF5BCFBBEBE8DFA1243873D_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* ___1_valueFactory, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_1 = ___1_valueFactory;
|
|
if (L_1)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEF68BB0CB45867DA95163C2C6A4B0677DCE80DCF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
RuntimeObject* L_3 = __this->____comparer;
|
|
RuntimeObject* L_4 = ___0_key;
|
|
NullCheck(L_3);
|
|
int32_t L_5;
|
|
L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_3, L_4);
|
|
V_0 = L_5;
|
|
RuntimeObject* L_6 = ___0_key;
|
|
int32_t L_7 = V_0;
|
|
bool L_8;
|
|
L_8 = ConcurrentDictionary_2_TryGetValueInternal_mC90C1584E0980D7B1B488EF4C3E36DC009425712(__this, L_6, L_7, (&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
if (L_8)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_9 = ___0_key;
|
|
int32_t L_10 = V_0;
|
|
Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* L_11 = ___1_valueFactory;
|
|
RuntimeObject* L_12 = ___0_key;
|
|
NullCheck(L_11);
|
|
bool L_13;
|
|
L_13 = Func_2_Invoke_m2014423FB900F135C8FF994125604FF9E6AAE829_inline(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 57));
|
|
bool L_14;
|
|
L_14 = ConcurrentDictionary_2_TryAddInternal_m478FF4445C5B3FF276773864AB82454184440F3B(__this, L_9, L_10, L_13, (bool)0, (bool)1, (&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
bool L_15 = V_1;
|
|
return L_15;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_GetOrAdd_m0DAD1B68514B2AB3E72DEC0F29F46161688F182C_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool ___1_value, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_1 = __this->____comparer;
|
|
RuntimeObject* L_2 = ___0_key;
|
|
NullCheck(L_1);
|
|
int32_t L_3;
|
|
L_3 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_1, L_2);
|
|
V_0 = L_3;
|
|
RuntimeObject* L_4 = ___0_key;
|
|
int32_t L_5 = V_0;
|
|
bool L_6;
|
|
L_6 = ConcurrentDictionary_2_TryGetValueInternal_mC90C1584E0980D7B1B488EF4C3E36DC009425712(__this, L_4, L_5, (&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
if (L_6)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_7 = ___0_key;
|
|
int32_t L_8 = V_0;
|
|
bool L_9 = ___1_value;
|
|
bool L_10;
|
|
L_10 = ConcurrentDictionary_2_TryAddInternal_m478FF4445C5B3FF276773864AB82454184440F3B(__this, L_7, L_8, L_9, (bool)0, (bool)1, (&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
bool L_11 = V_1;
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_Generic_IDictionaryU3CTKeyU2CTValueU3E_Add_mB1E68355CD073E102044DAFAF56E4DF62DBD25E3_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, bool ___1_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
bool L_1 = ___1_value;
|
|
bool L_2;
|
|
L_2 = ConcurrentDictionary_2_TryAdd_m9131A9C97A3FC9B404658285E8707766EEBAD68B(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 58));
|
|
if (L_2)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC38D57307791EED2AD28D35927B9E90B23E6281D)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_Generic_IDictionaryU3CTKeyU2CTValueU3E_Remove_m6709B2CB34050F41822008EE3AA15F783A5CA946_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
bool L_1;
|
|
L_1 = ConcurrentDictionary_2_TryRemove_m8BDB3FA1F655CD98F6563B3CF7B67CBCFD2D32A9(__this, L_0, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 59));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_get_Keys_m066F21FF1EE1B2357FDCA67568663CEA58941DE0_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetKeys_mC1387F14EE0C8D857CDCE99250E929051E453226(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 60));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_Generic_IReadOnlyDictionaryU3CTKeyU2CTValueU3E_get_Keys_m611B423B07C828FE0A00CE05AD605811FEA2476B_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetKeys_mC1387F14EE0C8D857CDCE99250E929051E453226(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 60));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_get_Values_mC9536E8BB6F9CD67753A7D7BBE1E2D254A6B8345_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetValues_m73720151BAFEF4961618F5F84112660E7609126B(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 64));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_Generic_IReadOnlyDictionaryU3CTKeyU2CTValueU3E_get_Values_m06748BEE6E875723A2043C2F9D4C9402F3918FAA_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetValues_m73720151BAFEF4961618F5F84112660E7609126B(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 64));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m0DABDC4E22FB5634ADEDB20BF29FFBC81F562F86_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 ___0_keyValuePair, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = KeyValuePair_2_get_Key_m94A9BD1AEA6EA0A8BEE3739A3881F479181638C4_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
bool L_1;
|
|
L_1 = KeyValuePair_2_get_Value_mC3C5F83458F19B6276D6E090A86CFDADE6EFAAD8_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
NullCheck((RuntimeObject*)__this);
|
|
InterfaceActionInvoker2< RuntimeObject*, bool >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 68), (RuntimeObject*)__this, L_0, L_1);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m7EBA0D7A7FC9490FD054F83564165D224CEC4561_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 ___0_keyValuePair, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = KeyValuePair_2_get_Key_m94A9BD1AEA6EA0A8BEE3739A3881F479181638C4_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
bool L_1;
|
|
L_1 = ConcurrentDictionary_2_TryGetValue_mBE5FFB39C0B097B2C03D83B46C57B1F43C3CC6C9(__this, L_0, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
if (L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* L_2;
|
|
L_2 = EqualityComparer_1_get_Default_mBB75BC0723DFD7850F43E72E34026DD070CF5932_inline(il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
bool L_3 = V_0;
|
|
bool L_4;
|
|
L_4 = KeyValuePair_2_get_Value_mC3C5F83458F19B6276D6E090A86CFDADE6EFAAD8_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
NullCheck(L_2);
|
|
bool L_5;
|
|
L_5 = VirtualFuncInvoker2< bool, bool, bool >::Invoke(8, L_2, L_3, L_4);
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_mC8DCE7ADAB3AEA0328BB09F89542565930A1485B_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_mA0AD203164EC0045663D820562E61F3C9E2F66BE_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423 ___0_keyValuePair, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = KeyValuePair_2_get_Key_m94A9BD1AEA6EA0A8BEE3739A3881F479181638C4_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
if (L_0)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
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_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral561DA6E332E7EF45E52D96B07EC786D85C2955BE)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral020F27A067D9C2A1BC9628BCE378DE63A6F2B5BE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
RuntimeObject* L_2;
|
|
L_2 = KeyValuePair_2_get_Key_m94A9BD1AEA6EA0A8BEE3739A3881F479181638C4_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
bool L_3;
|
|
L_3 = KeyValuePair_2_get_Value_mC3C5F83458F19B6276D6E090A86CFDADE6EFAAD8_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
bool L_4;
|
|
L_4 = ConcurrentDictionary_2_TryRemoveInternal_mF10F36564ED747935E5679EE4DA7FC2BAE381E73(__this, L_2, (&V_0), (bool)1, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IEnumerable_GetEnumerator_m8445A05102D22847DA11F1D594F3BEB4DC6CFBCE_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetEnumerator_m6429F2BCF47DF337C5BA1ED025B5BE69BABA354C(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 70));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_IDictionary_Add_m9FD97A128037D2F464EB743EA0C33210AACE5CFB_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFD8CE285C77CDFBCDCBA338A795AFF019E6C3B66)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
RuntimeObject* L_3 = ___1_value;
|
|
V_0 = ((*(bool*)((bool*)(bool*)UnBox(L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 17)))));
|
|
goto IL_0031;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0025;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0025:
|
|
{
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = ((InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*));;
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral20D029102A70CD96274496928ED59E8B9C014BBA)), NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, method);
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
RuntimeObject* L_6 = ___0_key;
|
|
bool L_7 = V_0;
|
|
NullCheck((RuntimeObject*)__this);
|
|
InterfaceActionInvoker2< RuntimeObject*, bool >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 68), (RuntimeObject*)__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_6, il2cpp_rgctx_data(method->klass->rgctx_data, 12))), L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_IDictionary_Contains_mEEDD2619AE06DEE4E7BA9464D5B6D51B97B7137E_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_key;
|
|
bool L_3;
|
|
L_3 = ConcurrentDictionary_2_ContainsKey_m4220CA2F2BB439BCBC87EE1DFBAD5F4B8AFFAE8F(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 12))), il2cpp_rgctx_method(method->klass->rgctx_data, 71));
|
|
return L_3;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IDictionary_GetEnumerator_m2E579A6D29AA445FA5973F2E9B688054A4B130B4_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DictionaryEnumerator_t89B36B17C8760EDB41C3B7B9CB958EB90E92B183* L_0 = (DictionaryEnumerator_t89B36B17C8760EDB41C3B7B9CB958EB90E92B183*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 72));
|
|
DictionaryEnumerator__ctor_m8939BDDCC2510C40831561CB7D1845F751EC3C7C(L_0, __this, il2cpp_rgctx_method(method->klass->rgctx_data, 73));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_IDictionary_get_IsFixedSize_m12508532EF5BC5AC0B6B55B081CADAD5F13B13B8_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_IDictionary_get_IsReadOnly_mAA2F6975DB8823485F509F7CD649F397421EF5A3_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IDictionary_get_Keys_m623707ABA1A3B2770892DFA25962C1F844F8A92B_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetKeys_mC1387F14EE0C8D857CDCE99250E929051E453226(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 60));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_IDictionary_Remove_mF1ACB5A302C03ED914B7E15ED4FD1FA9A2419EA4_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_key;
|
|
bool L_3;
|
|
L_3 = ConcurrentDictionary_2_TryRemove_m8BDB3FA1F655CD98F6563B3CF7B67CBCFD2D32A9(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 12))), (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 59));
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IDictionary_get_Values_m5657B827CD225F1C7F35C02DF8472CD3CD786EEC_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetValues_m73720151BAFEF4961618F5F84112660E7609126B(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 64));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IDictionary_get_Item_m127C5E3C81B261B2330AB6AECFE69AD99D745581_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_key;
|
|
bool L_3;
|
|
L_3 = ConcurrentDictionary_2_TryGetValue_mBE5FFB39C0B097B2C03D83B46C57B1F43C3CC6C9(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 12))), (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
if (!L_3)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
bool L_4 = V_0;
|
|
bool L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17), &L_5);
|
|
return L_6;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
return NULL;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_IDictionary_set_Item_mE2EE59649C1F30941FE8E0FF5E668029946BB45E_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_m7075D2C1EFC4A2F59AC9F443896AA188AC677C2A(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFD8CE285C77CDFBCDCBA338A795AFF019E6C3B66)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
RuntimeObject* L_3 = ___1_value;
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 17))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral20D029102A70CD96274496928ED59E8B9C014BBA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, method);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
RuntimeObject* L_5 = ___0_key;
|
|
RuntimeObject* L_6 = ___1_value;
|
|
ConcurrentDictionary_2_set_Item_m71753CC41408C8AFFE4A121A6B818E72A83D059C(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_5, il2cpp_rgctx_data(method->klass->rgctx_data, 12))), ((*(bool*)((bool*)(bool*)UnBox(L_6, il2cpp_rgctx_data(method->klass->rgctx_data, 17))))), il2cpp_rgctx_method(method->klass->rgctx_data, 74));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_ICollection_CopyTo_m9431B3B8628ADDCA33C017667700DF6686E9F686_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, RuntimeArray* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* V_3 = NULL;
|
|
DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* V_4 = NULL;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
{
|
|
RuntimeArray* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
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:
|
|
{
|
|
int32_t L_2 = ___1_index;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD0D86565E49BD212E7AC64BABD33BE3668A4C45B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00cc:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_mA71B853F13E7FAF3AC663B6AEB45CEC022A4D260(__this, 0, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_m1B0055803C381184BE69298304EB2304F72DFC4A(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_5 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_1 = L_5;
|
|
V_2 = 0;
|
|
V_6 = 0;
|
|
goto IL_0050_1;
|
|
}
|
|
|
|
IL_003c_1:
|
|
{
|
|
int32_t L_6 = V_2;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = L_7->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_9 = V_6;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_6, L_11));
|
|
int32_t L_12 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_0050_1:
|
|
{
|
|
int32_t L_13 = V_6;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_14 = V_1;
|
|
NullCheck(L_14);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = L_14->____locks;
|
|
NullCheck(L_15);
|
|
if ((((int32_t)L_13) >= ((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))))
|
|
{
|
|
goto IL_0060_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_2;
|
|
if ((((int32_t)L_16) >= ((int32_t)0)))
|
|
{
|
|
goto IL_003c_1;
|
|
}
|
|
}
|
|
|
|
IL_0060_1:
|
|
{
|
|
RuntimeArray* L_17 = ___0_array;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_17, NULL);
|
|
int32_t L_19 = V_2;
|
|
int32_t L_20 = ___1_index;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_18, L_19))) < ((int32_t)L_20)))
|
|
{
|
|
goto IL_006f_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = V_2;
|
|
if ((((int32_t)L_21) >= ((int32_t)0)))
|
|
{
|
|
goto IL_007a_1;
|
|
}
|
|
}
|
|
|
|
IL_006f_1:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_22 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral672E993A9AD93822B712B165C6987759C6DED80B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, method);
|
|
}
|
|
|
|
IL_007a_1:
|
|
{
|
|
RuntimeArray* L_23 = ___0_array;
|
|
V_3 = ((KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7*)IsInst((RuntimeObject*)L_23, il2cpp_rgctx_data(method->klass->rgctx_data, 45)));
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_24 = V_3;
|
|
if (!L_24)
|
|
{
|
|
goto IL_008e_1;
|
|
}
|
|
}
|
|
{
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_25 = V_3;
|
|
int32_t L_26 = ___1_index;
|
|
ConcurrentDictionary_2_CopyToPairs_m900F67D62C3766A28B46354A6532421B8568B5FF(__this, L_25, L_26, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_008e_1:
|
|
{
|
|
RuntimeArray* L_27 = ___0_array;
|
|
V_4 = ((DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533*)IsInst((RuntimeObject*)L_27, DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533_il2cpp_TypeInfo_var));
|
|
DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* L_28 = V_4;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00a5_1;
|
|
}
|
|
}
|
|
{
|
|
DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* L_29 = V_4;
|
|
int32_t L_30 = ___1_index;
|
|
ConcurrentDictionary_2_CopyToEntries_m4771A9A4F6FCD1436DB6A13633CF0D2CB872C517(__this, L_29, L_30, il2cpp_rgctx_method(method->klass->rgctx_data, 75));
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_00a5_1:
|
|
{
|
|
RuntimeArray* L_31 = ___0_array;
|
|
V_5 = ((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)IsInst((RuntimeObject*)L_31, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_32 = V_5;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00bc_1;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_33 = V_5;
|
|
int32_t L_34 = ___1_index;
|
|
ConcurrentDictionary_2_CopyToObjects_m4105F3AF4F7746BE773241B908E4AE76A90F5C57(__this, L_33, L_34, il2cpp_rgctx_method(method->klass->rgctx_data, 76));
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_00bc_1:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_35 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_35, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA05D9DA01CB9AD0AA6BE899FE1E39018B72923DB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, method);
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_ICollection_get_IsSynchronized_mC2878C41CA9D6F7F02B545D291E6125159D8D59B_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_ICollection_get_SyncRoot_m84DF36873829EB83EEBE269FFAA9677394E74D45_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4CC02BED909F9630E59013E4804C6C269FF8370A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_GrowTable_mEA819466FD8756C4266E057D366223A929D000BC_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* ___0_tables, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_4 = NULL;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* V_5 = NULL;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_6 = NULL;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
int32_t V_9 = 0;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* V_10 = NULL;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_01fd:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_mA71B853F13E7FAF3AC663B6AEB45CEC022A4D260(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
ConcurrentDictionary_2_AcquireLocks_m6DCC70E9E92179B98BF49E314AE1A654DEECB9A1(__this, 0, 1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 77));
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_1 = ___0_tables;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_2 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((((RuntimeObject*)(Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB*)L_1) == ((RuntimeObject*)(Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB*)L_2)))
|
|
{
|
|
goto IL_001c_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_001c_1:
|
|
{
|
|
V_1 = ((int64_t)0);
|
|
V_7 = 0;
|
|
goto IL_0039_1;
|
|
}
|
|
|
|
IL_0024_1:
|
|
{
|
|
int64_t L_3 = V_1;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_4 = ___0_tables;
|
|
NullCheck(L_4);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = L_4->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_6 = V_7;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
int32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
V_1 = ((int64_t)il2cpp_codegen_add(L_3, ((int64_t)L_8)));
|
|
int32_t L_9 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_9, 1));
|
|
}
|
|
|
|
IL_0039_1:
|
|
{
|
|
int32_t L_10 = V_7;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_11 = ___0_tables;
|
|
NullCheck(L_11);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = L_11->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_12);
|
|
if ((((int32_t)L_10) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
|
|
{
|
|
goto IL_0024_1;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_13 = V_1;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_14 = ___0_tables;
|
|
NullCheck(L_14);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_15 = L_14->____buckets;
|
|
NullCheck(L_15);
|
|
if ((((int64_t)L_13) >= ((int64_t)((int64_t)((int32_t)(((int32_t)(((RuntimeArray*)L_15)->max_length))/4))))))
|
|
{
|
|
goto IL_007c_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = __this->____budget;
|
|
__this->____budget = ((int32_t)il2cpp_codegen_multiply(2, L_16));
|
|
int32_t L_17 = __this->____budget;
|
|
if ((((int32_t)L_17) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0077_1;
|
|
}
|
|
}
|
|
{
|
|
__this->____budget = ((int32_t)2147483647LL);
|
|
}
|
|
|
|
IL_0077_1:
|
|
{
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_007c_1:
|
|
{
|
|
V_2 = 0;
|
|
V_3 = (bool)0;
|
|
}
|
|
try
|
|
{
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_18 = ___0_tables;
|
|
NullCheck(L_18);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_19 = L_18->____buckets;
|
|
NullCheck(L_19);
|
|
if (((int64_t)((int32_t)(((RuntimeArray*)L_19)->max_length)) * (int64_t)2 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)(((RuntimeArray*)L_19)->max_length)) * (int64_t)2 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
if (((int64_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_19)->max_length)), 2)) + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_19)->max_length)), 2)) + (int64_t)1 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
V_2 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_19)->max_length)), 2)), 1));
|
|
goto IL_0093_2;
|
|
}
|
|
|
|
IL_008f_2:
|
|
{
|
|
int32_t L_20 = V_2;
|
|
if (((int64_t)L_20 + (int64_t)2 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_20 + (int64_t)2 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_20, 2));
|
|
}
|
|
|
|
IL_0093_2:
|
|
{
|
|
int32_t L_21 = V_2;
|
|
if (!((int32_t)(L_21%3)))
|
|
{
|
|
goto IL_008f_2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_22 = V_2;
|
|
if (!((int32_t)(L_22%5)))
|
|
{
|
|
goto IL_008f_2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_23 = V_2;
|
|
if (!((int32_t)(L_23%7)))
|
|
{
|
|
goto IL_008f_2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_24 = V_2;
|
|
if ((((int32_t)L_24) <= ((int32_t)((int32_t)2146435071))))
|
|
{
|
|
goto IL_00ac_2;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)1;
|
|
}
|
|
|
|
IL_00ac_2:
|
|
{
|
|
goto IL_00b3_1;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00ae_1;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00ae_1:
|
|
{
|
|
OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_25 = ((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*));;
|
|
V_3 = (bool)1;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_00b3_1;
|
|
}
|
|
|
|
IL_00b3_1:
|
|
{
|
|
bool L_26 = V_3;
|
|
if (!L_26)
|
|
{
|
|
goto IL_00c7_1;
|
|
}
|
|
}
|
|
{
|
|
V_2 = ((int32_t)2146435071);
|
|
__this->____budget = ((int32_t)2147483647LL);
|
|
}
|
|
|
|
IL_00c7_1:
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_27 = ___0_tables;
|
|
NullCheck(L_27);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_28 = L_27->____locks;
|
|
NullCheck(L_28);
|
|
ConcurrentDictionary_2_AcquireLocks_m6DCC70E9E92179B98BF49E314AE1A654DEECB9A1(__this, 1, ((int32_t)(((RuntimeArray*)L_28)->max_length)), (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 77));
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_29 = ___0_tables;
|
|
NullCheck(L_29);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_30 = L_29->____locks;
|
|
V_4 = L_30;
|
|
bool L_31 = __this->____growLockArray;
|
|
if (!L_31)
|
|
{
|
|
goto IL_0143_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_32 = ___0_tables;
|
|
NullCheck(L_32);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_33 = L_32->____locks;
|
|
NullCheck(L_33);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length))) >= ((int32_t)((int32_t)1024))))
|
|
{
|
|
goto IL_0143_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_34 = ___0_tables;
|
|
NullCheck(L_34);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_35 = L_34->____locks;
|
|
NullCheck(L_35);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_36 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_35)->max_length)), 2)));
|
|
V_4 = L_36;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_37 = ___0_tables;
|
|
NullCheck(L_37);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_38 = L_37->____locks;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_39 = V_4;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_40 = ___0_tables;
|
|
NullCheck(L_40);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_41 = L_40->____locks;
|
|
NullCheck(L_41);
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_38, 0, (RuntimeArray*)L_39, 0, ((int32_t)(((RuntimeArray*)L_41)->max_length)), NULL);
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_42 = ___0_tables;
|
|
NullCheck(L_42);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_43 = L_42->____locks;
|
|
NullCheck(L_43);
|
|
V_8 = ((int32_t)(((RuntimeArray*)L_43)->max_length));
|
|
goto IL_013b_1;
|
|
}
|
|
|
|
IL_012b_1:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_44 = V_4;
|
|
int32_t L_45 = V_8;
|
|
RuntimeObject* L_46 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_46, NULL);
|
|
NullCheck(L_44);
|
|
ArrayElementTypeCheck (L_44, L_46);
|
|
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(L_45), (RuntimeObject*)L_46);
|
|
int32_t L_47 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_47, 1));
|
|
}
|
|
|
|
IL_013b_1:
|
|
{
|
|
int32_t L_48 = V_8;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_49 = V_4;
|
|
NullCheck(L_49);
|
|
if ((((int32_t)L_48) < ((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length)))))
|
|
{
|
|
goto IL_012b_1;
|
|
}
|
|
}
|
|
|
|
IL_0143_1:
|
|
{
|
|
int32_t L_50 = V_2;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_51 = (NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6*)(NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 23), (uint32_t)L_50);
|
|
V_5 = L_51;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_52 = V_4;
|
|
NullCheck(L_52);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_53 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_52)->max_length)));
|
|
V_6 = L_53;
|
|
V_9 = 0;
|
|
goto IL_01c7_1;
|
|
}
|
|
|
|
IL_015b_1:
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_54 = ___0_tables;
|
|
NullCheck(L_54);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_55 = L_54->____buckets;
|
|
int32_t L_56 = V_9;
|
|
NullCheck(L_55);
|
|
int32_t L_57 = L_56;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_58 = (L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_57));
|
|
V_10 = L_58;
|
|
goto IL_01bd_1;
|
|
}
|
|
|
|
IL_0168_1:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_59 = V_10;
|
|
NullCheck(L_59);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_60 = L_59->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_61 = V_10;
|
|
NullCheck(L_61);
|
|
int32_t L_62 = L_61->____hashcode;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_63 = V_5;
|
|
NullCheck(L_63);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_64 = V_4;
|
|
NullCheck(L_64);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_GetBucketAndLockNo_m441AE35CF9D1725D80BFC34B375B980AE14CC0E5(L_62, (&V_11), (&V_12), ((int32_t)(((RuntimeArray*)L_63)->max_length)), ((int32_t)(((RuntimeArray*)L_64)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_65 = V_5;
|
|
int32_t L_66 = V_11;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_67 = V_10;
|
|
NullCheck(L_67);
|
|
RuntimeObject* L_68 = L_67->____key;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_69 = V_10;
|
|
NullCheck(L_69);
|
|
bool L_70 = L_69->____value;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_71 = V_10;
|
|
NullCheck(L_71);
|
|
int32_t L_72 = L_71->____hashcode;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_73 = V_5;
|
|
int32_t L_74 = V_11;
|
|
NullCheck(L_73);
|
|
int32_t L_75 = L_74;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_76 = (L_73)->GetAt(static_cast<il2cpp_array_size_t>(L_75));
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_77 = (Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 31));
|
|
Node__ctor_m5A8CED36390839315C7E6E815D1215D9B001EEF4(L_77, L_68, L_70, L_72, L_76, il2cpp_rgctx_method(method->klass->rgctx_data, 52));
|
|
NullCheck(L_65);
|
|
(L_65)->SetAt(static_cast<il2cpp_array_size_t>(L_66), (Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5*)L_77);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_78 = V_6;
|
|
int32_t L_79 = V_12;
|
|
NullCheck(L_78);
|
|
int32_t* L_80 = ((L_78)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_79)));
|
|
int32_t L_81 = *((int32_t*)L_80);
|
|
if (((int64_t)L_81 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_81 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
*((int32_t*)L_80) = (int32_t)((int32_t)il2cpp_codegen_add(L_81, 1));
|
|
V_10 = L_60;
|
|
}
|
|
|
|
IL_01bd_1:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_82 = V_10;
|
|
if (L_82)
|
|
{
|
|
goto IL_0168_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_83 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_83, 1));
|
|
}
|
|
|
|
IL_01c7_1:
|
|
{
|
|
int32_t L_84 = V_9;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_85 = ___0_tables;
|
|
NullCheck(L_85);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_86 = L_85->____buckets;
|
|
NullCheck(L_86);
|
|
if ((((int32_t)L_84) < ((int32_t)((int32_t)(((RuntimeArray*)L_86)->max_length)))))
|
|
{
|
|
goto IL_015b_1;
|
|
}
|
|
}
|
|
{
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_87 = V_5;
|
|
NullCheck(L_87);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_88 = V_4;
|
|
NullCheck(L_88);
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_89;
|
|
L_89 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(1, ((int32_t)(((int32_t)(((RuntimeArray*)L_87)->max_length))/((int32_t)(((RuntimeArray*)L_88)->max_length)))), NULL);
|
|
__this->____budget = L_89;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_90 = V_5;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_91 = V_4;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_92 = V_6;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_93 = (Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 21));
|
|
Tables__ctor_m70463E7A4F0DC7B3CE891A5DB241842EA485D81A(L_93, L_90, L_91, L_92, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tables = L_93;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tables), (void*)L_93);
|
|
goto IL_0206;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0206:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_GetBucket_m1DBE0B3399F83861D75B966C6A0E037316DDFFDD_gshared (int32_t ___0_hashcode, int32_t ___1_bucketCount, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_hashcode;
|
|
int32_t L_1 = ___1_bucketCount;
|
|
return ((int32_t)(((int32_t)(L_0&((int32_t)2147483647LL)))%L_1));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_GetBucketAndLockNo_m441AE35CF9D1725D80BFC34B375B980AE14CC0E5_gshared (int32_t ___0_hashcode, int32_t* ___1_bucketNo, int32_t* ___2_lockNo, int32_t ___3_bucketCount, int32_t ___4_lockCount, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t* L_0 = ___1_bucketNo;
|
|
int32_t L_1 = ___0_hashcode;
|
|
int32_t L_2 = ___3_bucketCount;
|
|
*((int32_t*)L_0) = (int32_t)((int32_t)(((int32_t)(L_1&((int32_t)2147483647LL)))%L_2));
|
|
int32_t* L_3 = ___2_lockNo;
|
|
int32_t* L_4 = ___1_bucketNo;
|
|
int32_t L_5 = *((int32_t*)L_4);
|
|
int32_t L_6 = ___4_lockCount;
|
|
*((int32_t*)L_3) = (int32_t)((int32_t)(L_5%L_6));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_get_DefaultConcurrencyLevel_mD7DC17E84C31ED78EF42461417C8D456B258AA4C_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlatformHelper_t5E497382616B62F0B318E53D098F90E22AB35722_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PlatformHelper_t5E497382616B62F0B318E53D098F90E22AB35722_il2cpp_TypeInfo_var);
|
|
int32_t L_0;
|
|
L_0 = PlatformHelper_get_ProcessorCount_m123AB465E201104882D03864A7C6E08F1A55F3F9(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_AcquireAllLocks_m1B0055803C381184BE69298304EB2304F72DFC4A_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, int32_t* ___0_locksAcquired, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var);
|
|
CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999* L_0 = ((CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_StaticFields*)il2cpp_codegen_static_fields_for(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var))->___Log;
|
|
NullCheck((EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25*)L_0);
|
|
bool L_1;
|
|
L_1 = EventSource_IsEnabled_m0B2F63F81423D7832DC5526D0F3490C77CAB57A5((EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25*)L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var);
|
|
CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999* L_2 = ((CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_StaticFields*)il2cpp_codegen_static_fields_for(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var))->___Log;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_3 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_3);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_4 = L_3->____buckets;
|
|
NullCheck(L_4);
|
|
NullCheck(L_2);
|
|
CDSCollectionETWBCLProvider_ConcurrentDictionary_AcquiringAllLocks_mF33BBE9D19970C7F3C3DB3C0F6BCF16BEEC26EFA(L_2, ((int32_t)(((RuntimeArray*)L_4)->max_length)), NULL);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
int32_t* L_5 = ___0_locksAcquired;
|
|
ConcurrentDictionary_2_AcquireLocks_m6DCC70E9E92179B98BF49E314AE1A654DEECB9A1(__this, 0, 1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 77));
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_6 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_6);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = L_6->____locks;
|
|
NullCheck(L_7);
|
|
int32_t* L_8 = ___0_locksAcquired;
|
|
ConcurrentDictionary_2_AcquireLocks_m6DCC70E9E92179B98BF49E314AE1A654DEECB9A1(__this, 1, ((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 77));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_AcquireLocks_m6DCC70E9E92179B98BF49E314AE1A654DEECB9A1_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, int32_t* ___2_locksAcquired, const RuntimeMethod* method)
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_0);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0->____locks;
|
|
V_0 = L_1;
|
|
int32_t L_2 = ___0_fromInclusive;
|
|
V_1 = L_2;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
V_2 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0020:
|
|
{
|
|
{
|
|
bool L_3 = V_2;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_4 = ___2_locksAcquired;
|
|
int32_t* L_5 = ___2_locksAcquired;
|
|
int32_t L_6 = *((int32_t*)L_5);
|
|
*((int32_t*)L_4) = (int32_t)((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = V_0;
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
RuntimeObject* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_10, (&V_2), NULL);
|
|
goto IL_002a;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
int32_t L_13 = ___1_toExclusive;
|
|
if ((((int32_t)L_12) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ReleaseLocks_mA71B853F13E7FAF3AC663B6AEB45CEC022A4D260_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_fromInclusive;
|
|
V_0 = L_0;
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_1 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_1);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = L_1->____locks;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_5, NULL);
|
|
int32_t L_6 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
int32_t L_8 = ___1_toExclusive;
|
|
if ((((int32_t)L_7) < ((int32_t)L_8)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* ConcurrentDictionary_2_GetKeys_mC1387F14EE0C8D857CDCE99250E929051E453226_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* V_3 = NULL;
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* V_4 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B2_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006e:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_mA71B853F13E7FAF3AC663B6AEB45CEC022A4D260(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_m1B0055803C381184BE69298304EB2304F72DFC4A(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
int32_t L_1;
|
|
L_1 = ConcurrentDictionary_2_GetCountInternal_m3607F18C53F476E99FA1D177A1FB21EB0A7AEACF(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 55));
|
|
int32_t L_2 = L_1;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
G_B3_0 = L_2;
|
|
goto IL_001a_1;
|
|
}
|
|
G_B2_0 = L_2;
|
|
}
|
|
{
|
|
OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* L_3 = (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var)));
|
|
OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951(L_3, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001a_1:
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_4 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 78));
|
|
List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428(L_4, G_B3_0, il2cpp_rgctx_method(method->klass->rgctx_data, 79));
|
|
V_1 = L_4;
|
|
V_2 = 0;
|
|
goto IL_0052_1;
|
|
}
|
|
|
|
IL_0024_1:
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_5 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_5);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_6 = L_5->____buckets;
|
|
int32_t L_7 = V_2;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
V_3 = L_9;
|
|
goto IL_004b_1;
|
|
}
|
|
|
|
IL_0036_1:
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_10 = V_1;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_11 = V_3;
|
|
NullCheck(L_11);
|
|
RuntimeObject* L_12 = L_11->____key;
|
|
NullCheck(L_10);
|
|
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_10, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 80));
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_13 = V_3;
|
|
NullCheck(L_13);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_14 = L_13->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_3 = L_14;
|
|
}
|
|
|
|
IL_004b_1:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_15 = V_3;
|
|
if (L_15)
|
|
{
|
|
goto IL_0036_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0052_1:
|
|
{
|
|
int32_t L_17 = V_2;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_18 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_18);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_19 = L_18->____buckets;
|
|
NullCheck(L_19);
|
|
if ((((int32_t)L_17) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))
|
|
{
|
|
goto IL_0024_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_20 = V_1;
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_21 = (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 61));
|
|
ReadOnlyCollection_1__ctor_mF2D2ACE0752C3B97343B72328D49200F45C14B65(L_21, (RuntimeObject*)L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 81));
|
|
V_4 = L_21;
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_22 = V_4;
|
|
return L_22;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14* ConcurrentDictionary_2_GetValues_m73720151BAFEF4961618F5F84112660E7609126B_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* V_3 = NULL;
|
|
ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14* V_4 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B2_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006e:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_mA71B853F13E7FAF3AC663B6AEB45CEC022A4D260(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_m1B0055803C381184BE69298304EB2304F72DFC4A(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
int32_t L_1;
|
|
L_1 = ConcurrentDictionary_2_GetCountInternal_m3607F18C53F476E99FA1D177A1FB21EB0A7AEACF(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 55));
|
|
int32_t L_2 = L_1;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
G_B3_0 = L_2;
|
|
goto IL_001a_1;
|
|
}
|
|
G_B2_0 = L_2;
|
|
}
|
|
{
|
|
OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* L_3 = (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var)));
|
|
OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951(L_3, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001a_1:
|
|
{
|
|
List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A* L_4 = (List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 83));
|
|
List_1__ctor_m91DC7897CFBCC9E83397E65300A31D6D6FDEA6FC(L_4, G_B3_0, il2cpp_rgctx_method(method->klass->rgctx_data, 84));
|
|
V_1 = L_4;
|
|
V_2 = 0;
|
|
goto IL_0052_1;
|
|
}
|
|
|
|
IL_0024_1:
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_5 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_5);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_6 = L_5->____buckets;
|
|
int32_t L_7 = V_2;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
V_3 = L_9;
|
|
goto IL_004b_1;
|
|
}
|
|
|
|
IL_0036_1:
|
|
{
|
|
List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A* L_10 = V_1;
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_11 = V_3;
|
|
NullCheck(L_11);
|
|
bool L_12 = L_11->____value;
|
|
NullCheck(L_10);
|
|
List_1_Add_m5AAB6DCB6C30EB5769B4E8DB8170E50319F0A9ED_inline(L_10, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 85));
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_13 = V_3;
|
|
NullCheck(L_13);
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_14 = L_13->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_3 = L_14;
|
|
}
|
|
|
|
IL_004b_1:
|
|
{
|
|
Node_t3382C64B21B64BADDB1DCEC566AA8A0CA1F32BB5* L_15 = V_3;
|
|
if (L_15)
|
|
{
|
|
goto IL_0036_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0052_1:
|
|
{
|
|
int32_t L_17 = V_2;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_18 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_18);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_19 = L_18->____buckets;
|
|
NullCheck(L_19);
|
|
if ((((int32_t)L_17) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))
|
|
{
|
|
goto IL_0024_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A* L_20 = V_1;
|
|
ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14* L_21 = (ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 65));
|
|
ReadOnlyCollection_1__ctor_m3042DC024824AA3294D16E9595FFF5F600B3E18D(L_21, (RuntimeObject*)L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 86));
|
|
V_4 = L_21;
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
ReadOnlyCollection_1_tF6C8D639BF221EBC6ADF8C4668D7236C3A16AD14* L_22 = V_4;
|
|
return L_22;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_OnSerializing_mE4BCF9E64EFA4EFAC8F2BAF2060379C1028C09FA_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___0_context, const RuntimeMethod* method)
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* V_0 = NULL;
|
|
{
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_1;
|
|
L_1 = ConcurrentDictionary_2_ToArray_m771E20D504478265040C2EABD8CC9F5EC838A7F5(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 88));
|
|
__this->____serializationArray = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____serializationArray), (void*)L_1);
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_2->____locks;
|
|
NullCheck(L_3);
|
|
__this->____serializationConcurrencyLevel = ((int32_t)(((RuntimeArray*)L_3)->max_length));
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_5 = L_4->____buckets;
|
|
NullCheck(L_5);
|
|
__this->____serializationCapacity = ((int32_t)(((RuntimeArray*)L_5)->max_length));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_OnSerialized_mEA09658013EEC1BCECBF5C3BFFA7F4BEEE6E6318_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___0_context, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->____serializationArray = (KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____serializationArray), (void*)(KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_OnDeserialized_mAF81E48790311B4E2E6F9EF303B825A00675C33B_gshared (ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01* __this, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___0_context, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* V_0 = NULL;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* V_1 = NULL;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_2 = NULL;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
{
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_0 = __this->____serializationArray;
|
|
V_0 = L_0;
|
|
int32_t L_1 = __this->____serializationCapacity;
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_2 = (NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6*)(NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 23), (uint32_t)L_1);
|
|
V_1 = L_2;
|
|
int32_t L_3 = __this->____serializationConcurrencyLevel;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_3);
|
|
V_2 = L_4;
|
|
int32_t L_5 = __this->____serializationConcurrencyLevel;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_5);
|
|
V_3 = L_6;
|
|
V_4 = 0;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = V_3;
|
|
int32_t L_8 = V_4;
|
|
RuntimeObject* L_9 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_9, NULL);
|
|
NullCheck(L_7);
|
|
ArrayElementTypeCheck (L_7, L_9);
|
|
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (RuntimeObject*)L_9);
|
|
int32_t L_10 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
int32_t L_11 = V_4;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = V_3;
|
|
NullCheck(L_12);
|
|
if ((((int32_t)L_11) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
NodeU5BU5D_t623656C8E4AF6B205D8C825D67AFA4133E2AE6B6* L_13 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = V_3;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = V_2;
|
|
Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB* L_16 = (Tables_t05AB52937C9C11C74C6A2545B1834DD3BC138FCB*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 21));
|
|
Tables__ctor_m70463E7A4F0DC7B3CE891A5DB241842EA485D81A(L_16, L_13, L_14, L_15, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tables = L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tables), (void*)L_16);
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_17 = V_0;
|
|
ConcurrentDictionary_2_InitializeFromCollection_mF839AEDF0EB65654C73D36DDACEE1CB8BC875585(__this, (RuntimeObject*)L_17, il2cpp_rgctx_method(method->klass->rgctx_data, 89));
|
|
__this->____serializationArray = (KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____serializationArray), (void*)(KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__cctor_mAF86701503AE62DA95BD320D3D74FE541B128408_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0;
|
|
L_0 = ConcurrentDictionary_2_IsValueWriteAtomic_m05B4374DF135C28F4CA8CA474793052557BFD54C(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 90));
|
|
((ConcurrentDictionary_2_t8A9F0FAB6BFF45CD0E8881CD462CE31AE50C4E01_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_isValueWriteAtomic = L_0;
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_IsValueWriteAtomic_m92D50EA01ED33996745B57924CB025FD4A569F1B_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
V_0 = L_1;
|
|
Type_t* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Type_t* L_4 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Type_GetTypeCode_m2CE476933AF4B381D7A52F4343B70E9878FDF466(L_4, NULL);
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, 3)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_7;
|
|
L_7 = IntPtr_get_Size_m1FAAA59DA73D7E32BB1AB55DD92A90AFE3251DBE(NULL);
|
|
return (bool)((((int32_t)L_7) == ((int32_t)8))? 1 : 0);
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__ctor_m0891574E19148D39C27C179BF2787093757C5F57_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
int32_t L_0;
|
|
L_0 = ConcurrentDictionary_2_get_DefaultConcurrencyLevel_m6D0A5B42819471D975E4CB0AE3867346D2A81383(il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
ConcurrentDictionary_2__ctor_m6E7D16F028BFD7FF1F86EC8CA87B54BA90D2B00E(__this, L_0, ((int32_t)31), (bool)1, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__ctor_m2D937986F9495D8AF5A1FEB1217D83A3AA3FF6D8_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
int32_t L_0;
|
|
L_0 = ConcurrentDictionary_2_get_DefaultConcurrencyLevel_m6D0A5B42819471D975E4CB0AE3867346D2A81383(il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
RuntimeObject* L_1 = ___0_comparer;
|
|
ConcurrentDictionary_2__ctor_m6E7D16F028BFD7FF1F86EC8CA87B54BA90D2B00E(__this, L_0, ((int32_t)31), (bool)1, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_InitializeFromCollection_m8A9AFB3C35AF03B0D953EF7F62D2419FCCEAA0A6_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
RuntimeObject* L_0 = ___0_collection;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_0);
|
|
V_1 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0064:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_1;
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
|
|
IL_0009_1:
|
|
{
|
|
RuntimeObject* L_4 = V_1;
|
|
NullCheck(L_4);
|
|
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_5;
|
|
L_5 = InterfaceFuncInvoker0< KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_4);
|
|
V_2 = L_5;
|
|
RuntimeObject* L_6;
|
|
L_6 = KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_inline((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
if (L_6)
|
|
{
|
|
goto IL_0023_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0023_1:
|
|
{
|
|
RuntimeObject* L_7;
|
|
L_7 = KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_inline((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
RuntimeObject* L_8 = __this->____comparer;
|
|
RuntimeObject* L_9;
|
|
L_9 = KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_inline((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
NullCheck(L_8);
|
|
int32_t L_10;
|
|
L_10 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_8, L_9);
|
|
RuntimeObject* L_11;
|
|
L_11 = KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_inline((&V_2), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
bool L_12;
|
|
L_12 = ConcurrentDictionary_2_TryAddInternal_m62921F1BBA26758C8E118413653422214D054B05(__this, L_7, L_10, L_11, (bool)0, (bool)0, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
if (L_12)
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_13 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_13, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC0CC039753090F0DDDF2727802FC6E1570B317B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, method);
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
RuntimeObject* L_14 = V_1;
|
|
NullCheck((RuntimeObject*)L_14);
|
|
bool L_15;
|
|
L_15 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_14);
|
|
if (L_15)
|
|
{
|
|
goto IL_0009_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
int32_t L_16 = __this->____budget;
|
|
if (L_16)
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
}
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_17 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_17);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_18 = L_17->____buckets;
|
|
NullCheck(L_18);
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_19 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_19);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = L_19->____locks;
|
|
NullCheck(L_20);
|
|
__this->____budget = ((int32_t)(((int32_t)(((RuntimeArray*)L_18)->max_length))/((int32_t)(((RuntimeArray*)L_20)->max_length))));
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__ctor_m6E7D16F028BFD7FF1F86EC8CA87B54BA90D2B00E_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, int32_t ___0_concurrencyLevel, int32_t ___1_capacity, bool ___2_growLockArray, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_1 = NULL;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RuntimeObject* G_B11_0 = NULL;
|
|
ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* G_B11_1 = NULL;
|
|
RuntimeObject* G_B10_0 = NULL;
|
|
ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* G_B10_1 = NULL;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
int32_t L_0 = ___0_concurrencyLevel;
|
|
if ((((int32_t)L_0) >= ((int32_t)1)))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBF10EFAF6473141D13A05C1B850DEF40E641A918)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral68445D6E030501243B18C07E57CF1AE5C1C5AAF2)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_2 = ___1_capacity;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE59C400B29D20EE4CB5A86E1F46ED782D7872D43)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
int32_t L_4 = ___1_capacity;
|
|
int32_t L_5 = ___0_concurrencyLevel;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_concurrencyLevel;
|
|
___1_capacity = L_6;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
int32_t L_7 = ___0_concurrencyLevel;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_7);
|
|
V_0 = L_8;
|
|
V_3 = 0;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = V_0;
|
|
int32_t L_10 = V_3;
|
|
RuntimeObject* L_11 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_11, NULL);
|
|
NullCheck(L_9);
|
|
ArrayElementTypeCheck (L_9, L_11);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (RuntimeObject*)L_11);
|
|
int32_t L_12 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
int32_t L_13 = V_3;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = V_0;
|
|
NullCheck(L_14);
|
|
if ((((int32_t)L_13) < ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_16 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)));
|
|
V_1 = L_16;
|
|
int32_t L_17 = ___1_capacity;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_18 = (NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76*)(NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 23), (uint32_t)L_17);
|
|
V_2 = L_18;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_19 = V_2;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_21 = V_1;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_22 = (Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 21));
|
|
Tables__ctor_m53DA34DE77197BE2E495B724556D3B9C5BB8B65E(L_22, L_19, L_20, L_21, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tables = L_22;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tables), (void*)L_22);
|
|
RuntimeObject* L_23 = ___3_comparer;
|
|
RuntimeObject* L_24 = L_23;
|
|
if (L_24)
|
|
{
|
|
G_B11_0 = L_24;
|
|
G_B11_1 = __this;
|
|
goto IL_007e;
|
|
}
|
|
G_B10_0 = L_24;
|
|
G_B10_1 = __this;
|
|
}
|
|
{
|
|
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_25;
|
|
L_25 = EqualityComparer_1_get_Default_mA2AD755281D23F496A2579884B39E30C13C208B3_inline(il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
G_B11_0 = ((RuntimeObject*)(L_25));
|
|
G_B11_1 = G_B10_1;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
NullCheck(G_B11_1);
|
|
G_B11_1->____comparer = G_B11_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&G_B11_1->____comparer), (void*)G_B11_0);
|
|
bool L_26 = ___2_growLockArray;
|
|
__this->____growLockArray = L_26;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_27 = V_2;
|
|
NullCheck(L_27);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_28 = V_0;
|
|
NullCheck(L_28);
|
|
__this->____budget = ((int32_t)(((int32_t)(((RuntimeArray*)L_27)->max_length))/((int32_t)(((RuntimeArray*)L_28)->max_length))));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryAdd_mA7D07DAB0E4F228BEDBEBA3BEA124A7C839B0DFC_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
RuntimeObject* L_2 = __this->____comparer;
|
|
RuntimeObject* L_3 = ___0_key;
|
|
NullCheck(L_2);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_2, L_3);
|
|
RuntimeObject* L_5 = ___1_value;
|
|
bool L_6;
|
|
L_6 = ConcurrentDictionary_2_TryAddInternal_m62921F1BBA26758C8E118413653422214D054B05(__this, L_1, L_4, L_5, (bool)0, (bool)1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_ContainsKey_m9BDE52D83802C8E05ED223C1864017FB19B43DBC_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
bool L_2;
|
|
L_2 = ConcurrentDictionary_2_TryGetValue_mE794BBB2811B9244CF8ECB11994F70DEB6BEFDF7(__this, L_1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryRemove_m24DC33BB549CD9414E0782A591303A484D2BA255_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
RuntimeObject** L_2 = ___1_value;
|
|
il2cpp_codegen_initobj((&V_0), sizeof(RuntimeObject*));
|
|
RuntimeObject* L_3 = V_0;
|
|
bool L_4;
|
|
L_4 = ConcurrentDictionary_2_TryRemoveInternal_mECC197E0B75D875C446D3D53E65B37E9BC72B162(__this, L_1, L_2, (bool)0, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryRemoveInternal_mECC197E0B75D875C446D3D53E65B37E9BC72B162_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, bool ___2_matchValue, RuntimeObject* ___3_oldValue, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
RuntimeObject* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* V_6 = NULL;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
{
|
|
RuntimeObject* L_0 = __this->____comparer;
|
|
RuntimeObject* L_1 = ___0_key;
|
|
NullCheck(L_0);
|
|
int32_t L_2;
|
|
L_2 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_0, L_1);
|
|
V_0 = L_2;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_3 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_1 = L_3;
|
|
int32_t L_4 = V_0;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_5 = V_1;
|
|
NullCheck(L_5);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_6 = L_5->____buckets;
|
|
NullCheck(L_6);
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = L_7->____locks;
|
|
NullCheck(L_8);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_GetBucketAndLockNo_m45E3479E1AACFE4F39CD86B8CC6C49E8AD6507A1(L_4, (&V_2), (&V_3), ((int32_t)(((RuntimeArray*)L_6)->max_length)), ((int32_t)(((RuntimeArray*)L_8)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = L_9->____locks;
|
|
int32_t L_11 = V_3;
|
|
NullCheck(L_10);
|
|
int32_t L_12 = L_11;
|
|
RuntimeObject* L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
|
|
V_4 = L_13;
|
|
V_5 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_011d:
|
|
{
|
|
{
|
|
bool L_14 = V_5;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0128;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_15 = V_4;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_15, NULL);
|
|
}
|
|
|
|
IL_0128:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_16 = V_4;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_16, (&V_5), NULL);
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_17 = V_1;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_18 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((((RuntimeObject*)(Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6*)L_17) == ((RuntimeObject*)(Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6*)L_18)))
|
|
{
|
|
goto IL_0053_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_0053_1:
|
|
{
|
|
V_6 = (Node_t821211F0535E80E80FDC8FFB600F681E98286BF0*)NULL;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_19 = V_1;
|
|
NullCheck(L_19);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_20 = L_19->____buckets;
|
|
int32_t L_21 = V_2;
|
|
NullCheck(L_20);
|
|
int32_t L_22 = L_21;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
|
|
V_7 = L_23;
|
|
goto IL_0114_1;
|
|
}
|
|
|
|
IL_0065_1:
|
|
{
|
|
int32_t L_24 = V_0;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_25 = V_7;
|
|
NullCheck(L_25);
|
|
int32_t L_26 = L_25->____hashcode;
|
|
if ((!(((uint32_t)L_24) == ((uint32_t)L_26))))
|
|
{
|
|
goto IL_0105_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_27 = __this->____comparer;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_28 = V_7;
|
|
NullCheck(L_28);
|
|
RuntimeObject* L_29 = L_28->____key;
|
|
RuntimeObject* L_30 = ___0_key;
|
|
NullCheck(L_27);
|
|
bool L_31;
|
|
L_31 = InterfaceFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_27, L_29, L_30);
|
|
if (!L_31)
|
|
{
|
|
goto IL_0105_1;
|
|
}
|
|
}
|
|
{
|
|
bool L_32 = ___2_matchValue;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00ae_1;
|
|
}
|
|
}
|
|
{
|
|
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_33;
|
|
L_33 = EqualityComparer_1_get_Default_mA2AD755281D23F496A2579884B39E30C13C208B3_inline(il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
RuntimeObject* L_34 = ___3_oldValue;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_35 = V_7;
|
|
NullCheck(L_35);
|
|
RuntimeObject* L_36 = L_35->____value;
|
|
NullCheck(L_33);
|
|
bool L_37;
|
|
L_37 = VirtualFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(8, L_33, L_34, L_36);
|
|
if (L_37)
|
|
{
|
|
goto IL_00ae_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject** L_38 = ___1_value;
|
|
il2cpp_codegen_initobj(L_38, sizeof(RuntimeObject*));
|
|
V_8 = (bool)0;
|
|
goto IL_0132;
|
|
}
|
|
|
|
IL_00ae_1:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_39 = V_6;
|
|
if (L_39)
|
|
{
|
|
goto IL_00ce_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_40 = V_1;
|
|
NullCheck(L_40);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_41 = L_40->____buckets;
|
|
int32_t L_42 = V_2;
|
|
NullCheck(L_41);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_43 = V_7;
|
|
NullCheck(L_43);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_44 = L_43->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
VolatileWrite((Node_t821211F0535E80E80FDC8FFB600F681E98286BF0**)((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42))), (Node_t821211F0535E80E80FDC8FFB600F681E98286BF0*)L_44);
|
|
goto IL_00e0_1;
|
|
}
|
|
|
|
IL_00ce_1:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_45 = V_6;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_46 = V_7;
|
|
NullCheck(L_46);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_47 = L_46->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_45);
|
|
il2cpp_codegen_memory_barrier();
|
|
L_45->____next = L_47;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_45->____next), (void*)L_47);
|
|
}
|
|
|
|
IL_00e0_1:
|
|
{
|
|
RuntimeObject** L_48 = ___1_value;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_49 = V_7;
|
|
NullCheck(L_49);
|
|
RuntimeObject* L_50 = L_49->____value;
|
|
*(RuntimeObject**)L_48 = L_50;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_48, (void*)L_50);
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_51 = V_1;
|
|
NullCheck(L_51);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_52 = L_51->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_53 = V_3;
|
|
NullCheck(L_52);
|
|
int32_t* L_54 = ((L_52)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_53)));
|
|
int32_t L_55 = *((int32_t*)L_54);
|
|
*((int32_t*)L_54) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_55, 1));
|
|
V_8 = (bool)1;
|
|
goto IL_0132;
|
|
}
|
|
|
|
IL_0105_1:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_56 = V_7;
|
|
V_6 = L_56;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_57 = V_7;
|
|
NullCheck(L_57);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_58 = L_57->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_7 = L_58;
|
|
}
|
|
|
|
IL_0114_1:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_59 = V_7;
|
|
if (L_59)
|
|
{
|
|
goto IL_0065_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0129;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0129:
|
|
{
|
|
RuntimeObject** L_60 = ___1_value;
|
|
il2cpp_codegen_initobj(L_60, sizeof(RuntimeObject*));
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0132:
|
|
{
|
|
bool L_61 = V_8;
|
|
return L_61;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryGetValue_mE794BBB2811B9244CF8ECB11994F70DEB6BEFDF7_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
RuntimeObject* L_2 = __this->____comparer;
|
|
RuntimeObject* L_3 = ___0_key;
|
|
NullCheck(L_2);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_2, L_3);
|
|
RuntimeObject** L_5 = ___1_value;
|
|
bool L_6;
|
|
L_6 = ConcurrentDictionary_2_TryGetValueInternal_m6652F2101F8A95B357BD0EF5FF6CA6EF9FFAB4E6(__this, L_1, L_4, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryGetValueInternal_m6652F2101F8A95B357BD0EF5FF6CA6EF9FFAB4E6_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, int32_t ___1_hashcode, RuntimeObject** ___2_value, const RuntimeMethod* method)
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* V_2 = NULL;
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
int32_t L_1 = ___1_hashcode;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_3 = L_2->____buckets;
|
|
NullCheck(L_3);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
int32_t L_4;
|
|
L_4 = ConcurrentDictionary_2_GetBucket_m9EB38A937BA93FB1FF25671CC62113967A829799(L_1, ((int32_t)(((RuntimeArray*)L_3)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
V_1 = L_4;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_6 = L_5->____buckets;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_8;
|
|
L_8 = VolatileRead(((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7))));
|
|
V_2 = L_8;
|
|
goto IL_0060;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
int32_t L_9 = ___1_hashcode;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
int32_t L_11 = L_10->____hashcode;
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_12 = __this->____comparer;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_13 = V_2;
|
|
NullCheck(L_13);
|
|
RuntimeObject* L_14 = L_13->____key;
|
|
RuntimeObject* L_15 = ___0_key;
|
|
NullCheck(L_12);
|
|
bool L_16;
|
|
L_16 = InterfaceFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_12, L_14, L_15);
|
|
if (!L_16)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject** L_17 = ___2_value;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_18 = V_2;
|
|
NullCheck(L_18);
|
|
RuntimeObject* L_19 = L_18->____value;
|
|
*(RuntimeObject**)L_17 = L_19;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_17, (void*)L_19);
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_20 = V_2;
|
|
NullCheck(L_20);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_21 = L_20->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_21;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_22 = V_2;
|
|
if (L_22)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject** L_23 = ___2_value;
|
|
il2cpp_codegen_initobj(L_23, sizeof(RuntimeObject*));
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_Clear_m20A7977A549E9D2FB6B901DBE209E8AB69F1C2FE_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* V_1 = NULL;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0062:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_m0F2C015E8701256B786281D8D29B75868171C705(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_mEEA5D51FFF0AE48412FCF37B5C8954A5DEE8C9D6(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_1 = (NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76*)(NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 23), (uint32_t)((int32_t)31));
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_2 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_2);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_2->____locks;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_4 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_4);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = L_4->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_5);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)));
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_7 = (Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 21));
|
|
Tables__ctor_m53DA34DE77197BE2E495B724556D3B9C5BB8B65E(L_7, L_1, L_3, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
V_1 = L_7;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_8 = V_1;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tables = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tables), (void*)L_8);
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_10 = L_9->____buckets;
|
|
NullCheck(L_10);
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_11 = V_1;
|
|
NullCheck(L_11);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = L_11->____locks;
|
|
NullCheck(L_12);
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_13;
|
|
L_13 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(1, ((int32_t)(((int32_t)(((RuntimeArray*)L_10)->max_length))/((int32_t)(((RuntimeArray*)L_12)->max_length)))), NULL);
|
|
__this->____budget = L_13;
|
|
goto IL_006b;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m4658D0F58A61259A38610FE6FC534CDBEC1AE595_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
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:
|
|
{
|
|
int32_t L_2 = ___1_index;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD0D86565E49BD212E7AC64BABD33BE3668A4C45B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0081:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_m0F2C015E8701256B786281D8D29B75868171C705(__this, 0, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_mEEA5D51FFF0AE48412FCF37B5C8954A5DEE8C9D6(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
V_1 = 0;
|
|
V_2 = 0;
|
|
goto IL_004a_1;
|
|
}
|
|
|
|
IL_0032_1:
|
|
{
|
|
int32_t L_5 = V_1;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_6 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_6);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = L_6->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_8 = V_2;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
int32_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_5, L_10));
|
|
int32_t L_11 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
}
|
|
|
|
IL_004a_1:
|
|
{
|
|
int32_t L_12 = V_2;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_13 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_13);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = L_13->____locks;
|
|
NullCheck(L_14);
|
|
if ((((int32_t)L_12) >= ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))
|
|
{
|
|
goto IL_0060_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = V_1;
|
|
if ((((int32_t)L_15) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0032_1;
|
|
}
|
|
}
|
|
|
|
IL_0060_1:
|
|
{
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_16 = ___0_array;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = ___1_index;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_16)->max_length)), L_17))) < ((int32_t)L_18)))
|
|
{
|
|
goto IL_006c_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_1;
|
|
if ((((int32_t)L_19) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0077_1;
|
|
}
|
|
}
|
|
|
|
IL_006c_1:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_20 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral672E993A9AD93822B712B165C6987759C6DED80B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, method);
|
|
}
|
|
|
|
IL_0077_1:
|
|
{
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_21 = ___0_array;
|
|
int32_t L_22 = ___1_index;
|
|
ConcurrentDictionary_2_CopyToPairs_mF6358833C6BB17A51A6C91CC8C34A019711D429E(__this, L_21, L_22, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ConcurrentDictionary_2_ToArray_m3BBAB4587582F5F1337AC5B47138B233DCE05611_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* V_4 = NULL;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005a:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_m0F2C015E8701256B786281D8D29B75868171C705(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_mEEA5D51FFF0AE48412FCF37B5C8954A5DEE8C9D6(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
V_1 = 0;
|
|
V_3 = 0;
|
|
goto IL_0028_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
int32_t L_1 = V_1;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_2 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_2);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = L_2->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_4 = V_3;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
if (((int64_t)L_1 + (int64_t)L_6 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_1 + (int64_t)L_6 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_1, L_6));
|
|
int32_t L_7 = V_3;
|
|
if (((int64_t)L_7 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_7 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0028_1:
|
|
{
|
|
int32_t L_8 = V_3;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_9 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_9);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = L_9->____locks;
|
|
NullCheck(L_10);
|
|
if ((((int32_t)L_8) < ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = V_1;
|
|
if (L_11)
|
|
{
|
|
goto IL_0046_1;
|
|
}
|
|
}
|
|
{
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_12;
|
|
L_12 = Array_Empty_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_m2D55A4A51DA7B1571C2722D1B9ADDBBA8C6EC441_inline(il2cpp_rgctx_method(method->klass->rgctx_data, 47));
|
|
V_4 = L_12;
|
|
goto IL_0063;
|
|
}
|
|
|
|
IL_0046_1:
|
|
{
|
|
int32_t L_13 = V_1;
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_14 = (KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67*)(KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 48), (uint32_t)L_13);
|
|
V_2 = L_14;
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_15 = V_2;
|
|
ConcurrentDictionary_2_CopyToPairs_mF6358833C6BB17A51A6C91CC8C34A019711D429E(__this, L_15, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_16 = V_2;
|
|
V_4 = L_16;
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_17 = V_4;
|
|
return L_17;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToPairs_mF6358833C6BB17A51A6C91CC8C34A019711D429E_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* V_2 = NULL;
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_0);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_1 = L_0->____buckets;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_2 = L_5;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_6 = ___0_array;
|
|
int32_t L_7 = ___1_index;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_8 = V_2;
|
|
NullCheck(L_8);
|
|
RuntimeObject* L_9 = L_8->____key;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_11 = L_10->____value;
|
|
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
KeyValuePair_2__ctor_m0D5C3E0BE2D37252D3F4E0F0EA9A13C9458D4950((&L_12), L_9, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230)L_12);
|
|
int32_t L_13 = ___1_index;
|
|
___1_index = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_14 = V_2;
|
|
NullCheck(L_14);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_15 = L_14->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_15;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_16 = V_2;
|
|
if (L_16)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
int32_t L_18 = V_1;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_19 = V_0;
|
|
NullCheck(L_19);
|
|
if ((((int32_t)L_18) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToEntries_m86A84943282DF9A9DE1BEFBE06636986BB4326B3_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* V_2 = NULL;
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_0);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_1 = L_0->____buckets;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_2 = L_5;
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* L_6 = ___0_array;
|
|
int32_t L_7 = ___1_index;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_8 = V_2;
|
|
NullCheck(L_8);
|
|
RuntimeObject* L_9 = L_8->____key;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_11 = L_10->____value;
|
|
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
DictionaryEntry__ctor_m2768353E53A75C4860E34B37DAF1342120C5D1EA((&L_12), L_9, L_11, NULL);
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB)L_12);
|
|
int32_t L_13 = ___1_index;
|
|
___1_index = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_14 = V_2;
|
|
NullCheck(L_14);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_15 = L_14->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_15;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_16 = V_2;
|
|
if (L_16)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
int32_t L_18 = V_1;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_19 = V_0;
|
|
NullCheck(L_19);
|
|
if ((((int32_t)L_18) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToObjects_m8F7F1238D5B978CFEFD2C8F21CA8EBB7F93DEF72_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* V_2 = NULL;
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_0);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_1 = L_0->____buckets;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_2 = L_5;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___0_array;
|
|
int32_t L_7 = ___1_index;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_8 = V_2;
|
|
NullCheck(L_8);
|
|
RuntimeObject* L_9 = L_8->____key;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_11 = L_10->____value;
|
|
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
KeyValuePair_2__ctor_m0D5C3E0BE2D37252D3F4E0F0EA9A13C9458D4950((&L_12), L_9, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 49));
|
|
KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 L_13 = L_12;
|
|
RuntimeObject* L_14 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9), &L_13);
|
|
NullCheck(L_6);
|
|
ArrayElementTypeCheck (L_6, L_14);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_14);
|
|
int32_t L_15 = ___1_index;
|
|
___1_index = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_16 = V_2;
|
|
NullCheck(L_16);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_17 = L_16->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_17;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_18 = V_2;
|
|
if (L_18)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
int32_t L_20 = V_1;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_21 = V_0;
|
|
NullCheck(L_21);
|
|
if ((((int32_t)L_20) < ((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_GetEnumerator_m12EC3080C7512F05099338965FD8626ACB343320_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
U3CGetEnumeratorU3Ed__35_tFBB72033DD97EBEE1D1AB495DD3A0C1827242215* L_0 = (U3CGetEnumeratorU3Ed__35_tFBB72033DD97EBEE1D1AB495DD3A0C1827242215*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 50));
|
|
U3CGetEnumeratorU3Ed__35__ctor_m081A1FE89C23793EF327B27268262718EDD11462(L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
|
|
U3CGetEnumeratorU3Ed__35_tFBB72033DD97EBEE1D1AB495DD3A0C1827242215* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
L_1->___U3CU3E4__this = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this), (void*)__this);
|
|
return (RuntimeObject*)L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryAddInternal_m62921F1BBA26758C8E118413653422214D054B05_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, int32_t ___1_hashcode, RuntimeObject* ___2_value, bool ___3_updateIfExists, bool ___4_acquireLock, RuntimeObject** ___5_resultingValue, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* V_2 = NULL;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* V_5 = NULL;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* V_6 = NULL;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* V_7 = NULL;
|
|
bool V_8 = false;
|
|
|
|
IL_0000:
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_0;
|
|
int32_t L_1 = ___1_hashcode;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_2 = V_2;
|
|
NullCheck(L_2);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_3 = L_2->____buckets;
|
|
NullCheck(L_3);
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_4 = V_2;
|
|
NullCheck(L_4);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_4->____locks;
|
|
NullCheck(L_5);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_GetBucketAndLockNo_m45E3479E1AACFE4F39CD86B8CC6C49E8AD6507A1(L_1, (&V_0), (&V_1), ((int32_t)(((RuntimeArray*)L_3)->max_length)), ((int32_t)(((RuntimeArray*)L_5)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
V_3 = (bool)0;
|
|
V_4 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_014e:
|
|
{
|
|
{
|
|
bool L_6 = V_4;
|
|
if (!L_6)
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
}
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_7 = V_2;
|
|
NullCheck(L_7);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = L_7->____locks;
|
|
int32_t L_9 = V_1;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
RuntimeObject* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_11, NULL);
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
bool L_12 = ___4_acquireLock;
|
|
if (!L_12)
|
|
{
|
|
goto IL_003b_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_13 = V_2;
|
|
NullCheck(L_13);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = L_13->____locks;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
RuntimeObject* L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_17, (&V_4), NULL);
|
|
}
|
|
|
|
IL_003b_1:
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_18 = V_2;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_19 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((((RuntimeObject*)(Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6*)L_18) == ((RuntimeObject*)(Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6*)L_19)))
|
|
{
|
|
goto IL_0048_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0000;
|
|
}
|
|
|
|
IL_0048_1:
|
|
{
|
|
V_5 = (Node_t821211F0535E80E80FDC8FFB600F681E98286BF0*)NULL;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_20 = V_2;
|
|
NullCheck(L_20);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_21 = L_20->____buckets;
|
|
int32_t L_22 = V_0;
|
|
NullCheck(L_21);
|
|
int32_t L_23 = L_22;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
|
|
V_6 = L_24;
|
|
goto IL_00fd_1;
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
int32_t L_25 = ___1_hashcode;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_26 = V_6;
|
|
NullCheck(L_26);
|
|
int32_t L_27 = L_26->____hashcode;
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)L_27))))
|
|
{
|
|
goto IL_00ee_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_28 = __this->____comparer;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_29 = V_6;
|
|
NullCheck(L_29);
|
|
RuntimeObject* L_30 = L_29->____key;
|
|
RuntimeObject* L_31 = ___0_key;
|
|
NullCheck(L_28);
|
|
bool L_32;
|
|
L_32 = InterfaceFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_28, L_30, L_31);
|
|
if (!L_32)
|
|
{
|
|
goto IL_00ee_1;
|
|
}
|
|
}
|
|
{
|
|
bool L_33 = ___3_updateIfExists;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00d8_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
bool L_34 = ((ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_isValueWriteAtomic;
|
|
if (!L_34)
|
|
{
|
|
goto IL_0091_1;
|
|
}
|
|
}
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_35 = V_6;
|
|
RuntimeObject* L_36 = ___2_value;
|
|
NullCheck(L_35);
|
|
L_35->____value = L_36;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_35->____value), (void*)L_36);
|
|
goto IL_00ce_1;
|
|
}
|
|
|
|
IL_0091_1:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_37 = V_6;
|
|
NullCheck(L_37);
|
|
RuntimeObject* L_38 = L_37->____key;
|
|
RuntimeObject* L_39 = ___2_value;
|
|
int32_t L_40 = ___1_hashcode;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_41 = V_6;
|
|
NullCheck(L_41);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_42 = L_41->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_43 = (Node_t821211F0535E80E80FDC8FFB600F681E98286BF0*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 31));
|
|
Node__ctor_m653DF0B15E45A27457D589067D641C5EFC97D2CB(L_43, L_38, L_39, L_40, L_42, il2cpp_rgctx_method(method->klass->rgctx_data, 52));
|
|
V_7 = L_43;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_44 = V_5;
|
|
if (L_44)
|
|
{
|
|
goto IL_00c3_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_45 = V_2;
|
|
NullCheck(L_45);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_46 = L_45->____buckets;
|
|
int32_t L_47 = V_0;
|
|
NullCheck(L_46);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_48 = V_7;
|
|
VolatileWrite((Node_t821211F0535E80E80FDC8FFB600F681E98286BF0**)((L_46)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_47))), (Node_t821211F0535E80E80FDC8FFB600F681E98286BF0*)L_48);
|
|
goto IL_00ce_1;
|
|
}
|
|
|
|
IL_00c3_1:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_49 = V_5;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_50 = V_7;
|
|
NullCheck(L_49);
|
|
il2cpp_codegen_memory_barrier();
|
|
L_49->____next = L_50;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_49->____next), (void*)L_50);
|
|
}
|
|
|
|
IL_00ce_1:
|
|
{
|
|
RuntimeObject** L_51 = ___5_resultingValue;
|
|
RuntimeObject* L_52 = ___2_value;
|
|
*(RuntimeObject**)L_51 = L_52;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_51, (void*)L_52);
|
|
goto IL_00e6_1;
|
|
}
|
|
|
|
IL_00d8_1:
|
|
{
|
|
RuntimeObject** L_53 = ___5_resultingValue;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_54 = V_6;
|
|
NullCheck(L_54);
|
|
RuntimeObject* L_55 = L_54->____value;
|
|
*(RuntimeObject**)L_53 = L_55;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_53, (void*)L_55);
|
|
}
|
|
|
|
IL_00e6_1:
|
|
{
|
|
V_8 = (bool)0;
|
|
goto IL_0174;
|
|
}
|
|
|
|
IL_00ee_1:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_56 = V_6;
|
|
V_5 = L_56;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_57 = V_6;
|
|
NullCheck(L_57);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_58 = L_57->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_6 = L_58;
|
|
}
|
|
|
|
IL_00fd_1:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_59 = V_6;
|
|
if (L_59)
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_60 = V_2;
|
|
NullCheck(L_60);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_61 = L_60->____buckets;
|
|
int32_t L_62 = V_0;
|
|
NullCheck(L_61);
|
|
RuntimeObject* L_63 = ___0_key;
|
|
RuntimeObject* L_64 = ___2_value;
|
|
int32_t L_65 = ___1_hashcode;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_66 = V_2;
|
|
NullCheck(L_66);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_67 = L_66->____buckets;
|
|
int32_t L_68 = V_0;
|
|
NullCheck(L_67);
|
|
int32_t L_69 = L_68;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_70 = (L_67)->GetAt(static_cast<il2cpp_array_size_t>(L_69));
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_71 = (Node_t821211F0535E80E80FDC8FFB600F681E98286BF0*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 31));
|
|
Node__ctor_m653DF0B15E45A27457D589067D641C5EFC97D2CB(L_71, L_63, L_64, L_65, L_70, il2cpp_rgctx_method(method->klass->rgctx_data, 52));
|
|
VolatileWrite((Node_t821211F0535E80E80FDC8FFB600F681E98286BF0**)((L_61)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_62))), (Node_t821211F0535E80E80FDC8FFB600F681E98286BF0*)L_71);
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_72 = V_2;
|
|
NullCheck(L_72);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_73 = L_72->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_74 = V_1;
|
|
NullCheck(L_73);
|
|
int32_t* L_75 = ((L_73)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_74)));
|
|
int32_t L_76 = *((int32_t*)L_75);
|
|
if (((int64_t)L_76 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_76 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
*((int32_t*)L_75) = (int32_t)((int32_t)il2cpp_codegen_add(L_76, 1));
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_77 = V_2;
|
|
NullCheck(L_77);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_78 = L_77->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_79 = V_1;
|
|
NullCheck(L_78);
|
|
int32_t L_80 = L_79;
|
|
int32_t L_81 = (L_78)->GetAt(static_cast<il2cpp_array_size_t>(L_80));
|
|
int32_t L_82 = __this->____budget;
|
|
if ((((int32_t)L_81) <= ((int32_t)L_82)))
|
|
{
|
|
goto IL_014c_1;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)1;
|
|
}
|
|
|
|
IL_014c_1:
|
|
{
|
|
goto IL_0160;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0160:
|
|
{
|
|
bool L_83 = V_3;
|
|
if (!L_83)
|
|
{
|
|
goto IL_016a;
|
|
}
|
|
}
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_84 = V_2;
|
|
ConcurrentDictionary_2_GrowTable_mA69966B4AFC2B973D73A66853B8821CBF7B6DE6E(__this, L_84, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
|
|
}
|
|
|
|
IL_016a:
|
|
{
|
|
RuntimeObject** L_85 = ___5_resultingValue;
|
|
RuntimeObject* L_86 = ___2_value;
|
|
*(RuntimeObject**)L_85 = L_86;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_85, (void*)L_86);
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0174:
|
|
{
|
|
bool L_87 = V_8;
|
|
return L_87;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_get_Item_m138F439DD4E493B83DC1DED6C41C989C79615A22_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
bool L_1;
|
|
L_1 = ConcurrentDictionary_2_TryGetValue_mE794BBB2811B9244CF8ECB11994F70DEB6BEFDF7(__this, L_0, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
if (L_1)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_key;
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNotFoundException_m41CDF9614DAC667AD5F3C68C636E604D33ACADD3(L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 54));
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_set_Item_m95DD60ECF2EBCA55F2EC3B0AC122FE0C0D7D4E39_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
RuntimeObject* L_2 = __this->____comparer;
|
|
RuntimeObject* L_3 = ___0_key;
|
|
NullCheck(L_2);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_2, L_3);
|
|
RuntimeObject* L_5 = ___1_value;
|
|
bool L_6;
|
|
L_6 = ConcurrentDictionary_2_TryAddInternal_m62921F1BBA26758C8E118413653422214D054B05(__this, L_1, L_4, L_5, (bool)1, (bool)1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ThrowKeyNotFoundException_m41CDF9614DAC667AD5F3C68C636E604D33ACADD3_gshared (RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
NullCheck(L_0);
|
|
String_t* L_1;
|
|
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_0);
|
|
String_t* L_2;
|
|
L_2 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC524653D78C03BE4033DDC43C45B67FFB841D141)), (RuntimeObject*)L_1, NULL);
|
|
KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E* L_3 = (KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E_il2cpp_TypeInfo_var)));
|
|
KeyNotFoundException__ctor_mBD1D75B73DD5D7C6C72E4F7A021778837B6F2C6B(L_3, L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_0 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_get_Count_m34CFAB1541BD7EF7BEF4E31BD9557787736C24FC_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0013:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_m0F2C015E8701256B786281D8D29B75868171C705(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_mEEA5D51FFF0AE48412FCF37B5C8954A5DEE8C9D6(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
int32_t L_1;
|
|
L_1 = ConcurrentDictionary_2_GetCountInternal_m27C98C3E7DD93340C1E785A2AB447302EB908792(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 55));
|
|
V_1 = L_1;
|
|
goto IL_001c;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t L_2 = V_1;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_GetCountInternal_m27C98C3E7DD93340C1E785A2AB447302EB908792_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_1 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = L_1->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_5));
|
|
int32_t L_6 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_7 = V_1;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_8 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_8);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = L_8->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_9);
|
|
if ((((int32_t)L_7) < ((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_GetOrAdd_mF8E3897F8089492DC23AF0FE945A15B5C2499B00_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, Func_2_tACBF5A1656250800CE861707354491F0611F6624* ___1_valueFactory, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_1 = ___1_valueFactory;
|
|
if (L_1)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEF68BB0CB45867DA95163C2C6A4B0677DCE80DCF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
RuntimeObject* L_3 = __this->____comparer;
|
|
RuntimeObject* L_4 = ___0_key;
|
|
NullCheck(L_3);
|
|
int32_t L_5;
|
|
L_5 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_3, L_4);
|
|
V_0 = L_5;
|
|
RuntimeObject* L_6 = ___0_key;
|
|
int32_t L_7 = V_0;
|
|
bool L_8;
|
|
L_8 = ConcurrentDictionary_2_TryGetValueInternal_m6652F2101F8A95B357BD0EF5FF6CA6EF9FFAB4E6(__this, L_6, L_7, (&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
if (L_8)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_9 = ___0_key;
|
|
int32_t L_10 = V_0;
|
|
Func_2_tACBF5A1656250800CE861707354491F0611F6624* L_11 = ___1_valueFactory;
|
|
RuntimeObject* L_12 = ___0_key;
|
|
NullCheck(L_11);
|
|
RuntimeObject* L_13;
|
|
L_13 = Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_inline(L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 57));
|
|
bool L_14;
|
|
L_14 = ConcurrentDictionary_2_TryAddInternal_m62921F1BBA26758C8E118413653422214D054B05(__this, L_9, L_10, L_13, (bool)0, (bool)1, (&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
RuntimeObject* L_15 = V_1;
|
|
return L_15;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_GetOrAdd_m0AF39540FC5F187BBC40C0A4B668FD04F301783C_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_1 = __this->____comparer;
|
|
RuntimeObject* L_2 = ___0_key;
|
|
NullCheck(L_1);
|
|
int32_t L_3;
|
|
L_3 = InterfaceFuncInvoker1< int32_t, RuntimeObject* >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_1, L_2);
|
|
V_0 = L_3;
|
|
RuntimeObject* L_4 = ___0_key;
|
|
int32_t L_5 = V_0;
|
|
bool L_6;
|
|
L_6 = ConcurrentDictionary_2_TryGetValueInternal_m6652F2101F8A95B357BD0EF5FF6CA6EF9FFAB4E6(__this, L_4, L_5, (&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
if (L_6)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_7 = ___0_key;
|
|
int32_t L_8 = V_0;
|
|
RuntimeObject* L_9 = ___1_value;
|
|
bool L_10;
|
|
L_10 = ConcurrentDictionary_2_TryAddInternal_m62921F1BBA26758C8E118413653422214D054B05(__this, L_7, L_8, L_9, (bool)0, (bool)1, (&V_1), il2cpp_rgctx_method(method->klass->rgctx_data, 18));
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeObject* L_11 = V_1;
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_Generic_IDictionaryU3CTKeyU2CTValueU3E_Add_mF6976F8BCC6D517DCF6845A41E36CD5977CC77BB_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
RuntimeObject* L_1 = ___1_value;
|
|
bool L_2;
|
|
L_2 = ConcurrentDictionary_2_TryAdd_mA7D07DAB0E4F228BEDBEBA3BEA124A7C839B0DFC(__this, L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 58));
|
|
if (L_2)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC38D57307791EED2AD28D35927B9E90B23E6281D)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_Generic_IDictionaryU3CTKeyU2CTValueU3E_Remove_m7A3595601FD5C14B36276E7DC69BE87EDC2363F4_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
bool L_1;
|
|
L_1 = ConcurrentDictionary_2_TryRemove_m24DC33BB549CD9414E0782A591303A484D2BA255(__this, L_0, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 59));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_get_Keys_mB8ED8F81B902DBDBB2324D60134274D1C2E6A4D4_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetKeys_m88788E15E6643C73CCEBECACE48FE70A95BE7F79(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 60));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_Generic_IReadOnlyDictionaryU3CTKeyU2CTValueU3E_get_Keys_m2DF30B3166B5B18552875344C39631189F1EBD96_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetKeys_m88788E15E6643C73CCEBECACE48FE70A95BE7F79(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 60));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_get_Values_m53F5365206C49EF5FD2E74C06F3E7F945CC28946_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetValues_m3081AC59E79522BDBD904B8E83BD71AFCCB888F7(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 64));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_Generic_IReadOnlyDictionaryU3CTKeyU2CTValueU3E_get_Values_mBA807D949890DD659659654AECA7EC03873B251D_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetValues_m3081AC59E79522BDBD904B8E83BD71AFCCB888F7(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 64));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_m3F495E74ED744784C38DFAE96A1158B10AB0657B_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ___0_keyValuePair, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
RuntimeObject* L_1;
|
|
L_1 = KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
NullCheck((RuntimeObject*)__this);
|
|
InterfaceActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 68), (RuntimeObject*)__this, L_0, L_1);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_mE4498174D58ACCF6806F32D9EF9049B1C95565A2_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ___0_keyValuePair, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
bool L_1;
|
|
L_1 = ConcurrentDictionary_2_TryGetValue_mE794BBB2811B9244CF8ECB11994F70DEB6BEFDF7(__this, L_0, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
if (L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_2;
|
|
L_2 = EqualityComparer_1_get_Default_mA2AD755281D23F496A2579884B39E30C13C208B3_inline(il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
RuntimeObject* L_3 = V_0;
|
|
RuntimeObject* L_4;
|
|
L_4 = KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
NullCheck(L_2);
|
|
bool L_5;
|
|
L_5 = VirtualFuncInvoker2< bool, RuntimeObject*, RuntimeObject* >::Invoke(8, L_2, L_3, L_4);
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_m6CB59AD29C026012E67F236014ED2A519FAC8244_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m86EB252EDB136EC13D587695AB17BB95466A5542_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230 ___0_keyValuePair, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
if (L_0)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
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_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral561DA6E332E7EF45E52D96B07EC786D85C2955BE)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral020F27A067D9C2A1BC9628BCE378DE63A6F2B5BE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
RuntimeObject* L_2;
|
|
L_2 = KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
RuntimeObject* L_3;
|
|
L_3 = KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_inline((&___0_keyValuePair), il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
bool L_4;
|
|
L_4 = ConcurrentDictionary_2_TryRemoveInternal_mECC197E0B75D875C446D3D53E65B37E9BC72B162(__this, L_2, (&V_0), (bool)1, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 29));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IEnumerable_GetEnumerator_m34939796044A778DE9D27669423FD3BF15D1E305_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetEnumerator_m12EC3080C7512F05099338965FD8626ACB343320(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 70));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_IDictionary_Add_mF8F580AEFE3D857A7A3C666FFFA4A536B398420B_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFD8CE285C77CDFBCDCBA338A795AFF019E6C3B66)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
RuntimeObject* L_3 = ___1_value;
|
|
V_0 = ((RuntimeObject*)Castclass((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 17)));
|
|
goto IL_0031;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0025;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0025:
|
|
{
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_4 = ((InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*));;
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_5 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral20D029102A70CD96274496928ED59E8B9C014BBA)), NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, method);
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
RuntimeObject* L_6 = ___0_key;
|
|
RuntimeObject* L_7 = V_0;
|
|
NullCheck((RuntimeObject*)__this);
|
|
InterfaceActionInvoker2< RuntimeObject*, RuntimeObject* >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 68), (RuntimeObject*)__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_6, il2cpp_rgctx_data(method->klass->rgctx_data, 12))), L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_IDictionary_Contains_mBAAC2DC44FFA845857D4A250F445D7E1DAEFD5CE_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_key;
|
|
bool L_3;
|
|
L_3 = ConcurrentDictionary_2_ContainsKey_m9BDE52D83802C8E05ED223C1864017FB19B43DBC(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 12))), il2cpp_rgctx_method(method->klass->rgctx_data, 71));
|
|
return L_3;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IDictionary_GetEnumerator_m9E75CCB2C8002431A3E3DB6820840C03740F8727_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DictionaryEnumerator_tBF822449C5FD8462D9DB8BF961E29F69C2F913A9* L_0 = (DictionaryEnumerator_tBF822449C5FD8462D9DB8BF961E29F69C2F913A9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 72));
|
|
DictionaryEnumerator__ctor_mED6D481F16E8597DF1F8FD3F1A173ED8F0D4D8E9(L_0, __this, il2cpp_rgctx_method(method->klass->rgctx_data, 73));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_IDictionary_get_IsFixedSize_m47875E3F6F48A909B97283D4C773247D8316B170_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_IDictionary_get_IsReadOnly_m482265287D8D32F89663DB4466E3E5B83D1A7EEA_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IDictionary_get_Keys_m54F67026BBAD544F3FE149C7C066ABE84F0AC029_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetKeys_m88788E15E6643C73CCEBECACE48FE70A95BE7F79(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 60));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_IDictionary_Remove_m3175B8D17474879C2BA4AA38D3819EBD1F1E9BE4_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_key;
|
|
bool L_3;
|
|
L_3 = ConcurrentDictionary_2_TryRemove_m24DC33BB549CD9414E0782A591303A484D2BA255(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 12))), (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 59));
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IDictionary_get_Values_mC54FB4E5BD29D1193ABE484E1A11B55FC46DDE1C_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_0;
|
|
L_0 = ConcurrentDictionary_2_GetValues_m3081AC59E79522BDBD904B8E83BD71AFCCB888F7(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 64));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IDictionary_get_Item_mD1117CF62C6004675FB0F2CEBE5A89736BA60938_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_key;
|
|
bool L_3;
|
|
L_3 = ConcurrentDictionary_2_TryGetValue_mE794BBB2811B9244CF8ECB11994F70DEB6BEFDF7(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 12))), (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 28));
|
|
if (!L_3)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
return NULL;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_IDictionary_set_Item_m813D47ADE3220DED5ABFAC54D8D035A8789E8D90_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_ThrowKeyNullException_mA90E56C9639741D910798981D5291A2CEBD035C6(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFD8CE285C77CDFBCDCBA338A795AFF019E6C3B66)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
RuntimeObject* L_3 = ___1_value;
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 17))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral20D029102A70CD96274496928ED59E8B9C014BBA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, method);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
RuntimeObject* L_5 = ___0_key;
|
|
RuntimeObject* L_6 = ___1_value;
|
|
ConcurrentDictionary_2_set_Item_m95DD60ECF2EBCA55F2EC3B0AC122FE0C0D7D4E39(__this, ((RuntimeObject*)Castclass((RuntimeObject*)L_5, il2cpp_rgctx_data(method->klass->rgctx_data, 12))), ((RuntimeObject*)Castclass((RuntimeObject*)L_6, il2cpp_rgctx_data(method->klass->rgctx_data, 17))), il2cpp_rgctx_method(method->klass->rgctx_data, 74));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_ICollection_CopyTo_mD08000596CB07898AF7DCA2F3D0231E6E0B6C6B9_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, RuntimeArray* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* V_3 = NULL;
|
|
DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* V_4 = NULL;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
{
|
|
RuntimeArray* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
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:
|
|
{
|
|
int32_t L_2 = ___1_index;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD0D86565E49BD212E7AC64BABD33BE3668A4C45B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00cc:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_m0F2C015E8701256B786281D8D29B75868171C705(__this, 0, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_mEEA5D51FFF0AE48412FCF37B5C8954A5DEE8C9D6(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_5 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_1 = L_5;
|
|
V_2 = 0;
|
|
V_6 = 0;
|
|
goto IL_0050_1;
|
|
}
|
|
|
|
IL_003c_1:
|
|
{
|
|
int32_t L_6 = V_2;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = L_7->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_9 = V_6;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_6, L_11));
|
|
int32_t L_12 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_0050_1:
|
|
{
|
|
int32_t L_13 = V_6;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_14 = V_1;
|
|
NullCheck(L_14);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = L_14->____locks;
|
|
NullCheck(L_15);
|
|
if ((((int32_t)L_13) >= ((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))))
|
|
{
|
|
goto IL_0060_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_2;
|
|
if ((((int32_t)L_16) >= ((int32_t)0)))
|
|
{
|
|
goto IL_003c_1;
|
|
}
|
|
}
|
|
|
|
IL_0060_1:
|
|
{
|
|
RuntimeArray* L_17 = ___0_array;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_17, NULL);
|
|
int32_t L_19 = V_2;
|
|
int32_t L_20 = ___1_index;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_18, L_19))) < ((int32_t)L_20)))
|
|
{
|
|
goto IL_006f_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = V_2;
|
|
if ((((int32_t)L_21) >= ((int32_t)0)))
|
|
{
|
|
goto IL_007a_1;
|
|
}
|
|
}
|
|
|
|
IL_006f_1:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_22 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral672E993A9AD93822B712B165C6987759C6DED80B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, method);
|
|
}
|
|
|
|
IL_007a_1:
|
|
{
|
|
RuntimeArray* L_23 = ___0_array;
|
|
V_3 = ((KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67*)IsInst((RuntimeObject*)L_23, il2cpp_rgctx_data(method->klass->rgctx_data, 45)));
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_24 = V_3;
|
|
if (!L_24)
|
|
{
|
|
goto IL_008e_1;
|
|
}
|
|
}
|
|
{
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_25 = V_3;
|
|
int32_t L_26 = ___1_index;
|
|
ConcurrentDictionary_2_CopyToPairs_mF6358833C6BB17A51A6C91CC8C34A019711D429E(__this, L_25, L_26, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_008e_1:
|
|
{
|
|
RuntimeArray* L_27 = ___0_array;
|
|
V_4 = ((DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533*)IsInst((RuntimeObject*)L_27, DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533_il2cpp_TypeInfo_var));
|
|
DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* L_28 = V_4;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00a5_1;
|
|
}
|
|
}
|
|
{
|
|
DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* L_29 = V_4;
|
|
int32_t L_30 = ___1_index;
|
|
ConcurrentDictionary_2_CopyToEntries_m86A84943282DF9A9DE1BEFBE06636986BB4326B3(__this, L_29, L_30, il2cpp_rgctx_method(method->klass->rgctx_data, 75));
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_00a5_1:
|
|
{
|
|
RuntimeArray* L_31 = ___0_array;
|
|
V_5 = ((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)IsInst((RuntimeObject*)L_31, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_32 = V_5;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00bc_1;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_33 = V_5;
|
|
int32_t L_34 = ___1_index;
|
|
ConcurrentDictionary_2_CopyToObjects_m8F7F1238D5B978CFEFD2C8F21CA8EBB7F93DEF72(__this, L_33, L_34, il2cpp_rgctx_method(method->klass->rgctx_data, 76));
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_00bc_1:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_35 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_35, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA05D9DA01CB9AD0AA6BE899FE1E39018B72923DB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, method);
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_ICollection_get_IsSynchronized_mD5B23316B4CAFD04DF7306D22216951E15873401_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_ICollection_get_SyncRoot_mAB551351AC68DED87F1C8197711B2C8EDACEE5F3_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4CC02BED909F9630E59013E4804C6C269FF8370A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_GrowTable_mA69966B4AFC2B973D73A66853B8821CBF7B6DE6E_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* ___0_tables, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_4 = NULL;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* V_5 = NULL;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_6 = NULL;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
int32_t V_9 = 0;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* V_10 = NULL;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_01fd:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_m0F2C015E8701256B786281D8D29B75868171C705(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
ConcurrentDictionary_2_AcquireLocks_m450A81B0E0C12A899C2D57CA02B18A394E00846A(__this, 0, 1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 77));
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_1 = ___0_tables;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_2 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((((RuntimeObject*)(Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6*)L_1) == ((RuntimeObject*)(Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6*)L_2)))
|
|
{
|
|
goto IL_001c_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_001c_1:
|
|
{
|
|
V_1 = ((int64_t)0);
|
|
V_7 = 0;
|
|
goto IL_0039_1;
|
|
}
|
|
|
|
IL_0024_1:
|
|
{
|
|
int64_t L_3 = V_1;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_4 = ___0_tables;
|
|
NullCheck(L_4);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = L_4->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_6 = V_7;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
int32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
V_1 = ((int64_t)il2cpp_codegen_add(L_3, ((int64_t)L_8)));
|
|
int32_t L_9 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_9, 1));
|
|
}
|
|
|
|
IL_0039_1:
|
|
{
|
|
int32_t L_10 = V_7;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_11 = ___0_tables;
|
|
NullCheck(L_11);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = L_11->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_12);
|
|
if ((((int32_t)L_10) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
|
|
{
|
|
goto IL_0024_1;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_13 = V_1;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_14 = ___0_tables;
|
|
NullCheck(L_14);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_15 = L_14->____buckets;
|
|
NullCheck(L_15);
|
|
if ((((int64_t)L_13) >= ((int64_t)((int64_t)((int32_t)(((int32_t)(((RuntimeArray*)L_15)->max_length))/4))))))
|
|
{
|
|
goto IL_007c_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = __this->____budget;
|
|
__this->____budget = ((int32_t)il2cpp_codegen_multiply(2, L_16));
|
|
int32_t L_17 = __this->____budget;
|
|
if ((((int32_t)L_17) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0077_1;
|
|
}
|
|
}
|
|
{
|
|
__this->____budget = ((int32_t)2147483647LL);
|
|
}
|
|
|
|
IL_0077_1:
|
|
{
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_007c_1:
|
|
{
|
|
V_2 = 0;
|
|
V_3 = (bool)0;
|
|
}
|
|
try
|
|
{
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_18 = ___0_tables;
|
|
NullCheck(L_18);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_19 = L_18->____buckets;
|
|
NullCheck(L_19);
|
|
if (((int64_t)((int32_t)(((RuntimeArray*)L_19)->max_length)) * (int64_t)2 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)(((RuntimeArray*)L_19)->max_length)) * (int64_t)2 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
if (((int64_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_19)->max_length)), 2)) + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_19)->max_length)), 2)) + (int64_t)1 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
V_2 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_19)->max_length)), 2)), 1));
|
|
goto IL_0093_2;
|
|
}
|
|
|
|
IL_008f_2:
|
|
{
|
|
int32_t L_20 = V_2;
|
|
if (((int64_t)L_20 + (int64_t)2 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_20 + (int64_t)2 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_20, 2));
|
|
}
|
|
|
|
IL_0093_2:
|
|
{
|
|
int32_t L_21 = V_2;
|
|
if (!((int32_t)(L_21%3)))
|
|
{
|
|
goto IL_008f_2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_22 = V_2;
|
|
if (!((int32_t)(L_22%5)))
|
|
{
|
|
goto IL_008f_2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_23 = V_2;
|
|
if (!((int32_t)(L_23%7)))
|
|
{
|
|
goto IL_008f_2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_24 = V_2;
|
|
if ((((int32_t)L_24) <= ((int32_t)((int32_t)2146435071))))
|
|
{
|
|
goto IL_00ac_2;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)1;
|
|
}
|
|
|
|
IL_00ac_2:
|
|
{
|
|
goto IL_00b3_1;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00ae_1;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00ae_1:
|
|
{
|
|
OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_25 = ((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*));;
|
|
V_3 = (bool)1;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_00b3_1;
|
|
}
|
|
|
|
IL_00b3_1:
|
|
{
|
|
bool L_26 = V_3;
|
|
if (!L_26)
|
|
{
|
|
goto IL_00c7_1;
|
|
}
|
|
}
|
|
{
|
|
V_2 = ((int32_t)2146435071);
|
|
__this->____budget = ((int32_t)2147483647LL);
|
|
}
|
|
|
|
IL_00c7_1:
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_27 = ___0_tables;
|
|
NullCheck(L_27);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_28 = L_27->____locks;
|
|
NullCheck(L_28);
|
|
ConcurrentDictionary_2_AcquireLocks_m450A81B0E0C12A899C2D57CA02B18A394E00846A(__this, 1, ((int32_t)(((RuntimeArray*)L_28)->max_length)), (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 77));
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_29 = ___0_tables;
|
|
NullCheck(L_29);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_30 = L_29->____locks;
|
|
V_4 = L_30;
|
|
bool L_31 = __this->____growLockArray;
|
|
if (!L_31)
|
|
{
|
|
goto IL_0143_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_32 = ___0_tables;
|
|
NullCheck(L_32);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_33 = L_32->____locks;
|
|
NullCheck(L_33);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length))) >= ((int32_t)((int32_t)1024))))
|
|
{
|
|
goto IL_0143_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_34 = ___0_tables;
|
|
NullCheck(L_34);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_35 = L_34->____locks;
|
|
NullCheck(L_35);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_36 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_35)->max_length)), 2)));
|
|
V_4 = L_36;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_37 = ___0_tables;
|
|
NullCheck(L_37);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_38 = L_37->____locks;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_39 = V_4;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_40 = ___0_tables;
|
|
NullCheck(L_40);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_41 = L_40->____locks;
|
|
NullCheck(L_41);
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_38, 0, (RuntimeArray*)L_39, 0, ((int32_t)(((RuntimeArray*)L_41)->max_length)), NULL);
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_42 = ___0_tables;
|
|
NullCheck(L_42);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_43 = L_42->____locks;
|
|
NullCheck(L_43);
|
|
V_8 = ((int32_t)(((RuntimeArray*)L_43)->max_length));
|
|
goto IL_013b_1;
|
|
}
|
|
|
|
IL_012b_1:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_44 = V_4;
|
|
int32_t L_45 = V_8;
|
|
RuntimeObject* L_46 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_46, NULL);
|
|
NullCheck(L_44);
|
|
ArrayElementTypeCheck (L_44, L_46);
|
|
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(L_45), (RuntimeObject*)L_46);
|
|
int32_t L_47 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_47, 1));
|
|
}
|
|
|
|
IL_013b_1:
|
|
{
|
|
int32_t L_48 = V_8;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_49 = V_4;
|
|
NullCheck(L_49);
|
|
if ((((int32_t)L_48) < ((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length)))))
|
|
{
|
|
goto IL_012b_1;
|
|
}
|
|
}
|
|
|
|
IL_0143_1:
|
|
{
|
|
int32_t L_50 = V_2;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_51 = (NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76*)(NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 23), (uint32_t)L_50);
|
|
V_5 = L_51;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_52 = V_4;
|
|
NullCheck(L_52);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_53 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_52)->max_length)));
|
|
V_6 = L_53;
|
|
V_9 = 0;
|
|
goto IL_01c7_1;
|
|
}
|
|
|
|
IL_015b_1:
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_54 = ___0_tables;
|
|
NullCheck(L_54);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_55 = L_54->____buckets;
|
|
int32_t L_56 = V_9;
|
|
NullCheck(L_55);
|
|
int32_t L_57 = L_56;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_58 = (L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_57));
|
|
V_10 = L_58;
|
|
goto IL_01bd_1;
|
|
}
|
|
|
|
IL_0168_1:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_59 = V_10;
|
|
NullCheck(L_59);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_60 = L_59->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_61 = V_10;
|
|
NullCheck(L_61);
|
|
int32_t L_62 = L_61->____hashcode;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_63 = V_5;
|
|
NullCheck(L_63);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_64 = V_4;
|
|
NullCheck(L_64);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
ConcurrentDictionary_2_GetBucketAndLockNo_m45E3479E1AACFE4F39CD86B8CC6C49E8AD6507A1(L_62, (&V_11), (&V_12), ((int32_t)(((RuntimeArray*)L_63)->max_length)), ((int32_t)(((RuntimeArray*)L_64)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_65 = V_5;
|
|
int32_t L_66 = V_11;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_67 = V_10;
|
|
NullCheck(L_67);
|
|
RuntimeObject* L_68 = L_67->____key;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_69 = V_10;
|
|
NullCheck(L_69);
|
|
RuntimeObject* L_70 = L_69->____value;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_71 = V_10;
|
|
NullCheck(L_71);
|
|
int32_t L_72 = L_71->____hashcode;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_73 = V_5;
|
|
int32_t L_74 = V_11;
|
|
NullCheck(L_73);
|
|
int32_t L_75 = L_74;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_76 = (L_73)->GetAt(static_cast<il2cpp_array_size_t>(L_75));
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_77 = (Node_t821211F0535E80E80FDC8FFB600F681E98286BF0*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 31));
|
|
Node__ctor_m653DF0B15E45A27457D589067D641C5EFC97D2CB(L_77, L_68, L_70, L_72, L_76, il2cpp_rgctx_method(method->klass->rgctx_data, 52));
|
|
NullCheck(L_65);
|
|
(L_65)->SetAt(static_cast<il2cpp_array_size_t>(L_66), (Node_t821211F0535E80E80FDC8FFB600F681E98286BF0*)L_77);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_78 = V_6;
|
|
int32_t L_79 = V_12;
|
|
NullCheck(L_78);
|
|
int32_t* L_80 = ((L_78)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_79)));
|
|
int32_t L_81 = *((int32_t*)L_80);
|
|
if (((int64_t)L_81 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_81 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
*((int32_t*)L_80) = (int32_t)((int32_t)il2cpp_codegen_add(L_81, 1));
|
|
V_10 = L_60;
|
|
}
|
|
|
|
IL_01bd_1:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_82 = V_10;
|
|
if (L_82)
|
|
{
|
|
goto IL_0168_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_83 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_83, 1));
|
|
}
|
|
|
|
IL_01c7_1:
|
|
{
|
|
int32_t L_84 = V_9;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_85 = ___0_tables;
|
|
NullCheck(L_85);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_86 = L_85->____buckets;
|
|
NullCheck(L_86);
|
|
if ((((int32_t)L_84) < ((int32_t)((int32_t)(((RuntimeArray*)L_86)->max_length)))))
|
|
{
|
|
goto IL_015b_1;
|
|
}
|
|
}
|
|
{
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_87 = V_5;
|
|
NullCheck(L_87);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_88 = V_4;
|
|
NullCheck(L_88);
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_89;
|
|
L_89 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(1, ((int32_t)(((int32_t)(((RuntimeArray*)L_87)->max_length))/((int32_t)(((RuntimeArray*)L_88)->max_length)))), NULL);
|
|
__this->____budget = L_89;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_90 = V_5;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_91 = V_4;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_92 = V_6;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_93 = (Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 21));
|
|
Tables__ctor_m53DA34DE77197BE2E495B724556D3B9C5BB8B65E(L_93, L_90, L_91, L_92, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tables = L_93;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tables), (void*)L_93);
|
|
goto IL_0206;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0206:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_GetBucket_m9EB38A937BA93FB1FF25671CC62113967A829799_gshared (int32_t ___0_hashcode, int32_t ___1_bucketCount, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_hashcode;
|
|
int32_t L_1 = ___1_bucketCount;
|
|
return ((int32_t)(((int32_t)(L_0&((int32_t)2147483647LL)))%L_1));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_GetBucketAndLockNo_m45E3479E1AACFE4F39CD86B8CC6C49E8AD6507A1_gshared (int32_t ___0_hashcode, int32_t* ___1_bucketNo, int32_t* ___2_lockNo, int32_t ___3_bucketCount, int32_t ___4_lockCount, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t* L_0 = ___1_bucketNo;
|
|
int32_t L_1 = ___0_hashcode;
|
|
int32_t L_2 = ___3_bucketCount;
|
|
*((int32_t*)L_0) = (int32_t)((int32_t)(((int32_t)(L_1&((int32_t)2147483647LL)))%L_2));
|
|
int32_t* L_3 = ___2_lockNo;
|
|
int32_t* L_4 = ___1_bucketNo;
|
|
int32_t L_5 = *((int32_t*)L_4);
|
|
int32_t L_6 = ___4_lockCount;
|
|
*((int32_t*)L_3) = (int32_t)((int32_t)(L_5%L_6));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_get_DefaultConcurrencyLevel_m6D0A5B42819471D975E4CB0AE3867346D2A81383_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlatformHelper_t5E497382616B62F0B318E53D098F90E22AB35722_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PlatformHelper_t5E497382616B62F0B318E53D098F90E22AB35722_il2cpp_TypeInfo_var);
|
|
int32_t L_0;
|
|
L_0 = PlatformHelper_get_ProcessorCount_m123AB465E201104882D03864A7C6E08F1A55F3F9(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_AcquireAllLocks_mEEA5D51FFF0AE48412FCF37B5C8954A5DEE8C9D6_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, int32_t* ___0_locksAcquired, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var);
|
|
CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999* L_0 = ((CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_StaticFields*)il2cpp_codegen_static_fields_for(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var))->___Log;
|
|
NullCheck((EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25*)L_0);
|
|
bool L_1;
|
|
L_1 = EventSource_IsEnabled_m0B2F63F81423D7832DC5526D0F3490C77CAB57A5((EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25*)L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var);
|
|
CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999* L_2 = ((CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_StaticFields*)il2cpp_codegen_static_fields_for(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var))->___Log;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_3 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_3);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_4 = L_3->____buckets;
|
|
NullCheck(L_4);
|
|
NullCheck(L_2);
|
|
CDSCollectionETWBCLProvider_ConcurrentDictionary_AcquiringAllLocks_mF33BBE9D19970C7F3C3DB3C0F6BCF16BEEC26EFA(L_2, ((int32_t)(((RuntimeArray*)L_4)->max_length)), NULL);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
int32_t* L_5 = ___0_locksAcquired;
|
|
ConcurrentDictionary_2_AcquireLocks_m450A81B0E0C12A899C2D57CA02B18A394E00846A(__this, 0, 1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 77));
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_6 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_6);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = L_6->____locks;
|
|
NullCheck(L_7);
|
|
int32_t* L_8 = ___0_locksAcquired;
|
|
ConcurrentDictionary_2_AcquireLocks_m450A81B0E0C12A899C2D57CA02B18A394E00846A(__this, 1, ((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 77));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_AcquireLocks_m450A81B0E0C12A899C2D57CA02B18A394E00846A_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, int32_t* ___2_locksAcquired, const RuntimeMethod* method)
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_0);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0->____locks;
|
|
V_0 = L_1;
|
|
int32_t L_2 = ___0_fromInclusive;
|
|
V_1 = L_2;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
V_2 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0020:
|
|
{
|
|
{
|
|
bool L_3 = V_2;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_4 = ___2_locksAcquired;
|
|
int32_t* L_5 = ___2_locksAcquired;
|
|
int32_t L_6 = *((int32_t*)L_5);
|
|
*((int32_t*)L_4) = (int32_t)((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = V_0;
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
RuntimeObject* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_10, (&V_2), NULL);
|
|
goto IL_002a;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
int32_t L_13 = ___1_toExclusive;
|
|
if ((((int32_t)L_12) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ReleaseLocks_m0F2C015E8701256B786281D8D29B75868171C705_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_fromInclusive;
|
|
V_0 = L_0;
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_1 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_1);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = L_1->____locks;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_5, NULL);
|
|
int32_t L_6 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
int32_t L_8 = ___1_toExclusive;
|
|
if ((((int32_t)L_7) < ((int32_t)L_8)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* ConcurrentDictionary_2_GetKeys_m88788E15E6643C73CCEBECACE48FE70A95BE7F79_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* V_3 = NULL;
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* V_4 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B2_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006e:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_m0F2C015E8701256B786281D8D29B75868171C705(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_mEEA5D51FFF0AE48412FCF37B5C8954A5DEE8C9D6(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
int32_t L_1;
|
|
L_1 = ConcurrentDictionary_2_GetCountInternal_m27C98C3E7DD93340C1E785A2AB447302EB908792(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 55));
|
|
int32_t L_2 = L_1;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
G_B3_0 = L_2;
|
|
goto IL_001a_1;
|
|
}
|
|
G_B2_0 = L_2;
|
|
}
|
|
{
|
|
OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* L_3 = (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var)));
|
|
OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951(L_3, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001a_1:
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_4 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 78));
|
|
List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428(L_4, G_B3_0, il2cpp_rgctx_method(method->klass->rgctx_data, 79));
|
|
V_1 = L_4;
|
|
V_2 = 0;
|
|
goto IL_0052_1;
|
|
}
|
|
|
|
IL_0024_1:
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_5 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_5);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_6 = L_5->____buckets;
|
|
int32_t L_7 = V_2;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
V_3 = L_9;
|
|
goto IL_004b_1;
|
|
}
|
|
|
|
IL_0036_1:
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_10 = V_1;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_11 = V_3;
|
|
NullCheck(L_11);
|
|
RuntimeObject* L_12 = L_11->____key;
|
|
NullCheck(L_10);
|
|
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_10, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 80));
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_13 = V_3;
|
|
NullCheck(L_13);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_14 = L_13->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_3 = L_14;
|
|
}
|
|
|
|
IL_004b_1:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_15 = V_3;
|
|
if (L_15)
|
|
{
|
|
goto IL_0036_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0052_1:
|
|
{
|
|
int32_t L_17 = V_2;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_18 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_18);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_19 = L_18->____buckets;
|
|
NullCheck(L_19);
|
|
if ((((int32_t)L_17) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))
|
|
{
|
|
goto IL_0024_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_20 = V_1;
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_21 = (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 61));
|
|
ReadOnlyCollection_1__ctor_mF2D2ACE0752C3B97343B72328D49200F45C14B65(L_21, (RuntimeObject*)L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 81));
|
|
V_4 = L_21;
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_22 = V_4;
|
|
return L_22;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* ConcurrentDictionary_2_GetValues_m3081AC59E79522BDBD904B8E83BD71AFCCB888F7_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* V_3 = NULL;
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* V_4 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B2_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006e:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
ConcurrentDictionary_2_ReleaseLocks_m0F2C015E8701256B786281D8D29B75868171C705(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
ConcurrentDictionary_2_AcquireAllLocks_mEEA5D51FFF0AE48412FCF37B5C8954A5DEE8C9D6(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
int32_t L_1;
|
|
L_1 = ConcurrentDictionary_2_GetCountInternal_m27C98C3E7DD93340C1E785A2AB447302EB908792(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 55));
|
|
int32_t L_2 = L_1;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
G_B3_0 = L_2;
|
|
goto IL_001a_1;
|
|
}
|
|
G_B2_0 = L_2;
|
|
}
|
|
{
|
|
OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* L_3 = (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var)));
|
|
OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951(L_3, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001a_1:
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_4 = (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 83));
|
|
List_1__ctor_m76CBBC3E2F0583F5AD30CE592CEA1225C06A0428(L_4, G_B3_0, il2cpp_rgctx_method(method->klass->rgctx_data, 84));
|
|
V_1 = L_4;
|
|
V_2 = 0;
|
|
goto IL_0052_1;
|
|
}
|
|
|
|
IL_0024_1:
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_5 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_5);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_6 = L_5->____buckets;
|
|
int32_t L_7 = V_2;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
V_3 = L_9;
|
|
goto IL_004b_1;
|
|
}
|
|
|
|
IL_0036_1:
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_10 = V_1;
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_11 = V_3;
|
|
NullCheck(L_11);
|
|
RuntimeObject* L_12 = L_11->____value;
|
|
NullCheck(L_10);
|
|
List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_inline(L_10, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 85));
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_13 = V_3;
|
|
NullCheck(L_13);
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_14 = L_13->____next;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_3 = L_14;
|
|
}
|
|
|
|
IL_004b_1:
|
|
{
|
|
Node_t821211F0535E80E80FDC8FFB600F681E98286BF0* L_15 = V_3;
|
|
if (L_15)
|
|
{
|
|
goto IL_0036_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0052_1:
|
|
{
|
|
int32_t L_17 = V_2;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_18 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_18);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_19 = L_18->____buckets;
|
|
NullCheck(L_19);
|
|
if ((((int32_t)L_17) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))
|
|
{
|
|
goto IL_0024_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* L_20 = V_1;
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_21 = (ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 65));
|
|
ReadOnlyCollection_1__ctor_mF2D2ACE0752C3B97343B72328D49200F45C14B65(L_21, (RuntimeObject*)L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 86));
|
|
V_4 = L_21;
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
ReadOnlyCollection_1_t5397DF0DB61D1090E7BBC89395CECB8D020CED92* L_22 = V_4;
|
|
return L_22;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_OnSerializing_m7A3667C23E7FE89C3E1B73B839543120680FECAB_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___0_context, const RuntimeMethod* method)
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* V_0 = NULL;
|
|
{
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_1;
|
|
L_1 = ConcurrentDictionary_2_ToArray_m3BBAB4587582F5F1337AC5B47138B233DCE05611(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 88));
|
|
__this->____serializationArray = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____serializationArray), (void*)L_1);
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_2->____locks;
|
|
NullCheck(L_3);
|
|
__this->____serializationConcurrencyLevel = ((int32_t)(((RuntimeArray*)L_3)->max_length));
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_5 = L_4->____buckets;
|
|
NullCheck(L_5);
|
|
__this->____serializationCapacity = ((int32_t)(((RuntimeArray*)L_5)->max_length));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_OnSerialized_m31228AA44F52649109EB0D0BF2AC23327451E256_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___0_context, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->____serializationArray = (KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____serializationArray), (void*)(KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_OnDeserialized_m71ADC01A62C65E3335F26779CB2D017BDE4179A8_gshared (ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF* __this, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___0_context, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* V_0 = NULL;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* V_1 = NULL;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_2 = NULL;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
{
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_0 = __this->____serializationArray;
|
|
V_0 = L_0;
|
|
int32_t L_1 = __this->____serializationCapacity;
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_2 = (NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76*)(NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 23), (uint32_t)L_1);
|
|
V_1 = L_2;
|
|
int32_t L_3 = __this->____serializationConcurrencyLevel;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_3);
|
|
V_2 = L_4;
|
|
int32_t L_5 = __this->____serializationConcurrencyLevel;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_5);
|
|
V_3 = L_6;
|
|
V_4 = 0;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = V_3;
|
|
int32_t L_8 = V_4;
|
|
RuntimeObject* L_9 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_9, NULL);
|
|
NullCheck(L_7);
|
|
ArrayElementTypeCheck (L_7, L_9);
|
|
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (RuntimeObject*)L_9);
|
|
int32_t L_10 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
int32_t L_11 = V_4;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = V_3;
|
|
NullCheck(L_12);
|
|
if ((((int32_t)L_11) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
NodeU5BU5D_t2D9C2B502AE419E91BEF20D4861A838720732B76* L_13 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = V_3;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = V_2;
|
|
Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6* L_16 = (Tables_t14D3B197594232ACFA76B87EB205EB3661F6EAA6*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 21));
|
|
Tables__ctor_m53DA34DE77197BE2E495B724556D3B9C5BB8B65E(L_16, L_13, L_14, L_15, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tables = L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tables), (void*)L_16);
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_17 = V_0;
|
|
ConcurrentDictionary_2_InitializeFromCollection_m8A9AFB3C35AF03B0D953EF7F62D2419FCCEAA0A6(__this, (RuntimeObject*)L_17, il2cpp_rgctx_method(method->klass->rgctx_data, 89));
|
|
__this->____serializationArray = (KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____serializationArray), (void*)(KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__cctor_m1C4E0895CB7ACB417B3B1E6735C6C9EEE029AC30_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0;
|
|
L_0 = ConcurrentDictionary_2_IsValueWriteAtomic_m92D50EA01ED33996745B57924CB025FD4A569F1B(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 90));
|
|
((ConcurrentDictionary_2_tF598E45B2A3ECB23FD311D829FB0AB32B1201ACF_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_isValueWriteAtomic = L_0;
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_IsValueWriteAtomic_m73B3152A5054C8CCE39DDD9701EE7939D4CCAD7F_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
V_0 = L_1;
|
|
Type_t* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = Type_get_IsValueType_m59AE2E0439DC06347B8D6B38548F3CBA54D38318(L_2, NULL);
|
|
if (L_3)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Type_t* L_4 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
int32_t L_5;
|
|
L_5 = Type_GetTypeCode_m2CE476933AF4B381D7A52F4343B70E9878FDF466(L_4, NULL);
|
|
V_1 = L_5;
|
|
int32_t L_6 = V_1;
|
|
switch (((int32_t)il2cpp_codegen_subtract((int32_t)L_6, 3)))
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_7;
|
|
L_7 = IntPtr_get_Size_m1FAAA59DA73D7E32BB1AB55DD92A90AFE3251DBE(NULL);
|
|
return (bool)((((int32_t)L_7) == ((int32_t)8))? 1 : 0);
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__ctor_m98B384EE9F320311B30C60598D7FEE8220A765D3_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 1)))(il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, bool, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(__this, L_0, ((int32_t)31), (bool)1, (RuntimeObject*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__ctor_m2D6D3AB210309E5FC0C270696B064E7F63B6732D_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, RuntimeObject* ___0_comparer, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 1)))(il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
RuntimeObject* L_1 = ___0_comparer;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, bool, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)))(__this, L_0, ((int32_t)31), (bool)1, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_InitializeFromCollection_mD655938CF27AF72CA2E5DE04DAC9D544F2B32F05_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_KeyValuePair_2_tD5CB06BF496878AA4AFA9D8ACE7541CA484F69C0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_8 = L_6;
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
const KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 L_5 = alloca(SizeOf_KeyValuePair_2_tD5CB06BF496878AA4AFA9D8ACE7541CA484F69C0);
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_0, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
RuntimeObject* V_1 = NULL;
|
|
KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 V_2 = alloca(SizeOf_KeyValuePair_2_tD5CB06BF496878AA4AFA9D8ACE7541CA484F69C0);
|
|
memset(V_2, 0, SizeOf_KeyValuePair_2_tD5CB06BF496878AA4AFA9D8ACE7541CA484F69C0);
|
|
{
|
|
RuntimeObject* L_0 = ___0_collection;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_1;
|
|
L_1 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_0);
|
|
V_1 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0064:
|
|
{
|
|
{
|
|
RuntimeObject* L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_1;
|
|
NullCheck((RuntimeObject*)L_3);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_3);
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
|
|
IL_0009_1:
|
|
{
|
|
RuntimeObject* L_4 = V_1;
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker1Invoker< KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 7), L_4, (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)L_5);
|
|
il2cpp_codegen_memcpy(V_2, L_5, SizeOf_KeyValuePair_2_tD5CB06BF496878AA4AFA9D8ACE7541CA484F69C0);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)), il2cpp_rgctx_method(method->klass->rgctx_data, 10), (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)V_2, (Il2CppFullySharedGenericAny*)L_6);
|
|
bool L_7 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12), L_6);
|
|
if (L_7)
|
|
{
|
|
goto IL_0023_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0023_1:
|
|
{
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)), il2cpp_rgctx_method(method->klass->rgctx_data, 10), (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)V_2, (Il2CppFullySharedGenericAny*)L_8);
|
|
RuntimeObject* L_9 = __this->____comparer;
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)), il2cpp_rgctx_method(method->klass->rgctx_data, 10), (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)V_2, (Il2CppFullySharedGenericAny*)L_10);
|
|
NullCheck(L_9);
|
|
int32_t L_11;
|
|
L_11 = InterfaceFuncInvoker1Invoker< int32_t, Il2CppFullySharedGenericAny >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_10: *(void**)L_10));
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 16)), il2cpp_rgctx_method(method->klass->rgctx_data, 16), (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)V_2, (Il2CppFullySharedGenericAny*)L_12);
|
|
bool L_13;
|
|
L_13 = InvokerFuncInvoker6< bool, Il2CppFullySharedGenericAny, int32_t, Il2CppFullySharedGenericAny, bool, bool, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 18)), il2cpp_rgctx_method(method->klass->rgctx_data, 18), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_8: *(void**)L_8), L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_12: *(void**)L_12), (bool)0, (bool)0, (Il2CppFullySharedGenericAny*)V_0);
|
|
if (L_13)
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_14 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_14, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEC0CC039753090F0DDDF2727802FC6E1570B317B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_14, method);
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
RuntimeObject* L_15 = V_1;
|
|
NullCheck((RuntimeObject*)L_15);
|
|
bool L_16;
|
|
L_16 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_15);
|
|
if (L_16)
|
|
{
|
|
goto IL_0009_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
int32_t L_17 = __this->____budget;
|
|
if (L_17)
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
}
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_18 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_18);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_19 = L_18->____buckets;
|
|
NullCheck(L_19);
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_20 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_20);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_21 = L_20->____locks;
|
|
NullCheck(L_21);
|
|
__this->____budget = ((int32_t)(((int32_t)(((RuntimeArray*)L_19)->max_length))/((int32_t)(((RuntimeArray*)L_21)->max_length))));
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__ctor_m6641D528D40D97FA0C5A07E6343F1ED807898699_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, int32_t ___0_concurrencyLevel, int32_t ___1_capacity, bool ___2_growLockArray, RuntimeObject* ___3_comparer, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_1 = NULL;
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
RuntimeObject* G_B11_0 = NULL;
|
|
ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* G_B11_1 = NULL;
|
|
RuntimeObject* G_B10_0 = NULL;
|
|
ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* G_B10_1 = NULL;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
int32_t L_0 = ___0_concurrencyLevel;
|
|
if ((((int32_t)L_0) >= ((int32_t)1)))
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F* L_1 = (ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentOutOfRangeException_tEA2822DAF62B10EEED00E0E3A341D4BAF78CF85F_il2cpp_TypeInfo_var)));
|
|
ArgumentOutOfRangeException__ctor_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBF10EFAF6473141D13A05C1B850DEF40E641A918)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral68445D6E030501243B18C07E57CF1AE5C1C5AAF2)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_2 = ___1_capacity;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC37D78082ACFC8DEE7B32D9351C6E433A074FEC7)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE59C400B29D20EE4CB5A86E1F46ED782D7872D43)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
int32_t L_4 = ___1_capacity;
|
|
int32_t L_5 = ___0_concurrencyLevel;
|
|
if ((((int32_t)L_4) >= ((int32_t)L_5)))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___0_concurrencyLevel;
|
|
___1_capacity = L_6;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
int32_t L_7 = ___0_concurrencyLevel;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_7);
|
|
V_0 = L_8;
|
|
V_3 = 0;
|
|
goto IL_004c;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_9 = V_0;
|
|
int32_t L_10 = V_3;
|
|
RuntimeObject* L_11 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_11, NULL);
|
|
NullCheck(L_9);
|
|
ArrayElementTypeCheck (L_9, L_11);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (RuntimeObject*)L_11);
|
|
int32_t L_12 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
int32_t L_13 = V_3;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = V_0;
|
|
NullCheck(L_14);
|
|
if ((((int32_t)L_13) < ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_16 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)));
|
|
V_1 = L_16;
|
|
int32_t L_17 = ___1_capacity;
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_18 = (NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A*)(NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 23), (uint32_t)L_17);
|
|
V_2 = L_18;
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_19 = V_2;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = V_0;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_21 = V_1;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_22 = (Tables_tD895B223685217918C345ED5D52074F7E29E5F95*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 21));
|
|
(( void (*) (Tables_tD895B223685217918C345ED5D52074F7E29E5F95*, NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 24)))(L_22, L_19, L_20, L_21, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tables = L_22;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tables), (void*)L_22);
|
|
RuntimeObject* L_23 = ___3_comparer;
|
|
RuntimeObject* L_24 = L_23;
|
|
if (L_24)
|
|
{
|
|
G_B11_0 = L_24;
|
|
G_B11_1 = __this;
|
|
goto IL_007e;
|
|
}
|
|
G_B10_0 = L_24;
|
|
G_B10_1 = __this;
|
|
}
|
|
{
|
|
EqualityComparer_1_t974B6EF56BCA01CA6AD3434C04A3F054C43783CC* L_25;
|
|
L_25 = (( EqualityComparer_1_t974B6EF56BCA01CA6AD3434C04A3F054C43783CC* (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 25)))(il2cpp_rgctx_method(method->klass->rgctx_data, 25));
|
|
G_B11_0 = ((RuntimeObject*)(L_25));
|
|
G_B11_1 = G_B10_1;
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
NullCheck(G_B11_1);
|
|
G_B11_1->____comparer = G_B11_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&G_B11_1->____comparer), (void*)G_B11_0);
|
|
bool L_26 = ___2_growLockArray;
|
|
__this->____growLockArray = L_26;
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_27 = V_2;
|
|
NullCheck(L_27);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_28 = V_0;
|
|
NullCheck(L_28);
|
|
__this->____budget = ((int32_t)(((int32_t)(((RuntimeArray*)L_27)->max_length))/((int32_t)(((RuntimeArray*)L_28)->max_length))));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryAdd_mD11107344E270A7538B40D278E52532A0649D829_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Il2CppFullySharedGenericAny ___0_key, Il2CppFullySharedGenericAny ___1_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_2 = L_0;
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_0, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
bool L_1 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12), L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
RuntimeObject* L_3 = __this->____comparer;
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
NullCheck(L_3);
|
|
int32_t L_5;
|
|
L_5 = InterfaceFuncInvoker1Invoker< int32_t, Il2CppFullySharedGenericAny >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_4: *(void**)L_4));
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? ___1_value : &___1_value), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
bool L_7;
|
|
L_7 = InvokerFuncInvoker6< bool, Il2CppFullySharedGenericAny, int32_t, Il2CppFullySharedGenericAny, bool, bool, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 18)), il2cpp_rgctx_method(method->klass->rgctx_data, 18), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_2: *(void**)L_2), L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_6: *(void**)L_6), (bool)0, (bool)1, (Il2CppFullySharedGenericAny*)V_0);
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_ContainsKey_m6998FF8E69B91FD09125EE962D6E8B291A231392_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Il2CppFullySharedGenericAny ___0_key, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_2 = L_0;
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_0, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
bool L_1 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12), L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
bool L_3;
|
|
L_3 = InvokerFuncInvoker2< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 28)), il2cpp_rgctx_method(method->klass->rgctx_data, 28), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_2: *(void**)L_2), (Il2CppFullySharedGenericAny*)V_0);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryRemove_mC744D5885F0E343A454C5FAE6857BDC2793D2E06_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Il2CppFullySharedGenericAny ___0_key, Il2CppFullySharedGenericAny* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_2 = L_0;
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_0, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
bool L_1 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12), L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
Il2CppFullySharedGenericAny* L_3 = ___1_value;
|
|
il2cpp_codegen_initobj((Il2CppFullySharedGenericAny*)V_0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
il2cpp_codegen_memcpy(L_4, V_0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
bool L_5;
|
|
L_5 = InvokerFuncInvoker4< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny*, bool, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 29)), il2cpp_rgctx_method(method->klass->rgctx_data, 29), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_2: *(void**)L_2), L_3, (bool)0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_4: *(void**)L_4));
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryRemoveInternal_m4A393BED6764C80F4849E88293A4D9D36234B313_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Il2CppFullySharedGenericAny ___0_key, Il2CppFullySharedGenericAny* ___1_value, bool ___2_matchValue, Il2CppFullySharedGenericAny ___3_oldValue, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_29 = L_1;
|
|
const Il2CppFullySharedGenericAny L_30 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_34 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
const Il2CppFullySharedGenericAny L_50 = L_34;
|
|
const Il2CppFullySharedGenericAny L_36 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
int32_t V_0 = 0;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
RuntimeObject* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* V_6 = NULL;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* V_7 = NULL;
|
|
bool V_8 = false;
|
|
{
|
|
RuntimeObject* L_0 = __this->____comparer;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
NullCheck(L_0);
|
|
int32_t L_2;
|
|
L_2 = InterfaceFuncInvoker1Invoker< int32_t, Il2CppFullySharedGenericAny >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_1: *(void**)L_1));
|
|
V_0 = L_2;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_3 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_1 = L_3;
|
|
int32_t L_4 = V_0;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_5 = V_1;
|
|
NullCheck(L_5);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_6 = L_5->____buckets;
|
|
NullCheck(L_6);
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = L_7->____locks;
|
|
NullCheck(L_8);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (int32_t, int32_t*, int32_t*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 30)))(L_4, (&V_2), (&V_3), ((int32_t)(((RuntimeArray*)L_6)->max_length)), ((int32_t)(((RuntimeArray*)L_8)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = L_9->____locks;
|
|
int32_t L_11 = V_3;
|
|
NullCheck(L_10);
|
|
int32_t L_12 = L_11;
|
|
RuntimeObject* L_13 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_12));
|
|
V_4 = L_13;
|
|
V_5 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_011d:
|
|
{
|
|
{
|
|
bool L_14 = V_5;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0128;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_15 = V_4;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_15, NULL);
|
|
}
|
|
|
|
IL_0128:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_16 = V_4;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_16, (&V_5), NULL);
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_17 = V_1;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_18 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((((RuntimeObject*)(Tables_tD895B223685217918C345ED5D52074F7E29E5F95*)L_17) == ((RuntimeObject*)(Tables_tD895B223685217918C345ED5D52074F7E29E5F95*)L_18)))
|
|
{
|
|
goto IL_0053_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_0053_1:
|
|
{
|
|
V_6 = (Node_tC5111E77A2002D0AD173457666915D4D0BD59865*)NULL;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_19 = V_1;
|
|
NullCheck(L_19);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_20 = L_19->____buckets;
|
|
int32_t L_21 = V_2;
|
|
NullCheck(L_20);
|
|
int32_t L_22 = L_21;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_23 = (L_20)->GetAt(static_cast<il2cpp_array_size_t>(L_22));
|
|
V_7 = L_23;
|
|
goto IL_0114_1;
|
|
}
|
|
|
|
IL_0065_1:
|
|
{
|
|
int32_t L_24 = V_0;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_25 = V_7;
|
|
int32_t L_26 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(L_25, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),3));
|
|
if ((!(((uint32_t)L_24) == ((uint32_t)L_26))))
|
|
{
|
|
goto IL_0105_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_27 = __this->____comparer;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_28 = V_7;
|
|
il2cpp_codegen_memcpy(L_29, il2cpp_codegen_get_instance_field_data_pointer(L_28, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),0)), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
il2cpp_codegen_memcpy(L_30, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
NullCheck(L_27);
|
|
bool L_31;
|
|
L_31 = InterfaceFuncInvoker2Invoker< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_27, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_29: *(void**)L_29), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_30: *(void**)L_30));
|
|
if (!L_31)
|
|
{
|
|
goto IL_0105_1;
|
|
}
|
|
}
|
|
{
|
|
bool L_32 = ___2_matchValue;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00ae_1;
|
|
}
|
|
}
|
|
{
|
|
EqualityComparer_1_t974B6EF56BCA01CA6AD3434C04A3F054C43783CC* L_33;
|
|
L_33 = (( EqualityComparer_1_t974B6EF56BCA01CA6AD3434C04A3F054C43783CC* (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 33)))(il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
il2cpp_codegen_memcpy(L_34, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? ___3_oldValue : &___3_oldValue), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_35 = V_7;
|
|
il2cpp_codegen_memcpy(L_36, il2cpp_codegen_get_instance_field_data_pointer(L_35, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),1)), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
NullCheck(L_33);
|
|
bool L_37;
|
|
L_37 = VirtualFuncInvoker2Invoker< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(8, L_33, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_34: *(void**)L_34), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_36: *(void**)L_36));
|
|
if (L_37)
|
|
{
|
|
goto IL_00ae_1;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_38 = ___1_value;
|
|
il2cpp_codegen_initobj(L_38, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
V_8 = (bool)0;
|
|
goto IL_0132;
|
|
}
|
|
|
|
IL_00ae_1:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_39 = V_6;
|
|
if (L_39)
|
|
{
|
|
goto IL_00ce_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_40 = V_1;
|
|
NullCheck(L_40);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_41 = L_40->____buckets;
|
|
int32_t L_42 = V_2;
|
|
NullCheck(L_41);
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_43 = V_7;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_44 = *(Node_tC5111E77A2002D0AD173457666915D4D0BD59865**)il2cpp_codegen_get_instance_field_data_pointer(L_43, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2));
|
|
il2cpp_codegen_memory_barrier();
|
|
(( void (*) (Node_tC5111E77A2002D0AD173457666915D4D0BD59865**, Node_tC5111E77A2002D0AD173457666915D4D0BD59865*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 38)))(((L_41)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_42))), L_44, il2cpp_rgctx_method(method->klass->rgctx_data, 38));
|
|
goto IL_00e0_1;
|
|
}
|
|
|
|
IL_00ce_1:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_45 = V_6;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_46 = V_7;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_47 = *(Node_tC5111E77A2002D0AD173457666915D4D0BD59865**)il2cpp_codegen_get_instance_field_data_pointer(L_46, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2));
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_45);
|
|
il2cpp_codegen_memory_barrier();
|
|
il2cpp_codegen_write_instance_field_data<Node_tC5111E77A2002D0AD173457666915D4D0BD59865*>(L_45, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2), L_47);
|
|
}
|
|
|
|
IL_00e0_1:
|
|
{
|
|
Il2CppFullySharedGenericAny* L_48 = ___1_value;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_49 = V_7;
|
|
il2cpp_codegen_memcpy(L_50, il2cpp_codegen_get_instance_field_data_pointer(L_49, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),1)), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_48, L_50, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 17), (void**)(Il2CppFullySharedGenericAny*)L_48, (void*)L_50);
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_51 = V_1;
|
|
NullCheck(L_51);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_52 = L_51->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_53 = V_3;
|
|
NullCheck(L_52);
|
|
int32_t* L_54 = ((L_52)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_53)));
|
|
int32_t L_55 = *((int32_t*)L_54);
|
|
*((int32_t*)L_54) = (int32_t)((int32_t)il2cpp_codegen_subtract(L_55, 1));
|
|
V_8 = (bool)1;
|
|
goto IL_0132;
|
|
}
|
|
|
|
IL_0105_1:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_56 = V_7;
|
|
V_6 = L_56;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_57 = V_7;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_58 = *(Node_tC5111E77A2002D0AD173457666915D4D0BD59865**)il2cpp_codegen_get_instance_field_data_pointer(L_57, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2));
|
|
il2cpp_codegen_memory_barrier();
|
|
V_7 = L_58;
|
|
}
|
|
|
|
IL_0114_1:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_59 = V_7;
|
|
if (L_59)
|
|
{
|
|
goto IL_0065_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0129;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0129:
|
|
{
|
|
Il2CppFullySharedGenericAny* L_60 = ___1_value;
|
|
il2cpp_codegen_initobj(L_60, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0132:
|
|
{
|
|
bool L_61 = V_8;
|
|
return L_61;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryGetValue_m394ECF25DA7E42CBCE88AC5357D1DF70E5FB95E0_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Il2CppFullySharedGenericAny ___0_key, Il2CppFullySharedGenericAny* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_2 = L_0;
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
bool L_1 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12), L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
RuntimeObject* L_3 = __this->____comparer;
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
NullCheck(L_3);
|
|
int32_t L_5;
|
|
L_5 = InterfaceFuncInvoker1Invoker< int32_t, Il2CppFullySharedGenericAny >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_4: *(void**)L_4));
|
|
Il2CppFullySharedGenericAny* L_6 = ___1_value;
|
|
bool L_7;
|
|
L_7 = InvokerFuncInvoker3< bool, Il2CppFullySharedGenericAny, int32_t, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 40)), il2cpp_rgctx_method(method->klass->rgctx_data, 40), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_2: *(void**)L_2), L_5, L_6);
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryGetValueInternal_m8BB840B1605A1FA8F0503DDF00B4BADAE21809BB_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Il2CppFullySharedGenericAny ___0_key, int32_t ___1_hashcode, Il2CppFullySharedGenericAny* ___2_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const Il2CppFullySharedGenericAny L_14 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_15 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_19 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* V_2 = NULL;
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
int32_t L_1 = ___1_hashcode;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_3 = L_2->____buckets;
|
|
NullCheck(L_3);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
int32_t L_4;
|
|
L_4 = (( int32_t (*) (int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 41)))(L_1, ((int32_t)(((RuntimeArray*)L_3)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 41));
|
|
V_1 = L_4;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_6 = L_5->____buckets;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_8;
|
|
L_8 = (( Node_tC5111E77A2002D0AD173457666915D4D0BD59865* (*) (Node_tC5111E77A2002D0AD173457666915D4D0BD59865**, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 42)))(((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7))), il2cpp_rgctx_method(method->klass->rgctx_data, 42));
|
|
V_2 = L_8;
|
|
goto IL_0060;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
int32_t L_9 = ___1_hashcode;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_10 = V_2;
|
|
int32_t L_11 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(L_10, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),3));
|
|
if ((!(((uint32_t)L_9) == ((uint32_t)L_11))))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_12 = __this->____comparer;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_13 = V_2;
|
|
il2cpp_codegen_memcpy(L_14, il2cpp_codegen_get_instance_field_data_pointer(L_13, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),0)), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
il2cpp_codegen_memcpy(L_15, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
NullCheck(L_12);
|
|
bool L_16;
|
|
L_16 = InterfaceFuncInvoker2Invoker< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_14: *(void**)L_14), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_15: *(void**)L_15));
|
|
if (!L_16)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_17 = ___2_value;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_18 = V_2;
|
|
il2cpp_codegen_memcpy(L_19, il2cpp_codegen_get_instance_field_data_pointer(L_18, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),1)), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_17, L_19, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 17), (void**)(Il2CppFullySharedGenericAny*)L_17, (void*)L_19);
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_20 = V_2;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_21 = *(Node_tC5111E77A2002D0AD173457666915D4D0BD59865**)il2cpp_codegen_get_instance_field_data_pointer(L_20, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2));
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_21;
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_22 = V_2;
|
|
if (L_22)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_23 = ___2_value;
|
|
il2cpp_codegen_initobj(L_23, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_Clear_mBA89387480CBDF6E872ABCEA395CC5040C2A6132_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* V_1 = NULL;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0062:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 44)))(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 43)))(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_1 = (NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A*)(NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 23), (uint32_t)((int32_t)31));
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_2 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_2);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_2->____locks;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_4 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_4);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = L_4->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_5);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_6 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_5)->max_length)));
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_7 = (Tables_tD895B223685217918C345ED5D52074F7E29E5F95*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 21));
|
|
(( void (*) (Tables_tD895B223685217918C345ED5D52074F7E29E5F95*, NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 24)))(L_7, L_1, L_3, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
V_1 = L_7;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_8 = V_1;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tables = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tables), (void*)L_8);
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_9 = V_1;
|
|
NullCheck(L_9);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_10 = L_9->____buckets;
|
|
NullCheck(L_10);
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_11 = V_1;
|
|
NullCheck(L_11);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = L_11->____locks;
|
|
NullCheck(L_12);
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_13;
|
|
L_13 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(1, ((int32_t)(((int32_t)(((RuntimeArray*)L_10)->max_length))/((int32_t)(((RuntimeArray*)L_12)->max_length)))), NULL);
|
|
__this->____budget = L_13;
|
|
goto IL_006b;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_CopyTo_m641512B29A4F9DFA75019D8E0EB46B12D95BE2D0_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
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:
|
|
{
|
|
int32_t L_2 = ___1_index;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD0D86565E49BD212E7AC64BABD33BE3668A4C45B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0081:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 44)))(__this, 0, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 43)))(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
V_1 = 0;
|
|
V_2 = 0;
|
|
goto IL_004a_1;
|
|
}
|
|
|
|
IL_0032_1:
|
|
{
|
|
int32_t L_5 = V_1;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_6 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_6);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_7 = L_6->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_8 = V_2;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
int32_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_5, L_10));
|
|
int32_t L_11 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
}
|
|
|
|
IL_004a_1:
|
|
{
|
|
int32_t L_12 = V_2;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_13 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_13);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = L_13->____locks;
|
|
NullCheck(L_14);
|
|
if ((((int32_t)L_12) >= ((int32_t)((int32_t)(((RuntimeArray*)L_14)->max_length)))))
|
|
{
|
|
goto IL_0060_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_15 = V_1;
|
|
if ((((int32_t)L_15) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0032_1;
|
|
}
|
|
}
|
|
|
|
IL_0060_1:
|
|
{
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_16 = ___0_array;
|
|
NullCheck(L_16);
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = ___1_index;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_16)->max_length)), L_17))) < ((int32_t)L_18)))
|
|
{
|
|
goto IL_006c_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_1;
|
|
if ((((int32_t)L_19) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0077_1;
|
|
}
|
|
}
|
|
|
|
IL_006c_1:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_20 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_20, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral672E993A9AD93822B712B165C6987759C6DED80B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_20, method);
|
|
}
|
|
|
|
IL_0077_1:
|
|
{
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_21 = ___0_array;
|
|
int32_t L_22 = ___1_index;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 46)))(__this, L_21, L_22, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* ConcurrentDictionary_2_ToArray_m95F353F48726B8602C9E1D0E09770526620EEFEB_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* V_2 = NULL;
|
|
int32_t V_3 = 0;
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* V_4 = NULL;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005a:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 44)))(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 43)))(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
V_1 = 0;
|
|
V_3 = 0;
|
|
goto IL_0028_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
int32_t L_1 = V_1;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_2 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_2);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_3 = L_2->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_4 = V_3;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
int32_t L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
if (((int64_t)L_1 + (int64_t)L_6 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_1 + (int64_t)L_6 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_1, L_6));
|
|
int32_t L_7 = V_3;
|
|
if (((int64_t)L_7 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_7 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
V_3 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_0028_1:
|
|
{
|
|
int32_t L_8 = V_3;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_9 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_9);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = L_9->____locks;
|
|
NullCheck(L_10);
|
|
if ((((int32_t)L_8) < ((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = V_1;
|
|
if (L_11)
|
|
{
|
|
goto IL_0046_1;
|
|
}
|
|
}
|
|
{
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_12;
|
|
L_12 = (( KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 47)))(il2cpp_rgctx_method(method->klass->rgctx_data, 47));
|
|
V_4 = L_12;
|
|
goto IL_0063;
|
|
}
|
|
|
|
IL_0046_1:
|
|
{
|
|
int32_t L_13 = V_1;
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_14 = (KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57*)(KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 48), (uint32_t)L_13);
|
|
V_2 = L_14;
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_15 = V_2;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 46)))(__this, L_15, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_16 = V_2;
|
|
V_4 = L_16;
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_17 = V_4;
|
|
return L_17;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToPairs_mB29DE9F99C438139032B46CF257772B8D67C9D81_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_KeyValuePair_2_tD5CB06BF496878AA4AFA9D8ACE7541CA484F69C0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9));
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
const Il2CppFullySharedGenericAny L_13 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
const KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 L_14 = alloca(SizeOf_KeyValuePair_2_tD5CB06BF496878AA4AFA9D8ACE7541CA484F69C0);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* V_2 = NULL;
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_0);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_1 = L_0->____buckets;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0045;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_2 = L_5;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_6 = ___0_array;
|
|
int32_t L_7 = ___1_index;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_8 = V_2;
|
|
il2cpp_codegen_memcpy(L_9, il2cpp_codegen_get_instance_field_data_pointer(L_8, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),0)), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_10 = V_2;
|
|
il2cpp_codegen_memcpy(L_11, il2cpp_codegen_get_instance_field_data_pointer(L_10, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),1)), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(L_14, 0, SizeOf_KeyValuePair_2_tD5CB06BF496878AA4AFA9D8ACE7541CA484F69C0);
|
|
KeyValuePair_2__ctor_mD82E516936D2BDE6D46C8C45270250647986231E((KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)L_14, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? il2cpp_codegen_memcpy(L_12, L_9, SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034): *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? il2cpp_codegen_memcpy(L_13, L_11, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF): *(void**)L_11), il2cpp_rgctx_method(method->klass->rgctx_data, 49));
|
|
NullCheck(L_6);
|
|
il2cpp_codegen_memcpy((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)), L_14, SizeOf_KeyValuePair_2_tD5CB06BF496878AA4AFA9D8ACE7541CA484F69C0);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 9), (void**)(L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)), (void*)L_14);
|
|
int32_t L_15 = ___1_index;
|
|
___1_index = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_16 = V_2;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_17 = *(Node_tC5111E77A2002D0AD173457666915D4D0BD59865**)il2cpp_codegen_get_instance_field_data_pointer(L_16, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2));
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_17;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_18 = V_2;
|
|
if (L_18)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
int32_t L_20 = V_1;
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_21 = V_0;
|
|
NullCheck(L_21);
|
|
if ((((int32_t)L_20) < ((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToEntries_m963F17C04F9A702D1C83334C27ABD9BC936DF357_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* V_2 = NULL;
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_0);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_1 = L_0->____buckets;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_2 = L_5;
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* L_6 = ___0_array;
|
|
int32_t L_7 = ___1_index;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_8 = V_2;
|
|
il2cpp_codegen_memcpy(L_9, il2cpp_codegen_get_instance_field_data_pointer(L_8, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),0)), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
RuntimeObject* L_10 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12), L_9);
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_11 = V_2;
|
|
il2cpp_codegen_memcpy(L_12, il2cpp_codegen_get_instance_field_data_pointer(L_11, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),1)), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
RuntimeObject* L_13 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17), L_12);
|
|
DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB L_14;
|
|
memset((&L_14), 0, sizeof(L_14));
|
|
DictionaryEntry__ctor_m2768353E53A75C4860E34B37DAF1342120C5D1EA((&L_14), L_10, L_13, NULL);
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (DictionaryEntry_t171080F37B311C25AA9E75888F9C9D703FA721BB)L_14);
|
|
int32_t L_15 = ___1_index;
|
|
___1_index = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_16 = V_2;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_17 = *(Node_tC5111E77A2002D0AD173457666915D4D0BD59865**)il2cpp_codegen_get_instance_field_data_pointer(L_16, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2));
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_17;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_18 = V_2;
|
|
if (L_18)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_19 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_19, 1));
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
int32_t L_20 = V_1;
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_21 = V_0;
|
|
NullCheck(L_21);
|
|
if ((((int32_t)L_20) < ((int32_t)((int32_t)(((RuntimeArray*)L_21)->max_length)))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_CopyToObjects_mCC63F0BBFE09722AC0F6C6D383DDF8D7A47DFBD2_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_KeyValuePair_2_tD5CB06BF496878AA4AFA9D8ACE7541CA484F69C0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9));
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
const Il2CppFullySharedGenericAny L_13 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
const KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 L_14 = alloca(SizeOf_KeyValuePair_2_tD5CB06BF496878AA4AFA9D8ACE7541CA484F69C0);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* V_2 = NULL;
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_0);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_1 = L_0->____buckets;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_2 = V_0;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_2 = L_5;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = ___0_array;
|
|
int32_t L_7 = ___1_index;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_8 = V_2;
|
|
il2cpp_codegen_memcpy(L_9, il2cpp_codegen_get_instance_field_data_pointer(L_8, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),0)), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_10 = V_2;
|
|
il2cpp_codegen_memcpy(L_11, il2cpp_codegen_get_instance_field_data_pointer(L_10, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),1)), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(L_14, 0, SizeOf_KeyValuePair_2_tD5CB06BF496878AA4AFA9D8ACE7541CA484F69C0);
|
|
KeyValuePair_2__ctor_mD82E516936D2BDE6D46C8C45270250647986231E((KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)L_14, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? il2cpp_codegen_memcpy(L_12, L_9, SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034): *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? il2cpp_codegen_memcpy(L_13, L_11, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF): *(void**)L_11), il2cpp_rgctx_method(method->klass->rgctx_data, 49));
|
|
RuntimeObject* L_15 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 9), L_14);
|
|
NullCheck(L_6);
|
|
ArrayElementTypeCheck (L_6, L_15);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_15);
|
|
int32_t L_16 = ___1_index;
|
|
___1_index = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_17 = V_2;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_18 = *(Node_tC5111E77A2002D0AD173457666915D4D0BD59865**)il2cpp_codegen_get_instance_field_data_pointer(L_17, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2));
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_18;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_19 = V_2;
|
|
if (L_19)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_20 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_20, 1));
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
int32_t L_21 = V_1;
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_22 = V_0;
|
|
NullCheck(L_22);
|
|
if ((((int32_t)L_21) < ((int32_t)((int32_t)(((RuntimeArray*)L_22)->max_length)))))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_GetEnumerator_mB8E0C74DF9390E74FAED06B806E09260FEA6D626_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
U3CGetEnumeratorU3Ed__35_t5851A752199A6195E7EB427BC50C5FFCAB8D4E6E* L_0 = (U3CGetEnumeratorU3Ed__35_t5851A752199A6195E7EB427BC50C5FFCAB8D4E6E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 50));
|
|
(( void (*) (U3CGetEnumeratorU3Ed__35_t5851A752199A6195E7EB427BC50C5FFCAB8D4E6E*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 51)))(L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 51));
|
|
U3CGetEnumeratorU3Ed__35_t5851A752199A6195E7EB427BC50C5FFCAB8D4E6E* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
il2cpp_codegen_write_instance_field_data<ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*>(L_1, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 50),2), __this);
|
|
return (RuntimeObject*)L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_TryAddInternal_mA7A0FCD2CFB2DE061C507C25D130AC58B32CEB7A_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Il2CppFullySharedGenericAny ___0_key, int32_t ___1_hashcode, Il2CppFullySharedGenericAny ___2_value, bool ___3_updateIfExists, bool ___4_acquireLock, Il2CppFullySharedGenericAny* ___5_resultingValue, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const Il2CppFullySharedGenericAny L_30 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_38 = L_30;
|
|
const Il2CppFullySharedGenericAny L_63 = L_30;
|
|
const Il2CppFullySharedGenericAny L_31 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_36 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
const Il2CppFullySharedGenericAny L_39 = L_36;
|
|
const Il2CppFullySharedGenericAny L_52 = L_36;
|
|
const Il2CppFullySharedGenericAny L_55 = L_36;
|
|
const Il2CppFullySharedGenericAny L_64 = L_36;
|
|
const Il2CppFullySharedGenericAny L_86 = L_36;
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* V_2 = NULL;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* V_5 = NULL;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* V_6 = NULL;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* V_7 = NULL;
|
|
bool V_8 = false;
|
|
|
|
IL_0000:
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_2 = L_0;
|
|
int32_t L_1 = ___1_hashcode;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_2 = V_2;
|
|
NullCheck(L_2);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_3 = L_2->____buckets;
|
|
NullCheck(L_3);
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_4 = V_2;
|
|
NullCheck(L_4);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = L_4->____locks;
|
|
NullCheck(L_5);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (int32_t, int32_t*, int32_t*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 30)))(L_1, (&V_0), (&V_1), ((int32_t)(((RuntimeArray*)L_3)->max_length)), ((int32_t)(((RuntimeArray*)L_5)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
V_3 = (bool)0;
|
|
V_4 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_014e:
|
|
{
|
|
{
|
|
bool L_6 = V_4;
|
|
if (!L_6)
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
}
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_7 = V_2;
|
|
NullCheck(L_7);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_8 = L_7->____locks;
|
|
int32_t L_9 = V_1;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
RuntimeObject* L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_11, NULL);
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
bool L_12 = ___4_acquireLock;
|
|
if (!L_12)
|
|
{
|
|
goto IL_003b_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_13 = V_2;
|
|
NullCheck(L_13);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = L_13->____locks;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
RuntimeObject* L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_17, (&V_4), NULL);
|
|
}
|
|
|
|
IL_003b_1:
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_18 = V_2;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_19 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((((RuntimeObject*)(Tables_tD895B223685217918C345ED5D52074F7E29E5F95*)L_18) == ((RuntimeObject*)(Tables_tD895B223685217918C345ED5D52074F7E29E5F95*)L_19)))
|
|
{
|
|
goto IL_0048_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0000;
|
|
}
|
|
|
|
IL_0048_1:
|
|
{
|
|
V_5 = (Node_tC5111E77A2002D0AD173457666915D4D0BD59865*)NULL;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_20 = V_2;
|
|
NullCheck(L_20);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_21 = L_20->____buckets;
|
|
int32_t L_22 = V_0;
|
|
NullCheck(L_21);
|
|
int32_t L_23 = L_22;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_24 = (L_21)->GetAt(static_cast<il2cpp_array_size_t>(L_23));
|
|
V_6 = L_24;
|
|
goto IL_00fd_1;
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
int32_t L_25 = ___1_hashcode;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_26 = V_6;
|
|
int32_t L_27 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(L_26, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),3));
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)L_27))))
|
|
{
|
|
goto IL_00ee_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_28 = __this->____comparer;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_29 = V_6;
|
|
il2cpp_codegen_memcpy(L_30, il2cpp_codegen_get_instance_field_data_pointer(L_29, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),0)), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
il2cpp_codegen_memcpy(L_31, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
NullCheck(L_28);
|
|
bool L_32;
|
|
L_32 = InterfaceFuncInvoker2Invoker< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_28, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_30: *(void**)L_30), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_31: *(void**)L_31));
|
|
if (!L_32)
|
|
{
|
|
goto IL_00ee_1;
|
|
}
|
|
}
|
|
{
|
|
bool L_33 = ___3_updateIfExists;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00d8_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
bool L_34 = ((ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->klass->rgctx_data, 2)))->___s_isValueWriteAtomic;
|
|
if (!L_34)
|
|
{
|
|
goto IL_0091_1;
|
|
}
|
|
}
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_35 = V_6;
|
|
il2cpp_codegen_memcpy(L_36, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? ___2_value : &___2_value), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
NullCheck(L_35);
|
|
il2cpp_codegen_write_instance_field_data(L_35, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),1), L_36, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
goto IL_00ce_1;
|
|
}
|
|
|
|
IL_0091_1:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_37 = V_6;
|
|
il2cpp_codegen_memcpy(L_38, il2cpp_codegen_get_instance_field_data_pointer(L_37, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),0)), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
il2cpp_codegen_memcpy(L_39, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? ___2_value : &___2_value), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
int32_t L_40 = ___1_hashcode;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_41 = V_6;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_42 = *(Node_tC5111E77A2002D0AD173457666915D4D0BD59865**)il2cpp_codegen_get_instance_field_data_pointer(L_41, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2));
|
|
il2cpp_codegen_memory_barrier();
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_43 = (Node_tC5111E77A2002D0AD173457666915D4D0BD59865*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 31));
|
|
InvokerActionInvoker4< Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, int32_t, Node_tC5111E77A2002D0AD173457666915D4D0BD59865* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 52)), il2cpp_rgctx_method(method->klass->rgctx_data, 52), L_43, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_38: *(void**)L_38), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_39: *(void**)L_39), L_40, L_42);
|
|
V_7 = L_43;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_44 = V_5;
|
|
if (L_44)
|
|
{
|
|
goto IL_00c3_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_45 = V_2;
|
|
NullCheck(L_45);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_46 = L_45->____buckets;
|
|
int32_t L_47 = V_0;
|
|
NullCheck(L_46);
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_48 = V_7;
|
|
(( void (*) (Node_tC5111E77A2002D0AD173457666915D4D0BD59865**, Node_tC5111E77A2002D0AD173457666915D4D0BD59865*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 38)))(((L_46)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_47))), L_48, il2cpp_rgctx_method(method->klass->rgctx_data, 38));
|
|
goto IL_00ce_1;
|
|
}
|
|
|
|
IL_00c3_1:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_49 = V_5;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_50 = V_7;
|
|
NullCheck(L_49);
|
|
il2cpp_codegen_memory_barrier();
|
|
il2cpp_codegen_write_instance_field_data<Node_tC5111E77A2002D0AD173457666915D4D0BD59865*>(L_49, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2), L_50);
|
|
}
|
|
|
|
IL_00ce_1:
|
|
{
|
|
Il2CppFullySharedGenericAny* L_51 = ___5_resultingValue;
|
|
il2cpp_codegen_memcpy(L_52, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? ___2_value : &___2_value), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_51, L_52, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 17), (void**)(Il2CppFullySharedGenericAny*)L_51, (void*)L_52);
|
|
goto IL_00e6_1;
|
|
}
|
|
|
|
IL_00d8_1:
|
|
{
|
|
Il2CppFullySharedGenericAny* L_53 = ___5_resultingValue;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_54 = V_6;
|
|
il2cpp_codegen_memcpy(L_55, il2cpp_codegen_get_instance_field_data_pointer(L_54, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),1)), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_53, L_55, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 17), (void**)(Il2CppFullySharedGenericAny*)L_53, (void*)L_55);
|
|
}
|
|
|
|
IL_00e6_1:
|
|
{
|
|
V_8 = (bool)0;
|
|
goto IL_0174;
|
|
}
|
|
|
|
IL_00ee_1:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_56 = V_6;
|
|
V_5 = L_56;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_57 = V_6;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_58 = *(Node_tC5111E77A2002D0AD173457666915D4D0BD59865**)il2cpp_codegen_get_instance_field_data_pointer(L_57, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2));
|
|
il2cpp_codegen_memory_barrier();
|
|
V_6 = L_58;
|
|
}
|
|
|
|
IL_00fd_1:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_59 = V_6;
|
|
if (L_59)
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_60 = V_2;
|
|
NullCheck(L_60);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_61 = L_60->____buckets;
|
|
int32_t L_62 = V_0;
|
|
NullCheck(L_61);
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
il2cpp_codegen_memcpy(L_64, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? ___2_value : &___2_value), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
int32_t L_65 = ___1_hashcode;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_66 = V_2;
|
|
NullCheck(L_66);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_67 = L_66->____buckets;
|
|
int32_t L_68 = V_0;
|
|
NullCheck(L_67);
|
|
int32_t L_69 = L_68;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_70 = (L_67)->GetAt(static_cast<il2cpp_array_size_t>(L_69));
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_71 = (Node_tC5111E77A2002D0AD173457666915D4D0BD59865*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 31));
|
|
InvokerActionInvoker4< Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, int32_t, Node_tC5111E77A2002D0AD173457666915D4D0BD59865* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 52)), il2cpp_rgctx_method(method->klass->rgctx_data, 52), L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_63: *(void**)L_63), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_64: *(void**)L_64), L_65, L_70);
|
|
(( void (*) (Node_tC5111E77A2002D0AD173457666915D4D0BD59865**, Node_tC5111E77A2002D0AD173457666915D4D0BD59865*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 38)))(((L_61)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_62))), L_71, il2cpp_rgctx_method(method->klass->rgctx_data, 38));
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_72 = V_2;
|
|
NullCheck(L_72);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_73 = L_72->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_74 = V_1;
|
|
NullCheck(L_73);
|
|
int32_t* L_75 = ((L_73)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_74)));
|
|
int32_t L_76 = *((int32_t*)L_75);
|
|
if (((int64_t)L_76 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_76 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
*((int32_t*)L_75) = (int32_t)((int32_t)il2cpp_codegen_add(L_76, 1));
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_77 = V_2;
|
|
NullCheck(L_77);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_78 = L_77->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_79 = V_1;
|
|
NullCheck(L_78);
|
|
int32_t L_80 = L_79;
|
|
int32_t L_81 = (L_78)->GetAt(static_cast<il2cpp_array_size_t>(L_80));
|
|
int32_t L_82 = __this->____budget;
|
|
if ((((int32_t)L_81) <= ((int32_t)L_82)))
|
|
{
|
|
goto IL_014c_1;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)1;
|
|
}
|
|
|
|
IL_014c_1:
|
|
{
|
|
goto IL_0160;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0160:
|
|
{
|
|
bool L_83 = V_3;
|
|
if (!L_83)
|
|
{
|
|
goto IL_016a;
|
|
}
|
|
}
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_84 = V_2;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, Tables_tD895B223685217918C345ED5D52074F7E29E5F95*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 53)))(__this, L_84, il2cpp_rgctx_method(method->klass->rgctx_data, 53));
|
|
}
|
|
|
|
IL_016a:
|
|
{
|
|
Il2CppFullySharedGenericAny* L_85 = ___5_resultingValue;
|
|
il2cpp_codegen_memcpy(L_86, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? ___2_value : &___2_value), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
il2cpp_codegen_memcpy((Il2CppFullySharedGenericAny*)L_85, L_86, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 17), (void**)(Il2CppFullySharedGenericAny*)L_85, (void*)L_86);
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0174:
|
|
{
|
|
bool L_87 = V_8;
|
|
return L_87;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_get_Item_m3E282309A89340BEE70BB1BA3231AC350EB63476_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Il2CppFullySharedGenericAny ___0_key, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_2 = L_0;
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_0, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
bool L_1;
|
|
L_1 = InvokerFuncInvoker2< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 28)), il2cpp_rgctx_method(method->klass->rgctx_data, 28), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_0: *(void**)L_0), (Il2CppFullySharedGenericAny*)V_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
RuntimeObject* L_3 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12), L_2);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 54)))(L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 54));
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
il2cpp_codegen_memcpy(L_4, V_0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_4, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_set_Item_mB9751D1BE987E51A6B1B2D2BF2851678004FF269_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Il2CppFullySharedGenericAny ___0_key, Il2CppFullySharedGenericAny ___1_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_2 = L_0;
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_0, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
bool L_1 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12), L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
RuntimeObject* L_3 = __this->____comparer;
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
NullCheck(L_3);
|
|
int32_t L_5;
|
|
L_5 = InterfaceFuncInvoker1Invoker< int32_t, Il2CppFullySharedGenericAny >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_4: *(void**)L_4));
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? ___1_value : &___1_value), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
bool L_7;
|
|
L_7 = InvokerFuncInvoker6< bool, Il2CppFullySharedGenericAny, int32_t, Il2CppFullySharedGenericAny, bool, bool, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 18)), il2cpp_rgctx_method(method->klass->rgctx_data, 18), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_2: *(void**)L_2), L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_6: *(void**)L_6), (bool)1, (bool)1, (Il2CppFullySharedGenericAny*)V_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ThrowKeyNotFoundException_m65C4F1EFB50BF283F02C2E2C53F3535FDD685DE5_gshared (RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
NullCheck(L_0);
|
|
String_t* L_1;
|
|
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(3, L_0);
|
|
String_t* L_2;
|
|
L_2 = SR_Format_m9E8DC9AEFDC34AC67473EFAEAB78C5066C1A0D09(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC524653D78C03BE4033DDC43C45B67FFB841D141)), (RuntimeObject*)L_1, NULL);
|
|
KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E* L_3 = (KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&KeyNotFoundException_tCE416EC9BCA9F396A3DFFF86D1B5209BA876079E_il2cpp_TypeInfo_var)));
|
|
KeyNotFoundException__ctor_mBD1D75B73DD5D7C6C72E4F7A021778837B6F2C6B(L_3, L_2, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_NO_INLINE IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ThrowKeyNullException_mEF107859AE4074A8B054F778F40CE4FD1D8D271F_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_0 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_get_Count_mC28E6D211E5DB9E4E103B4105579628203C682A4_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0013:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 44)))(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 43)))(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 55)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 55));
|
|
V_1 = L_1;
|
|
goto IL_001c;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t L_2 = V_1;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_GetCountInternal_mABB50180C1CBF2FBBBAB8667ED74FCC74FFB3F1C_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_1 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_1);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_2 = L_1->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
int32_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_0, L_5));
|
|
int32_t L_6 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
int32_t L_7 = V_1;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_8 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_8);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_9 = L_8->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_9);
|
|
if ((((int32_t)L_7) < ((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length)))))
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_GetOrAdd_mA265AF3ECF3E03D9F24BA7F18C80A70ED9F34846_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Il2CppFullySharedGenericAny ___0_key, Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* ___1_valueFactory, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_5 = L_0;
|
|
const Il2CppFullySharedGenericAny L_10 = L_0;
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_13 = L_7;
|
|
const Il2CppFullySharedGenericAny L_14 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
const Il2CppFullySharedGenericAny L_16 = L_14;
|
|
int32_t V_0 = 0;
|
|
Il2CppFullySharedGenericAny V_1 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_1, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
bool L_1 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12), L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* L_2 = ___1_valueFactory;
|
|
if (L_2)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_3 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEF68BB0CB45867DA95163C2C6A4B0677DCE80DCF)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
RuntimeObject* L_4 = __this->____comparer;
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
NullCheck(L_4);
|
|
int32_t L_6;
|
|
L_6 = InterfaceFuncInvoker1Invoker< int32_t, Il2CppFullySharedGenericAny >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_5: *(void**)L_5));
|
|
V_0 = L_6;
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
int32_t L_8 = V_0;
|
|
bool L_9;
|
|
L_9 = InvokerFuncInvoker3< bool, Il2CppFullySharedGenericAny, int32_t, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 40)), il2cpp_rgctx_method(method->klass->rgctx_data, 40), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_7: *(void**)L_7), L_8, (Il2CppFullySharedGenericAny*)V_1);
|
|
if (L_9)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
int32_t L_11 = V_0;
|
|
Func_2_t7F5F5324CE2DDB7001B68FFE29A5D9F907139FB0* L_12 = ___1_valueFactory;
|
|
il2cpp_codegen_memcpy(L_13, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
NullCheck(L_12);
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 57)), il2cpp_rgctx_method(method->klass->rgctx_data, 57), L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_13: *(void**)L_13), (Il2CppFullySharedGenericAny*)L_14);
|
|
bool L_15;
|
|
L_15 = InvokerFuncInvoker6< bool, Il2CppFullySharedGenericAny, int32_t, Il2CppFullySharedGenericAny, bool, bool, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 18)), il2cpp_rgctx_method(method->klass->rgctx_data, 18), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_10: *(void**)L_10), L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_14: *(void**)L_14), (bool)0, (bool)1, (Il2CppFullySharedGenericAny*)V_1);
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
il2cpp_codegen_memcpy(L_16, V_1, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_16, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_GetOrAdd_mD7D4FE8B123ABFEABF8821D526AB2B1E46A05B24_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Il2CppFullySharedGenericAny ___0_key, Il2CppFullySharedGenericAny ___1_value, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_3 = L_0;
|
|
const Il2CppFullySharedGenericAny L_8 = L_0;
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
const Il2CppFullySharedGenericAny L_12 = L_10;
|
|
int32_t V_0 = 0;
|
|
Il2CppFullySharedGenericAny V_1 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_1, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
bool L_1 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12), L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_2 = __this->____comparer;
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
NullCheck(L_2);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker1Invoker< int32_t, Il2CppFullySharedGenericAny >::Invoke(1, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_3: *(void**)L_3));
|
|
V_0 = L_4;
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
int32_t L_6 = V_0;
|
|
bool L_7;
|
|
L_7 = InvokerFuncInvoker3< bool, Il2CppFullySharedGenericAny, int32_t, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 40)), il2cpp_rgctx_method(method->klass->rgctx_data, 40), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_5: *(void**)L_5), L_6, (Il2CppFullySharedGenericAny*)V_1);
|
|
if (L_7)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
int32_t L_9 = V_0;
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? ___1_value : &___1_value), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
bool L_11;
|
|
L_11 = InvokerFuncInvoker6< bool, Il2CppFullySharedGenericAny, int32_t, Il2CppFullySharedGenericAny, bool, bool, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 18)), il2cpp_rgctx_method(method->klass->rgctx_data, 18), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_8: *(void**)L_8), L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_10: *(void**)L_10), (bool)0, (bool)1, (Il2CppFullySharedGenericAny*)V_1);
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
il2cpp_codegen_memcpy(L_12, V_1, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_12, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_Generic_IDictionaryU3CTKeyU2CTValueU3E_Add_m2A1279D54D2B0303EDFD78EBBE582219E9A6AE7A_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Il2CppFullySharedGenericAny ___0_key, Il2CppFullySharedGenericAny ___1_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? ___1_value : &___1_value), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
bool L_2;
|
|
L_2 = InvokerFuncInvoker2< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 58)), il2cpp_rgctx_method(method->klass->rgctx_data, 58), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_0: *(void**)L_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_1: *(void**)L_1));
|
|
if (L_2)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_3 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC38D57307791EED2AD28D35927B9E90B23E6281D)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_Generic_IDictionaryU3CTKeyU2CTValueU3E_Remove_m9337AF5E27F91FCC2C3080F725E3020FA1584ADB_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Il2CppFullySharedGenericAny ___0_key, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_0, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_key : &___0_key), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
bool L_1;
|
|
L_1 = InvokerFuncInvoker2< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 59)), il2cpp_rgctx_method(method->klass->rgctx_data, 59), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_0: *(void**)L_0), (Il2CppFullySharedGenericAny*)V_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_get_Keys_mFB7259BEF1260F41B8D3518183349BEA64412311_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* L_0;
|
|
L_0 = (( ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 60)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 60));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_Generic_IReadOnlyDictionaryU3CTKeyU2CTValueU3E_get_Keys_m9A1A7D9913C0E591E0F7BA72B863AB9918523207_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* L_0;
|
|
L_0 = (( ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 60)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 60));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_get_Values_m4AFBB5710869A753B5E89CDC1D269CA302F99FD9_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* L_0;
|
|
L_0 = (( ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 64)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 64));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_Generic_IReadOnlyDictionaryU3CTKeyU2CTValueU3E_get_Values_m97AEC4C2C5D0F9E003D8A0BD8C6FC837ED42842F_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* L_0;
|
|
L_0 = (( ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 64)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 64));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Add_mB91CF82B34FFCC4ED31CA846C7B0F17E34EB3726_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 ___0_keyValuePair, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)), il2cpp_rgctx_method(method->klass->rgctx_data, 10), (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)___0_keyValuePair, (Il2CppFullySharedGenericAny*)L_0);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 16)), il2cpp_rgctx_method(method->klass->rgctx_data, 16), (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)___0_keyValuePair, (Il2CppFullySharedGenericAny*)L_1);
|
|
NullCheck((RuntimeObject*)__this);
|
|
InterfaceActionInvoker2Invoker< Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 68), (RuntimeObject*)__this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_0: *(void**)L_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_1: *(void**)L_1));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Contains_m2C94785221845049CC56412AEB3F0B5EE13BDEA7_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 ___0_keyValuePair, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_0, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)), il2cpp_rgctx_method(method->klass->rgctx_data, 10), (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)___0_keyValuePair, (Il2CppFullySharedGenericAny*)L_0);
|
|
bool L_1;
|
|
L_1 = InvokerFuncInvoker2< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 28)), il2cpp_rgctx_method(method->klass->rgctx_data, 28), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_0: *(void**)L_0), (Il2CppFullySharedGenericAny*)V_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
EqualityComparer_1_t974B6EF56BCA01CA6AD3434C04A3F054C43783CC* L_2;
|
|
L_2 = (( EqualityComparer_1_t974B6EF56BCA01CA6AD3434C04A3F054C43783CC* (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 33)))(il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
il2cpp_codegen_memcpy(L_3, V_0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 16)), il2cpp_rgctx_method(method->klass->rgctx_data, 16), (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)___0_keyValuePair, (Il2CppFullySharedGenericAny*)L_4);
|
|
NullCheck(L_2);
|
|
bool L_5;
|
|
L_5 = VirtualFuncInvoker2Invoker< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(8, L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_4: *(void**)L_4));
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_get_IsReadOnly_mE2C54BEA1DE0B6A2373F3D15DD5DF0B49D5D5EAF_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_Generic_ICollectionU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_Remove_m882A8610C8C7A397ED7CA5BC5875A0C98E49BA36_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669 ___0_keyValuePair, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_3 = L_0;
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_0, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)), il2cpp_rgctx_method(method->klass->rgctx_data, 10), (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)___0_keyValuePair, (Il2CppFullySharedGenericAny*)L_0);
|
|
bool L_1 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12), L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral561DA6E332E7EF45E52D96B07EC786D85C2955BE)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral020F27A067D9C2A1BC9628BCE378DE63A6F2B5BE)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)), il2cpp_rgctx_method(method->klass->rgctx_data, 10), (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)___0_keyValuePair, (Il2CppFullySharedGenericAny*)L_3);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 16)), il2cpp_rgctx_method(method->klass->rgctx_data, 16), (KeyValuePair_2_t28EF90BF7804CE5D7F99A364266351E7DC652669*)___0_keyValuePair, (Il2CppFullySharedGenericAny*)L_4);
|
|
bool L_5;
|
|
L_5 = InvokerFuncInvoker4< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny*, bool, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 29)), il2cpp_rgctx_method(method->klass->rgctx_data, 29), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_3: *(void**)L_3), (Il2CppFullySharedGenericAny*)V_0, (bool)1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_4: *(void**)L_4));
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IEnumerable_GetEnumerator_m067A04B1E5100135B9D3D280C142C3840B8B6664_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = (( RuntimeObject* (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 70)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 70));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_IDictionary_Add_m06677641693CE2CEA2129EF908F04C5A84AC0095_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
const Il2CppFullySharedGenericAny L_11 = L_4;
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_0, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFD8CE285C77CDFBCDCBA338A795AFF019E6C3B66)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
}
|
|
try
|
|
{
|
|
RuntimeObject* L_3 = ___1_value;
|
|
void* L_5 = UnBox_Any(L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 17), L_4);
|
|
il2cpp_codegen_memcpy(V_0, (((Il2CppFullySharedGenericAny)((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_5))), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
goto IL_0031;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_0025;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_0025:
|
|
{
|
|
InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E* L_6 = ((InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*)IL2CPP_GET_ACTIVE_EXCEPTION(InvalidCastException_t47FC62F21A3937E814D20381DDACEF240E95AC2E*));;
|
|
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_m026938A67AF9D36BB7ED27F80425D7194B514465(L_7, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral20D029102A70CD96274496928ED59E8B9C014BBA)), NULL);
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
RuntimeObject* L_8 = ___0_key;
|
|
void* L_10 = UnBox_Any(L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 12), L_9);
|
|
il2cpp_codegen_memcpy(L_11, V_0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
NullCheck((RuntimeObject*)__this);
|
|
InterfaceActionInvoker2Invoker< Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(5, il2cpp_rgctx_data(method->klass->rgctx_data, 68), (RuntimeObject*)__this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? (((Il2CppFullySharedGenericAny)((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_10))): *(void**)(((Il2CppFullySharedGenericAny)((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_10)))), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_11: *(void**)L_11));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_IDictionary_Contains_mDBFDE9C27485B0906901D8817CE9E8EADF270B2D_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_key;
|
|
void* L_4 = UnBox_Any(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 12), L_3);
|
|
bool L_5;
|
|
L_5 = InvokerFuncInvoker1< bool, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 71)), il2cpp_rgctx_method(method->klass->rgctx_data, 71), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? (((Il2CppFullySharedGenericAny)((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_4))): *(void**)(((Il2CppFullySharedGenericAny)((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_4)))));
|
|
return L_5;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IDictionary_GetEnumerator_m3401A01C25F9B8BE9CBEF5375640E47FF18E3E39_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
DictionaryEnumerator_t50968DBECB732082714E6294722DC51777C8A22A* L_0 = (DictionaryEnumerator_t50968DBECB732082714E6294722DC51777C8A22A*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 72));
|
|
(( void (*) (DictionaryEnumerator_t50968DBECB732082714E6294722DC51777C8A22A*, ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 73)))(L_0, __this, il2cpp_rgctx_method(method->klass->rgctx_data, 73));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_IDictionary_get_IsFixedSize_m992C27CFC95AEA9467BEDB5D7038BCEA745B1DA9_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_IDictionary_get_IsReadOnly_mD3FE3455B4BA9AD532EBB0A40AACD7436879D3A1_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IDictionary_get_Keys_m52EAFCB7CE4E20E70DC7688674E7460F811BB005_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* L_0;
|
|
L_0 = (( ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 60)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 60));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_IDictionary_Remove_m872F8CEFF9F16157385F248DFFE42A0E2FF1AF95_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_0, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_key;
|
|
void* L_4 = UnBox_Any(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 12), L_3);
|
|
bool L_5;
|
|
L_5 = InvokerFuncInvoker2< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 59)), il2cpp_rgctx_method(method->klass->rgctx_data, 59), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? (((Il2CppFullySharedGenericAny)((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_4))): *(void**)(((Il2CppFullySharedGenericAny)((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_4)))), (Il2CppFullySharedGenericAny*)V_0);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IDictionary_get_Values_m3464C3463F8C09F1E70F0CC8958A22F18E43D19E_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* L_0;
|
|
L_0 = (( ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 64)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 64));
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_IDictionary_get_Item_m566C8F3BBA17807BB1CEF134C17D6A60955C1860_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
memset(V_0, 0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (!((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___0_key;
|
|
void* L_4 = UnBox_Any(L_2, il2cpp_rgctx_data(method->klass->rgctx_data, 12), L_3);
|
|
bool L_5;
|
|
L_5 = InvokerFuncInvoker2< bool, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 28)), il2cpp_rgctx_method(method->klass->rgctx_data, 28), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? (((Il2CppFullySharedGenericAny)((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_4))): *(void**)(((Il2CppFullySharedGenericAny)((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_4)))), (Il2CppFullySharedGenericAny*)V_0);
|
|
if (!L_5)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_6, V_0, SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
RuntimeObject* L_7 = Box(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17), L_6);
|
|
return L_7;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
return NULL;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_IDictionary_set_Item_mDB89BB0838AFD262BE7D3F1604FE2AB1721CEC8A_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)))(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
RuntimeObject* L_1 = ___0_key;
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 12))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_2 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralFD8CE285C77CDFBCDCBA338A795AFF019E6C3B66)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, method);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
RuntimeObject* L_3 = ___1_value;
|
|
if (((RuntimeObject*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 17))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_4 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_4, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral20D029102A70CD96274496928ED59E8B9C014BBA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, method);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
RuntimeObject* L_5 = ___0_key;
|
|
void* L_7 = UnBox_Any(L_5, il2cpp_rgctx_data(method->klass->rgctx_data, 12), L_6);
|
|
RuntimeObject* L_8 = ___1_value;
|
|
void* L_10 = UnBox_Any(L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 17), L_9);
|
|
InvokerActionInvoker2< Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 74)), il2cpp_rgctx_method(method->klass->rgctx_data, 74), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? (((Il2CppFullySharedGenericAny)((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7))): *(void**)(((Il2CppFullySharedGenericAny)((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_7)))), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? (((Il2CppFullySharedGenericAny)((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_10))): *(void**)(((Il2CppFullySharedGenericAny)((Il2CppFullySharedGenericAny)(Il2CppFullySharedGenericAny*)L_10)))));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_System_Collections_ICollection_CopyTo_m83DE666C7BAB44677E1D0CDA16D76998451EB411_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, RuntimeArray* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* V_3 = NULL;
|
|
DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* V_4 = NULL;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
{
|
|
RuntimeArray* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
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:
|
|
{
|
|
int32_t L_2 = ___1_index;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralD0D86565E49BD212E7AC64BABD33BE3668A4C45B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00cc:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 44)))(__this, 0, L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 43)))(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_5 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_1 = L_5;
|
|
V_2 = 0;
|
|
V_6 = 0;
|
|
goto IL_0050_1;
|
|
}
|
|
|
|
IL_003c_1:
|
|
{
|
|
int32_t L_6 = V_2;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_8 = L_7->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_9 = V_6;
|
|
NullCheck(L_8);
|
|
int32_t L_10 = L_9;
|
|
int32_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10));
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_6, L_11));
|
|
int32_t L_12 = V_6;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
}
|
|
|
|
IL_0050_1:
|
|
{
|
|
int32_t L_13 = V_6;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_14 = V_1;
|
|
NullCheck(L_14);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_15 = L_14->____locks;
|
|
NullCheck(L_15);
|
|
if ((((int32_t)L_13) >= ((int32_t)((int32_t)(((RuntimeArray*)L_15)->max_length)))))
|
|
{
|
|
goto IL_0060_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_2;
|
|
if ((((int32_t)L_16) >= ((int32_t)0)))
|
|
{
|
|
goto IL_003c_1;
|
|
}
|
|
}
|
|
|
|
IL_0060_1:
|
|
{
|
|
RuntimeArray* L_17 = ___0_array;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = Array_get_Length_m361285FB7CF44045DC369834D1CD01F72F94EF57(L_17, NULL);
|
|
int32_t L_19 = V_2;
|
|
int32_t L_20 = ___1_index;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_18, L_19))) < ((int32_t)L_20)))
|
|
{
|
|
goto IL_006f_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = V_2;
|
|
if ((((int32_t)L_21) >= ((int32_t)0)))
|
|
{
|
|
goto IL_007a_1;
|
|
}
|
|
}
|
|
|
|
IL_006f_1:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_22 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_22, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral672E993A9AD93822B712B165C6987759C6DED80B)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, method);
|
|
}
|
|
|
|
IL_007a_1:
|
|
{
|
|
RuntimeArray* L_23 = ___0_array;
|
|
V_3 = ((KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57*)IsInst((RuntimeObject*)L_23, il2cpp_rgctx_data(method->klass->rgctx_data, 45)));
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_24 = V_3;
|
|
if (!L_24)
|
|
{
|
|
goto IL_008e_1;
|
|
}
|
|
}
|
|
{
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_25 = V_3;
|
|
int32_t L_26 = ___1_index;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 46)))(__this, L_25, L_26, il2cpp_rgctx_method(method->klass->rgctx_data, 46));
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_008e_1:
|
|
{
|
|
RuntimeArray* L_27 = ___0_array;
|
|
V_4 = ((DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533*)IsInst((RuntimeObject*)L_27, DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533_il2cpp_TypeInfo_var));
|
|
DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* L_28 = V_4;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00a5_1;
|
|
}
|
|
}
|
|
{
|
|
DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533* L_29 = V_4;
|
|
int32_t L_30 = ___1_index;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, DictionaryEntryU5BU5D_t410156653E754D17B5E1161CC6CF565103B63533*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 75)))(__this, L_29, L_30, il2cpp_rgctx_method(method->klass->rgctx_data, 75));
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_00a5_1:
|
|
{
|
|
RuntimeArray* L_31 = ___0_array;
|
|
V_5 = ((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)IsInst((RuntimeObject*)L_31, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_32 = V_5;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00bc_1;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_33 = V_5;
|
|
int32_t L_34 = ___1_index;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 76)))(__this, L_33, L_34, il2cpp_rgctx_method(method->klass->rgctx_data, 76));
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_00bc_1:
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_35 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_35, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA05D9DA01CB9AD0AA6BE899FE1E39018B72923DB)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_35, method);
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentDictionary_2_System_Collections_ICollection_get_IsSynchronized_m20B7DE7AF656FF5F0F1D1BFAE0AF0FFCC2E89042_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentDictionary_2_System_Collections_ICollection_get_SyncRoot_m8AD982FEACF3DB9191434BE19BF7A1A5B1F1EC69_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4CC02BED909F9630E59013E4804C6C269FF8370A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_GrowTable_mB6A05711EB1E3E4657393BA2295265B9C4746A93_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, Tables_tD895B223685217918C345ED5D52074F7E29E5F95* ___0_tables, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const Il2CppFullySharedGenericAny L_68 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
const Il2CppFullySharedGenericAny L_70 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
int32_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_4 = NULL;
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* V_5 = NULL;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_6 = NULL;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
int32_t V_9 = 0;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* V_10 = NULL;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_01fd:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 44)))(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 77)))(__this, 0, 1, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 77));
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_1 = ___0_tables;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_2 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((((RuntimeObject*)(Tables_tD895B223685217918C345ED5D52074F7E29E5F95*)L_1) == ((RuntimeObject*)(Tables_tD895B223685217918C345ED5D52074F7E29E5F95*)L_2)))
|
|
{
|
|
goto IL_001c_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_001c_1:
|
|
{
|
|
V_1 = ((int64_t)0);
|
|
V_7 = 0;
|
|
goto IL_0039_1;
|
|
}
|
|
|
|
IL_0024_1:
|
|
{
|
|
int64_t L_3 = V_1;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_4 = ___0_tables;
|
|
NullCheck(L_4);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_5 = L_4->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
int32_t L_6 = V_7;
|
|
NullCheck(L_5);
|
|
int32_t L_7 = L_6;
|
|
int32_t L_8 = (L_5)->GetAt(static_cast<il2cpp_array_size_t>(L_7));
|
|
V_1 = ((int64_t)il2cpp_codegen_add(L_3, ((int64_t)L_8)));
|
|
int32_t L_9 = V_7;
|
|
V_7 = ((int32_t)il2cpp_codegen_add(L_9, 1));
|
|
}
|
|
|
|
IL_0039_1:
|
|
{
|
|
int32_t L_10 = V_7;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_11 = ___0_tables;
|
|
NullCheck(L_11);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12 = L_11->____countPerLock;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_12);
|
|
if ((((int32_t)L_10) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
|
|
{
|
|
goto IL_0024_1;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_13 = V_1;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_14 = ___0_tables;
|
|
NullCheck(L_14);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_15 = L_14->____buckets;
|
|
NullCheck(L_15);
|
|
if ((((int64_t)L_13) >= ((int64_t)((int64_t)((int32_t)(((int32_t)(((RuntimeArray*)L_15)->max_length))/4))))))
|
|
{
|
|
goto IL_007c_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = __this->____budget;
|
|
__this->____budget = ((int32_t)il2cpp_codegen_multiply(2, L_16));
|
|
int32_t L_17 = __this->____budget;
|
|
if ((((int32_t)L_17) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0077_1;
|
|
}
|
|
}
|
|
{
|
|
__this->____budget = ((int32_t)2147483647LL);
|
|
}
|
|
|
|
IL_0077_1:
|
|
{
|
|
goto IL_0206;
|
|
}
|
|
|
|
IL_007c_1:
|
|
{
|
|
V_2 = 0;
|
|
V_3 = (bool)0;
|
|
}
|
|
try
|
|
{
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_18 = ___0_tables;
|
|
NullCheck(L_18);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_19 = L_18->____buckets;
|
|
NullCheck(L_19);
|
|
if (((int64_t)((int32_t)(((RuntimeArray*)L_19)->max_length)) * (int64_t)2 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)(((RuntimeArray*)L_19)->max_length)) * (int64_t)2 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
if (((int64_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_19)->max_length)), 2)) + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_19)->max_length)), 2)) + (int64_t)1 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
V_2 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_19)->max_length)), 2)), 1));
|
|
goto IL_0093_2;
|
|
}
|
|
|
|
IL_008f_2:
|
|
{
|
|
int32_t L_20 = V_2;
|
|
if (((int64_t)L_20 + (int64_t)2 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_20 + (int64_t)2 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_20, 2));
|
|
}
|
|
|
|
IL_0093_2:
|
|
{
|
|
int32_t L_21 = V_2;
|
|
if (!((int32_t)(L_21%3)))
|
|
{
|
|
goto IL_008f_2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_22 = V_2;
|
|
if (!((int32_t)(L_22%5)))
|
|
{
|
|
goto IL_008f_2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_23 = V_2;
|
|
if (!((int32_t)(L_23%7)))
|
|
{
|
|
goto IL_008f_2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_24 = V_2;
|
|
if ((((int32_t)L_24) <= ((int32_t)((int32_t)2146435071))))
|
|
{
|
|
goto IL_00ac_2;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)1;
|
|
}
|
|
|
|
IL_00ac_2:
|
|
{
|
|
goto IL_00b3_1;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_00ae_1;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_00ae_1:
|
|
{
|
|
OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C* L_25 = ((OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*)IL2CPP_GET_ACTIVE_EXCEPTION(OverflowException_t6F6AD8CACE20C37F701C05B373A215C4802FAB0C*));;
|
|
V_3 = (bool)1;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_00b3_1;
|
|
}
|
|
|
|
IL_00b3_1:
|
|
{
|
|
bool L_26 = V_3;
|
|
if (!L_26)
|
|
{
|
|
goto IL_00c7_1;
|
|
}
|
|
}
|
|
{
|
|
V_2 = ((int32_t)2146435071);
|
|
__this->____budget = ((int32_t)2147483647LL);
|
|
}
|
|
|
|
IL_00c7_1:
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_27 = ___0_tables;
|
|
NullCheck(L_27);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_28 = L_27->____locks;
|
|
NullCheck(L_28);
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 77)))(__this, 1, ((int32_t)(((RuntimeArray*)L_28)->max_length)), (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 77));
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_29 = ___0_tables;
|
|
NullCheck(L_29);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_30 = L_29->____locks;
|
|
V_4 = L_30;
|
|
bool L_31 = __this->____growLockArray;
|
|
if (!L_31)
|
|
{
|
|
goto IL_0143_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_32 = ___0_tables;
|
|
NullCheck(L_32);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_33 = L_32->____locks;
|
|
NullCheck(L_33);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_33)->max_length))) >= ((int32_t)((int32_t)1024))))
|
|
{
|
|
goto IL_0143_1;
|
|
}
|
|
}
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_34 = ___0_tables;
|
|
NullCheck(L_34);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_35 = L_34->____locks;
|
|
NullCheck(L_35);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_36 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_multiply(((int32_t)(((RuntimeArray*)L_35)->max_length)), 2)));
|
|
V_4 = L_36;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_37 = ___0_tables;
|
|
NullCheck(L_37);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_38 = L_37->____locks;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_39 = V_4;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_40 = ___0_tables;
|
|
NullCheck(L_40);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_41 = L_40->____locks;
|
|
NullCheck(L_41);
|
|
Array_Copy_mB4904E17BD92E320613A3251C0205E0786B3BF41((RuntimeArray*)L_38, 0, (RuntimeArray*)L_39, 0, ((int32_t)(((RuntimeArray*)L_41)->max_length)), NULL);
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_42 = ___0_tables;
|
|
NullCheck(L_42);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_43 = L_42->____locks;
|
|
NullCheck(L_43);
|
|
V_8 = ((int32_t)(((RuntimeArray*)L_43)->max_length));
|
|
goto IL_013b_1;
|
|
}
|
|
|
|
IL_012b_1:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_44 = V_4;
|
|
int32_t L_45 = V_8;
|
|
RuntimeObject* L_46 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_46, NULL);
|
|
NullCheck(L_44);
|
|
ArrayElementTypeCheck (L_44, L_46);
|
|
(L_44)->SetAt(static_cast<il2cpp_array_size_t>(L_45), (RuntimeObject*)L_46);
|
|
int32_t L_47 = V_8;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_47, 1));
|
|
}
|
|
|
|
IL_013b_1:
|
|
{
|
|
int32_t L_48 = V_8;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_49 = V_4;
|
|
NullCheck(L_49);
|
|
if ((((int32_t)L_48) < ((int32_t)((int32_t)(((RuntimeArray*)L_49)->max_length)))))
|
|
{
|
|
goto IL_012b_1;
|
|
}
|
|
}
|
|
|
|
IL_0143_1:
|
|
{
|
|
int32_t L_50 = V_2;
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_51 = (NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A*)(NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 23), (uint32_t)L_50);
|
|
V_5 = L_51;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_52 = V_4;
|
|
NullCheck(L_52);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_53 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)((int32_t)(((RuntimeArray*)L_52)->max_length)));
|
|
V_6 = L_53;
|
|
V_9 = 0;
|
|
goto IL_01c7_1;
|
|
}
|
|
|
|
IL_015b_1:
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_54 = ___0_tables;
|
|
NullCheck(L_54);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_55 = L_54->____buckets;
|
|
int32_t L_56 = V_9;
|
|
NullCheck(L_55);
|
|
int32_t L_57 = L_56;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_58 = (L_55)->GetAt(static_cast<il2cpp_array_size_t>(L_57));
|
|
V_10 = L_58;
|
|
goto IL_01bd_1;
|
|
}
|
|
|
|
IL_0168_1:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_59 = V_10;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_60 = *(Node_tC5111E77A2002D0AD173457666915D4D0BD59865**)il2cpp_codegen_get_instance_field_data_pointer(L_59, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2));
|
|
il2cpp_codegen_memory_barrier();
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_61 = V_10;
|
|
int32_t L_62 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(L_61, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),3));
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_63 = V_5;
|
|
NullCheck(L_63);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_64 = V_4;
|
|
NullCheck(L_64);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (int32_t, int32_t*, int32_t*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 30)))(L_62, (&V_11), (&V_12), ((int32_t)(((RuntimeArray*)L_63)->max_length)), ((int32_t)(((RuntimeArray*)L_64)->max_length)), il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_65 = V_5;
|
|
int32_t L_66 = V_11;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_67 = V_10;
|
|
il2cpp_codegen_memcpy(L_68, il2cpp_codegen_get_instance_field_data_pointer(L_67, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),0)), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_69 = V_10;
|
|
il2cpp_codegen_memcpy(L_70, il2cpp_codegen_get_instance_field_data_pointer(L_69, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),1)), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_71 = V_10;
|
|
int32_t L_72 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(L_71, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),3));
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_73 = V_5;
|
|
int32_t L_74 = V_11;
|
|
NullCheck(L_73);
|
|
int32_t L_75 = L_74;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_76 = (L_73)->GetAt(static_cast<il2cpp_array_size_t>(L_75));
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_77 = (Node_tC5111E77A2002D0AD173457666915D4D0BD59865*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 31));
|
|
InvokerActionInvoker4< Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, int32_t, Node_tC5111E77A2002D0AD173457666915D4D0BD59865* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 52)), il2cpp_rgctx_method(method->klass->rgctx_data, 52), L_77, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_68: *(void**)L_68), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_70: *(void**)L_70), L_72, L_76);
|
|
NullCheck(L_65);
|
|
(L_65)->SetAt(static_cast<il2cpp_array_size_t>(L_66), (Node_tC5111E77A2002D0AD173457666915D4D0BD59865*)L_77);
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_78 = V_6;
|
|
int32_t L_79 = V_12;
|
|
NullCheck(L_78);
|
|
int32_t* L_80 = ((L_78)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_79)));
|
|
int32_t L_81 = *((int32_t*)L_80);
|
|
if (((int64_t)L_81 + (int64_t)1 < (int64_t)kIl2CppInt32Min) || ((int64_t)L_81 + (int64_t)1 > (int64_t)kIl2CppInt32Max))
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
*((int32_t*)L_80) = (int32_t)((int32_t)il2cpp_codegen_add(L_81, 1));
|
|
V_10 = L_60;
|
|
}
|
|
|
|
IL_01bd_1:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_82 = V_10;
|
|
if (L_82)
|
|
{
|
|
goto IL_0168_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_83 = V_9;
|
|
V_9 = ((int32_t)il2cpp_codegen_add(L_83, 1));
|
|
}
|
|
|
|
IL_01c7_1:
|
|
{
|
|
int32_t L_84 = V_9;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_85 = ___0_tables;
|
|
NullCheck(L_85);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_86 = L_85->____buckets;
|
|
NullCheck(L_86);
|
|
if ((((int32_t)L_84) < ((int32_t)((int32_t)(((RuntimeArray*)L_86)->max_length)))))
|
|
{
|
|
goto IL_015b_1;
|
|
}
|
|
}
|
|
{
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_87 = V_5;
|
|
NullCheck(L_87);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_88 = V_4;
|
|
NullCheck(L_88);
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_89;
|
|
L_89 = Math_Max_m530EBA549AFD98CFC2BD29FE86C6376E67DF11CF(1, ((int32_t)(((int32_t)(((RuntimeArray*)L_87)->max_length))/((int32_t)(((RuntimeArray*)L_88)->max_length)))), NULL);
|
|
__this->____budget = L_89;
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_90 = V_5;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_91 = V_4;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_92 = V_6;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_93 = (Tables_tD895B223685217918C345ED5D52074F7E29E5F95*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 21));
|
|
(( void (*) (Tables_tD895B223685217918C345ED5D52074F7E29E5F95*, NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 24)))(L_93, L_90, L_91, L_92, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tables = L_93;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tables), (void*)L_93);
|
|
goto IL_0206;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0206:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_GetBucket_m03138F665728DE0C8A4DA4A1720688414FC3C19B_gshared (int32_t ___0_hashcode, int32_t ___1_bucketCount, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_hashcode;
|
|
int32_t L_1 = ___1_bucketCount;
|
|
return ((int32_t)(((int32_t)(L_0&((int32_t)2147483647LL)))%L_1));
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_GetBucketAndLockNo_mE101532D7BE14E9975B37B3B265789858E3FDEBA_gshared (int32_t ___0_hashcode, int32_t* ___1_bucketNo, int32_t* ___2_lockNo, int32_t ___3_bucketCount, int32_t ___4_lockCount, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t* L_0 = ___1_bucketNo;
|
|
int32_t L_1 = ___0_hashcode;
|
|
int32_t L_2 = ___3_bucketCount;
|
|
*((int32_t*)L_0) = (int32_t)((int32_t)(((int32_t)(L_1&((int32_t)2147483647LL)))%L_2));
|
|
int32_t* L_3 = ___2_lockNo;
|
|
int32_t* L_4 = ___1_bucketNo;
|
|
int32_t L_5 = *((int32_t*)L_4);
|
|
int32_t L_6 = ___4_lockCount;
|
|
*((int32_t*)L_3) = (int32_t)((int32_t)(L_5%L_6));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentDictionary_2_get_DefaultConcurrencyLevel_m81D29524F689635A16DBE57641F159E3CF7218A6_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PlatformHelper_t5E497382616B62F0B318E53D098F90E22AB35722_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PlatformHelper_t5E497382616B62F0B318E53D098F90E22AB35722_il2cpp_TypeInfo_var);
|
|
int32_t L_0;
|
|
L_0 = PlatformHelper_get_ProcessorCount_m123AB465E201104882D03864A7C6E08F1A55F3F9(NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_AcquireAllLocks_m116BB98251DC473C28D00F477613C1F68EF7EB8D_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, int32_t* ___0_locksAcquired, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var);
|
|
CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999* L_0 = ((CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_StaticFields*)il2cpp_codegen_static_fields_for(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var))->___Log;
|
|
NullCheck((EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25*)L_0);
|
|
bool L_1;
|
|
L_1 = EventSource_IsEnabled_m0B2F63F81423D7832DC5526D0F3490C77CAB57A5((EventSource_tA86759A1E6F272632C299AAC181C0A67E5C52F25*)L_0, NULL);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var);
|
|
CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999* L_2 = ((CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_StaticFields*)il2cpp_codegen_static_fields_for(CDSCollectionETWBCLProvider_tA904DD9138642E1D0520625652906C4775E3C999_il2cpp_TypeInfo_var))->___Log;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_3 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_3);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_4 = L_3->____buckets;
|
|
NullCheck(L_4);
|
|
NullCheck(L_2);
|
|
CDSCollectionETWBCLProvider_ConcurrentDictionary_AcquiringAllLocks_mF33BBE9D19970C7F3C3DB3C0F6BCF16BEEC26EFA(L_2, ((int32_t)(((RuntimeArray*)L_4)->max_length)), NULL);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
int32_t* L_5 = ___0_locksAcquired;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 77)))(__this, 0, 1, L_5, il2cpp_rgctx_method(method->klass->rgctx_data, 77));
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_6 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_6);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = L_6->____locks;
|
|
NullCheck(L_7);
|
|
int32_t* L_8 = ___0_locksAcquired;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 77)))(__this, 1, ((int32_t)(((RuntimeArray*)L_7)->max_length)), L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 77));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_AcquireLocks_mCDAED510DBF85E983BCB08E9A214020EDE61D999_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, int32_t* ___2_locksAcquired, const RuntimeMethod* method)
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_0);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = L_0->____locks;
|
|
V_0 = L_1;
|
|
int32_t L_2 = ___0_fromInclusive;
|
|
V_1 = L_2;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
V_2 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0020:
|
|
{
|
|
{
|
|
bool L_3 = V_2;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_4 = ___2_locksAcquired;
|
|
int32_t* L_5 = ___2_locksAcquired;
|
|
int32_t L_6 = *((int32_t*)L_5);
|
|
*((int32_t*)L_4) = (int32_t)((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = V_0;
|
|
int32_t L_8 = V_1;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
RuntimeObject* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_10, (&V_2), NULL);
|
|
goto IL_002a;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
int32_t L_11 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_11, 1));
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
int32_t L_12 = V_1;
|
|
int32_t L_13 = ___1_toExclusive;
|
|
if ((((int32_t)L_12) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_ReleaseLocks_mDD3A19565988306ADEA547D93369C5FADCAF3F5B_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, int32_t ___0_fromInclusive, int32_t ___1_toExclusive, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_fromInclusive;
|
|
V_0 = L_0;
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_0004:
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_1 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_1);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = L_1->____locks;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_5, NULL);
|
|
int32_t L_6 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
int32_t L_8 = ___1_toExclusive;
|
|
if ((((int32_t)L_7) < ((int32_t)L_8)))
|
|
{
|
|
goto IL_0004;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* ConcurrentDictionary_2_GetKeys_m1EC8E74E7D861CE4E659320B44AFD1F12D3CE524_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
int32_t V_0 = 0;
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* V_3 = NULL;
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* V_4 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B2_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006e:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 44)))(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 43)))(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 55)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 55));
|
|
int32_t L_2 = L_1;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
G_B3_0 = L_2;
|
|
goto IL_001a_1;
|
|
}
|
|
G_B2_0 = L_2;
|
|
}
|
|
{
|
|
OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* L_3 = (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var)));
|
|
OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951(L_3, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001a_1:
|
|
{
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* L_4 = (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 78));
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 79)))(L_4, G_B3_0, il2cpp_rgctx_method(method->klass->rgctx_data, 79));
|
|
V_1 = L_4;
|
|
V_2 = 0;
|
|
goto IL_0052_1;
|
|
}
|
|
|
|
IL_0024_1:
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_5 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_5);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_6 = L_5->____buckets;
|
|
int32_t L_7 = V_2;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
V_3 = L_9;
|
|
goto IL_004b_1;
|
|
}
|
|
|
|
IL_0036_1:
|
|
{
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* L_10 = V_1;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_11 = V_3;
|
|
il2cpp_codegen_memcpy(L_12, il2cpp_codegen_get_instance_field_data_pointer(L_11, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),0)), SizeOf_TKey_tCC55C40A53F1EAEC3F26E4225BC710D59DE23034);
|
|
NullCheck(L_10);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 80)), il2cpp_rgctx_method(method->klass->rgctx_data, 80), L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_12: *(void**)L_12));
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_13 = V_3;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_14 = *(Node_tC5111E77A2002D0AD173457666915D4D0BD59865**)il2cpp_codegen_get_instance_field_data_pointer(L_13, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2));
|
|
il2cpp_codegen_memory_barrier();
|
|
V_3 = L_14;
|
|
}
|
|
|
|
IL_004b_1:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_15 = V_3;
|
|
if (L_15)
|
|
{
|
|
goto IL_0036_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0052_1:
|
|
{
|
|
int32_t L_17 = V_2;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_18 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_18);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_19 = L_18->____buckets;
|
|
NullCheck(L_19);
|
|
if ((((int32_t)L_17) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))
|
|
{
|
|
goto IL_0024_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* L_20 = V_1;
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* L_21 = (ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 61));
|
|
(( void (*) (ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 81)))(L_21, (RuntimeObject*)L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 81));
|
|
V_4 = L_21;
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* L_22 = V_4;
|
|
return L_22;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* ConcurrentDictionary_2_GetValues_mCC2139859753771D33B9F9BA3273EAF46B04ED52_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17));
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
int32_t V_0 = 0;
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* V_3 = NULL;
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* V_4 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B2_0 = 0;
|
|
{
|
|
V_0 = 0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006e:
|
|
{
|
|
int32_t L_0 = V_0;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 44)))(__this, 0, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 44));
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 43)))(__this, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 43));
|
|
int32_t L_1;
|
|
L_1 = (( int32_t (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 55)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 55));
|
|
int32_t L_2 = L_1;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
G_B3_0 = L_2;
|
|
goto IL_001a_1;
|
|
}
|
|
G_B2_0 = L_2;
|
|
}
|
|
{
|
|
OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F* L_3 = (OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&OutOfMemoryException_tE6DC2F937EC4A8699271D5151C4DF83BDE99EE7F_il2cpp_TypeInfo_var)));
|
|
OutOfMemoryException__ctor_m2CDADA05A6304090686E8D5E3E99A1596FAF5951(L_3, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_001a_1:
|
|
{
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* L_4 = (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 83));
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 84)))(L_4, G_B3_0, il2cpp_rgctx_method(method->klass->rgctx_data, 84));
|
|
V_1 = L_4;
|
|
V_2 = 0;
|
|
goto IL_0052_1;
|
|
}
|
|
|
|
IL_0024_1:
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_5 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_5);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_6 = L_5->____buckets;
|
|
int32_t L_7 = V_2;
|
|
NullCheck(L_6);
|
|
int32_t L_8 = L_7;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8));
|
|
V_3 = L_9;
|
|
goto IL_004b_1;
|
|
}
|
|
|
|
IL_0036_1:
|
|
{
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* L_10 = V_1;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_11 = V_3;
|
|
il2cpp_codegen_memcpy(L_12, il2cpp_codegen_get_instance_field_data_pointer(L_11, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),1)), SizeOf_TValue_tA84E69092AB414DE721A38E63D901FB16B94FAFF);
|
|
NullCheck(L_10);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 85)), il2cpp_rgctx_method(method->klass->rgctx_data, 85), L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 17)) ? L_12: *(void**)L_12));
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_13 = V_3;
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_14 = *(Node_tC5111E77A2002D0AD173457666915D4D0BD59865**)il2cpp_codegen_get_instance_field_data_pointer(L_13, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),2));
|
|
il2cpp_codegen_memory_barrier();
|
|
V_3 = L_14;
|
|
}
|
|
|
|
IL_004b_1:
|
|
{
|
|
Node_tC5111E77A2002D0AD173457666915D4D0BD59865* L_15 = V_3;
|
|
if (L_15)
|
|
{
|
|
goto IL_0036_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0052_1:
|
|
{
|
|
int32_t L_17 = V_2;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_18 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_18);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_19 = L_18->____buckets;
|
|
NullCheck(L_19);
|
|
if ((((int32_t)L_17) < ((int32_t)((int32_t)(((RuntimeArray*)L_19)->max_length)))))
|
|
{
|
|
goto IL_0024_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* L_20 = V_1;
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* L_21 = (ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 65));
|
|
(( void (*) (ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 86)))(L_21, (RuntimeObject*)L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 86));
|
|
V_4 = L_21;
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
ReadOnlyCollection_1_t5B7AA4E006906DE6818A44873F2D5987EFBF3AB8* L_22 = V_4;
|
|
return L_22;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_OnSerializing_m9B65EAFEB34D9D46A4C31A79E060E9782F86FD8C_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___0_context, const RuntimeMethod* method)
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* V_0 = NULL;
|
|
{
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_0 = __this->____tables;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_1;
|
|
L_1 = (( KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 88)))(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 88));
|
|
__this->____serializationArray = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____serializationArray), (void*)L_1);
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_3 = L_2->____locks;
|
|
NullCheck(L_3);
|
|
__this->____serializationConcurrencyLevel = ((int32_t)(((RuntimeArray*)L_3)->max_length));
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_5 = L_4->____buckets;
|
|
NullCheck(L_5);
|
|
__this->____serializationCapacity = ((int32_t)(((RuntimeArray*)L_5)->max_length));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_OnSerialized_m6A8BB19CBAC6EE0EB0B3AF1F424EDE25CD918043_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___0_context, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->____serializationArray = (KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____serializationArray), (void*)(KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2_OnDeserialized_mD01735199C55716C1CDAFFA84F3C04129D476A79_gshared (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812* __this, StreamingContext_t56760522A751890146EE45F82F866B55B7E33677 ___0_context, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* V_0 = NULL;
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* V_1 = NULL;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* V_2 = NULL;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
{
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_0 = __this->____serializationArray;
|
|
V_0 = L_0;
|
|
int32_t L_1 = __this->____serializationCapacity;
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_2 = (NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A*)(NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 23), (uint32_t)L_1);
|
|
V_1 = L_2;
|
|
int32_t L_3 = __this->____serializationConcurrencyLevel;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_4 = (Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*)SZArrayNew(Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C_il2cpp_TypeInfo_var, (uint32_t)L_3);
|
|
V_2 = L_4;
|
|
int32_t L_5 = __this->____serializationConcurrencyLevel;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)L_5);
|
|
V_3 = L_6;
|
|
V_4 = 0;
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_7 = V_3;
|
|
int32_t L_8 = V_4;
|
|
RuntimeObject* L_9 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_9, NULL);
|
|
NullCheck(L_7);
|
|
ArrayElementTypeCheck (L_7, L_9);
|
|
(L_7)->SetAt(static_cast<il2cpp_array_size_t>(L_8), (RuntimeObject*)L_9);
|
|
int32_t L_10 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_10, 1));
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
int32_t L_11 = V_4;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_12 = V_3;
|
|
NullCheck(L_12);
|
|
if ((((int32_t)L_11) < ((int32_t)((int32_t)(((RuntimeArray*)L_12)->max_length)))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A* L_13 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_14 = V_3;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_15 = V_2;
|
|
Tables_tD895B223685217918C345ED5D52074F7E29E5F95* L_16 = (Tables_tD895B223685217918C345ED5D52074F7E29E5F95*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 21));
|
|
(( void (*) (Tables_tD895B223685217918C345ED5D52074F7E29E5F95*, NodeU5BU5D_t7193DC7EDFEC062E7E235A8B377A855C28B9CE9A*, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*, Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 24)))(L_16, L_13, L_14, L_15, il2cpp_rgctx_method(method->klass->rgctx_data, 24));
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tables = L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tables), (void*)L_16);
|
|
KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57* L_17 = V_0;
|
|
(( void (*) (ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 89)))(__this, (RuntimeObject*)L_17, il2cpp_rgctx_method(method->klass->rgctx_data, 89));
|
|
__this->____serializationArray = (KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____serializationArray), (void*)(KeyValuePair_2U5BU5D_t885F2E060B0261B18E97D336746D53BA61338F57*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentDictionary_2__cctor_m96B4F76D0E9460939A672A025F840C82BA15A116_gshared (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0;
|
|
L_0 = (( bool (*) (const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 90)))(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 90));
|
|
((ConcurrentDictionary_2_t6DF554984593E2F9932FAFBF9E1AFD30D1ED0812_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___s_isValueWriteAtomic = L_0;
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1__ctor_m59995C068CA8B944E001E54A2AEF60C20DAC91DC_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_0 = NULL;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
|
|
__this->____crossSegmentLock = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____crossSegmentLock), (void*)L_0);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_1 = (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
Segment__ctor_mE54FC9C999FCB994B13229636F99B4237997DD69(L_1, ((int32_t)32), il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_2 = L_1;
|
|
V_0 = L_2;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____head = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____head), (void*)L_2);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_3 = V_0;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tail = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tail), (void*)L_3);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_InitializeFromCollection_m93ADF8F03ADBFC32B30A55F09B827C8D5C2CC343_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_3 = NULL;
|
|
RuntimeObject* V_4 = NULL;
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
{
|
|
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
|
|
__this->____crossSegmentLock = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____crossSegmentLock), (void*)L_0);
|
|
V_0 = ((int32_t)32);
|
|
RuntimeObject* L_1 = ___0_collection;
|
|
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
|
|
V_2 = L_4;
|
|
int32_t L_5 = V_2;
|
|
int32_t L_6 = V_0;
|
|
if ((((int32_t)L_5) <= ((int32_t)L_6)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_2;
|
|
int32_t L_8;
|
|
L_8 = Segment_RoundUpToPowerOf2_m445F2F69CB72AB1661DD9831B06BCB39A21D99FF(L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 7));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_9;
|
|
L_9 = Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52(L_8, ((int32_t)1048576), NULL);
|
|
V_0 = L_9;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_11 = (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
Segment__ctor_mE54FC9C999FCB994B13229636F99B4237997DD69(L_11, L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_12 = L_11;
|
|
V_3 = L_12;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____head = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____head), (void*)L_12);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_13 = V_3;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tail = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tail), (void*)L_13);
|
|
RuntimeObject* L_14 = ___0_collection;
|
|
NullCheck(L_14);
|
|
RuntimeObject* L_15;
|
|
L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_14);
|
|
V_4 = L_15;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0073:
|
|
{
|
|
{
|
|
RuntimeObject* L_16 = V_4;
|
|
if (!L_16)
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_4;
|
|
NullCheck((RuntimeObject*)L_17);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0068_1;
|
|
}
|
|
|
|
IL_0057_1:
|
|
{
|
|
RuntimeObject* L_18 = V_4;
|
|
NullCheck(L_18);
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD L_19;
|
|
L_19 = InterfaceFuncInvoker0< ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 10), L_18);
|
|
V_5 = L_19;
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD L_20 = V_5;
|
|
ConcurrentQueue_1_Enqueue_m8E8D8D7943565B34DBC93C5C5D56063D0FBC047D(__this, L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0068_1:
|
|
{
|
|
RuntimeObject* L_21 = V_4;
|
|
NullCheck((RuntimeObject*)L_21);
|
|
bool L_22;
|
|
L_22 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_21);
|
|
if (L_22)
|
|
{
|
|
goto IL_0057_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1__ctor_m50B612106316A16D193A5431AB7B41F98066D19F_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
RuntimeObject* L_0 = ___0_collection;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
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*)&_stringLiteral469F05BE9BB4C7903C353D0EB9F6384C84A48B25)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_2 = ___0_collection;
|
|
ConcurrentQueue_1_InitializeFromCollection_m93ADF8F03ADBFC32B30A55F09B827C8D5C2CC343(__this, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_System_Collections_ICollection_CopyTo_m2AD6E44A4749DE4A17C78C85F4D0E961E01A5BAC_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, RuntimeArray* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* V_0 = NULL;
|
|
{
|
|
RuntimeArray* L_0 = ___0_array;
|
|
V_0 = ((ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(method->klass->rgctx_data, 15)));
|
|
ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* L_2 = V_0;
|
|
int32_t L_3 = ___1_index;
|
|
ConcurrentQueue_1_CopyTo_mC5A20108CA000589686CAF69C27C8858BF965265(__this, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
return;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
RuntimeArray* L_4 = ___0_array;
|
|
if (L_4)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_5 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, method);
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* L_6;
|
|
L_6 = ConcurrentQueue_1_ToArray_mF0C0898939538EA4EF991869E22E83F978D2C276(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
RuntimeArray* L_7 = ___0_array;
|
|
int32_t L_8 = ___1_index;
|
|
NullCheck((RuntimeArray*)L_6);
|
|
Array_CopyTo_mFD42E3443AB3B850ED6F19359698E242A08E1BAB((RuntimeArray*)L_6, L_7, L_8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_System_Collections_ICollection_get_IsSynchronized_m915C178B6E2DEF06B839617C717C74C95EBA789B_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_System_Collections_ICollection_get_SyncRoot_m12B53697539A37BA0CC9D8C2158BFEFED444CF7D_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4CC02BED909F9630E59013E4804C6C269FF8370A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_System_Collections_IEnumerable_GetEnumerator_m0CF46EA44474145121F719C8D8EE145A1532A9AF_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NullCheck((RuntimeObject*)__this);
|
|
RuntimeObject* L_0;
|
|
L_0 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), (RuntimeObject*)__this);
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_System_Collections_Concurrent_IProducerConsumerCollectionU3CTU3E_TryAdd_mECA6E5C6A7DDEC4260F1A9325BD6FB0396372BBB_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD L_0 = ___0_item;
|
|
ConcurrentQueue_1_Enqueue_m8E8D8D7943565B34DBC93C5C5D56063D0FBC047D(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_System_Collections_Concurrent_IProducerConsumerCollectionU3CTU3E_TryTake_mB921F7A603B4BE050C1E708B3B5E0B34279A890E_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* L_0 = ___0_item;
|
|
bool L_1;
|
|
L_1 = ConcurrentQueue_1_TryDequeue_mFF536885040B79E9B6DDE22FE56E1744D731D324(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 19));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_get_IsEmpty_m6E9076153FC5EE1F6B5FE496F253950AAB22CC17_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, const RuntimeMethod* method)
|
|
{
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
bool L_0;
|
|
L_0 = ConcurrentQueue_1_TryPeek_m36C441A718E7CC9A0451752DBA91021C87997BA6(__this, (&V_0), (bool)0, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* ConcurrentQueue_1_ToArray_mF0C0898939538EA4EF991869E22E83F978D2C276_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_0 = NULL;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* V_4 = NULL;
|
|
RuntimeObject* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
{
|
|
ConcurrentQueue_1_SnapForObservation_mC813203E9C5757B1DA9466A256DD3C6C2B5836F8(__this, (&V_0), (&V_2), (&V_1), (&V_3), il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_0 = V_0;
|
|
int32_t L_1 = V_2;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_2 = V_1;
|
|
int32_t L_3 = V_3;
|
|
int64_t L_4;
|
|
L_4 = ConcurrentQueue_1_GetCount_m1C16CA95801D6CEA80C60FFA4417CF3C402A3CEF(L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
if ((int64_t)(L_4) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* L_5 = (ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203*)(ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 25), (uint32_t)((intptr_t)L_4));
|
|
V_4 = L_5;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_6 = V_0;
|
|
int32_t L_7 = V_2;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_8 = V_1;
|
|
int32_t L_9 = V_3;
|
|
RuntimeObject* L_10;
|
|
L_10 = ConcurrentQueue_1_Enumerate_mBE8F1F279BCCE097150BEB388AF0C6E6D9F4D345(__this, L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
V_5 = L_10;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0050:
|
|
{
|
|
{
|
|
RuntimeObject* L_11 = V_5;
|
|
if (!L_11)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_12 = V_5;
|
|
NullCheck((RuntimeObject*)L_12);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_6 = 0;
|
|
goto IL_0045_1;
|
|
}
|
|
|
|
IL_0030_1:
|
|
{
|
|
ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* L_13 = V_4;
|
|
int32_t L_14 = V_6;
|
|
int32_t L_15 = L_14;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
RuntimeObject* L_16 = V_5;
|
|
NullCheck(L_16);
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD L_17;
|
|
L_17 = InterfaceFuncInvoker0< ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 10), L_16);
|
|
NullCheck(L_13);
|
|
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD)L_17);
|
|
}
|
|
|
|
IL_0045_1:
|
|
{
|
|
RuntimeObject* L_18 = V_5;
|
|
NullCheck((RuntimeObject*)L_18);
|
|
bool L_19;
|
|
L_19 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_18);
|
|
if (L_19)
|
|
{
|
|
goto IL_0030_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* L_20 = V_4;
|
|
return L_20;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentQueue_1_get_Count_m1BD0AFC4038ADCFC8069F42110364FA025098978_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_0 = NULL;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
{
|
|
il2cpp_codegen_initobj((&V_6), sizeof(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_0 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_1 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_1 = L_1;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_3 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_2->____headAndTail);
|
|
int32_t* L_4 = (int32_t*)(&L_3->___Head);
|
|
int32_t L_5;
|
|
L_5 = VolatileRead(L_4);
|
|
V_2 = L_5;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_7 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_6->____headAndTail);
|
|
int32_t* L_8 = (int32_t*)(&L_7->___Tail);
|
|
int32_t L_9;
|
|
L_9 = VolatileRead(L_8);
|
|
V_3 = L_9;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_10 = V_0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_11 = V_1;
|
|
if ((!(((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_10) == ((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_11))))
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_12 = V_0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_13 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_12) == ((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_13))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_14 = V_0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_15 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_14) == ((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_15))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_2;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_18 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_17->____headAndTail);
|
|
int32_t* L_19 = (int32_t*)(&L_18->___Head);
|
|
int32_t L_20;
|
|
L_20 = VolatileRead(L_19);
|
|
if ((!(((uint32_t)L_16) == ((uint32_t)L_20))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = V_3;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_22 = V_0;
|
|
NullCheck(L_22);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_23 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_22->____headAndTail);
|
|
int32_t* L_24 = (int32_t*)(&L_23->___Tail);
|
|
int32_t L_25;
|
|
L_25 = VolatileRead(L_24);
|
|
if ((!(((uint32_t)L_21) == ((uint32_t)L_25))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_26 = V_0;
|
|
int32_t L_27 = V_2;
|
|
int32_t L_28 = V_3;
|
|
int32_t L_29;
|
|
L_29 = ConcurrentQueue_1_GetCount_mDEC6722E41D6B0CD1D6CA1DCC0EDFF4D4079DB0D(L_26, L_27, L_28, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
return L_29;
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_30 = V_0;
|
|
NullCheck(L_30);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_31 = L_30->____nextSegment;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_32 = V_1;
|
|
if ((!(((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_31) == ((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_32))))
|
|
{
|
|
goto IL_013c;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_33 = V_1;
|
|
NullCheck(L_33);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_34 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_33->____headAndTail);
|
|
int32_t* L_35 = (int32_t*)(&L_34->___Head);
|
|
int32_t L_36;
|
|
L_36 = VolatileRead(L_35);
|
|
V_4 = L_36;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_37 = V_1;
|
|
NullCheck(L_37);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_38 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_37->____headAndTail);
|
|
int32_t* L_39 = (int32_t*)(&L_38->___Tail);
|
|
int32_t L_40;
|
|
L_40 = VolatileRead(L_39);
|
|
V_5 = L_40;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_41 = V_0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_42 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_41) == ((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_42))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_43 = V_1;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_44 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_43) == ((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_44))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_45 = V_2;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_46 = V_0;
|
|
NullCheck(L_46);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_47 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_46->____headAndTail);
|
|
int32_t* L_48 = (int32_t*)(&L_47->___Head);
|
|
int32_t L_49;
|
|
L_49 = VolatileRead(L_48);
|
|
if ((!(((uint32_t)L_45) == ((uint32_t)L_49))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_50 = V_3;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_51 = V_0;
|
|
NullCheck(L_51);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_52 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_51->____headAndTail);
|
|
int32_t* L_53 = (int32_t*)(&L_52->___Tail);
|
|
int32_t L_54;
|
|
L_54 = VolatileRead(L_53);
|
|
if ((!(((uint32_t)L_50) == ((uint32_t)L_54))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_55 = V_4;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_56 = V_1;
|
|
NullCheck(L_56);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_57 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_56->____headAndTail);
|
|
int32_t* L_58 = (int32_t*)(&L_57->___Head);
|
|
int32_t L_59;
|
|
L_59 = VolatileRead(L_58);
|
|
if ((!(((uint32_t)L_55) == ((uint32_t)L_59))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_60 = V_5;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_61 = V_1;
|
|
NullCheck(L_61);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_62 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_61->____headAndTail);
|
|
int32_t* L_63 = (int32_t*)(&L_62->___Tail);
|
|
int32_t L_64;
|
|
L_64 = VolatileRead(L_63);
|
|
if ((!(((uint32_t)L_60) == ((uint32_t)L_64))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_65 = V_0;
|
|
int32_t L_66 = V_2;
|
|
int32_t L_67 = V_3;
|
|
int32_t L_68;
|
|
L_68 = ConcurrentQueue_1_GetCount_mDEC6722E41D6B0CD1D6CA1DCC0EDFF4D4079DB0D(L_65, L_66, L_67, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_69 = V_1;
|
|
int32_t L_70 = V_4;
|
|
int32_t L_71 = V_5;
|
|
int32_t L_72;
|
|
L_72 = ConcurrentQueue_1_GetCount_mDEC6722E41D6B0CD1D6CA1DCC0EDFF4D4079DB0D(L_69, L_70, L_71, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
return ((int32_t)il2cpp_codegen_add(L_68, L_72));
|
|
}
|
|
|
|
IL_013c:
|
|
{
|
|
ConcurrentQueue_1_SnapForObservation_mC813203E9C5757B1DA9466A256DD3C6C2B5836F8(__this, (&V_0), (&V_2), (&V_1), (&V_5), il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_73 = V_0;
|
|
int32_t L_74 = V_2;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_75 = V_1;
|
|
int32_t L_76 = V_5;
|
|
int64_t L_77;
|
|
L_77 = ConcurrentQueue_1_GetCount_m1C16CA95801D6CEA80C60FFA4417CF3C402A3CEF(L_73, L_74, L_75, L_76, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
return ((int32_t)L_77);
|
|
}
|
|
|
|
IL_0156:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
|
|
SpinWait_SpinOnce_m5B74E6B15013E90667646C0D943E886D4EC596AF((&V_6), NULL);
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentQueue_1_GetCount_mDEC6722E41D6B0CD1D6CA1DCC0EDFF4D4079DB0D_gshared (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___0_s, int32_t ___1_head, int32_t ___2_tail, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_head;
|
|
int32_t L_1 = ___2_tail;
|
|
if ((((int32_t)L_0) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___1_head;
|
|
int32_t L_3 = ___2_tail;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_4 = ___0_s;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = Segment_get_FreezeOffset_m85C8B0EBFA5AC151A44A14201B0514303F3F52E2(L_4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28));
|
|
if ((((int32_t)L_2) == ((int32_t)((int32_t)il2cpp_codegen_subtract(L_3, L_5)))))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___1_head;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_7 = ___0_s;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->____slotsMask;
|
|
___1_head = ((int32_t)(L_6&L_8));
|
|
int32_t L_9 = ___2_tail;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_10 = ___0_s;
|
|
NullCheck(L_10);
|
|
int32_t L_11 = L_10->____slotsMask;
|
|
___2_tail = ((int32_t)(L_9&L_11));
|
|
int32_t L_12 = ___1_head;
|
|
int32_t L_13 = ___2_tail;
|
|
if ((((int32_t)L_12) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_14 = ___0_s;
|
|
NullCheck(L_14);
|
|
SlotU5BU5D_t202D2F69C0E5FA34B84D04DFCCFBB57CB7E2F1BD* L_15 = L_14->____slots;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = ___1_head;
|
|
int32_t L_17 = ___2_tail;
|
|
return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_15)->max_length)), L_16)), L_17));
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_18 = ___2_tail;
|
|
int32_t L_19 = ___1_head;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_18, L_19));
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ConcurrentQueue_1_GetCount_m1C16CA95801D6CEA80C60FFA4417CF3C402A3CEF_gshared (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___0_head, int32_t ___1_headHead, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
int64_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_2 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
int64_t G_B6_0 = 0;
|
|
int64_t G_B5_0 = 0;
|
|
int32_t G_B7_0 = 0;
|
|
int64_t G_B7_1 = 0;
|
|
{
|
|
V_0 = ((int64_t)0);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_0 = ___0_head;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_1 = ___2_tail;
|
|
if ((((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_0) == ((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_1)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_2 = ___0_head;
|
|
NullCheck(L_2);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_3 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_2->____headAndTail);
|
|
int32_t* L_4 = (int32_t*)(&L_3->___Tail);
|
|
int32_t L_5;
|
|
L_5 = VolatileRead(L_4);
|
|
G_B3_0 = L_5;
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_6 = ___3_tailTail;
|
|
G_B3_0 = L_6;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_7 = ___0_head;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = Segment_get_FreezeOffset_m85C8B0EBFA5AC151A44A14201B0514303F3F52E2(L_7, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28));
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(G_B3_0, L_8));
|
|
int32_t L_9 = ___1_headHead;
|
|
int32_t L_10 = V_1;
|
|
if ((((int32_t)L_9) >= ((int32_t)L_10)))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = ___1_headHead;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_12 = ___0_head;
|
|
NullCheck(L_12);
|
|
int32_t L_13 = L_12->____slotsMask;
|
|
___1_headHead = ((int32_t)(L_11&L_13));
|
|
int32_t L_14 = V_1;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_15 = ___0_head;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = L_15->____slotsMask;
|
|
V_1 = ((int32_t)(L_14&L_16));
|
|
int64_t L_17 = V_0;
|
|
int32_t L_18 = ___1_headHead;
|
|
int32_t L_19 = V_1;
|
|
if ((((int32_t)L_18) < ((int32_t)L_19)))
|
|
{
|
|
G_B6_0 = L_17;
|
|
goto IL_004c;
|
|
}
|
|
G_B5_0 = L_17;
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_20 = ___0_head;
|
|
NullCheck(L_20);
|
|
SlotU5BU5D_t202D2F69C0E5FA34B84D04DFCCFBB57CB7E2F1BD* L_21 = L_20->____slots;
|
|
NullCheck(L_21);
|
|
int32_t L_22 = ___1_headHead;
|
|
int32_t L_23 = V_1;
|
|
G_B7_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_21)->max_length)), L_22)), L_23));
|
|
G_B7_1 = G_B5_0;
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
int32_t L_24 = V_1;
|
|
int32_t L_25 = ___1_headHead;
|
|
G_B7_0 = ((int32_t)il2cpp_codegen_subtract(L_24, L_25));
|
|
G_B7_1 = G_B6_0;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
V_0 = ((int64_t)il2cpp_codegen_add(G_B7_1, ((int64_t)G_B7_0)));
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_26 = ___0_head;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_27 = ___2_tail;
|
|
if ((((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_26) == ((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_27)))
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_28 = ___0_head;
|
|
NullCheck(L_28);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_29 = L_28->____nextSegment;
|
|
V_2 = L_29;
|
|
goto IL_007c;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int64_t L_30 = V_0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_31 = V_2;
|
|
NullCheck(L_31);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_32 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_31->____headAndTail);
|
|
int32_t L_33 = L_32->___Tail;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_34 = V_2;
|
|
NullCheck(L_34);
|
|
int32_t L_35;
|
|
L_35 = Segment_get_FreezeOffset_m85C8B0EBFA5AC151A44A14201B0514303F3F52E2(L_34, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28));
|
|
V_0 = ((int64_t)il2cpp_codegen_add(L_30, ((int64_t)((int32_t)il2cpp_codegen_subtract(L_33, L_35)))));
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_36 = V_2;
|
|
NullCheck(L_36);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_37 = L_36->____nextSegment;
|
|
V_2 = L_37;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_38 = V_2;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_39 = ___2_tail;
|
|
if ((!(((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_38) == ((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_39))))
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_40 = V_0;
|
|
int32_t L_41 = ___3_tailTail;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_42 = ___2_tail;
|
|
NullCheck(L_42);
|
|
int32_t L_43;
|
|
L_43 = Segment_get_FreezeOffset_m85C8B0EBFA5AC151A44A14201B0514303F3F52E2(L_42, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28));
|
|
V_0 = ((int64_t)il2cpp_codegen_add(L_40, ((int64_t)((int32_t)il2cpp_codegen_subtract(L_41, L_43)))));
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
int64_t L_44 = V_0;
|
|
return L_44;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_CopyTo_mC5A20108CA000589686CAF69C27C8858BF965265_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_0 = NULL;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int64_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
RuntimeObject* V_6 = NULL;
|
|
{
|
|
ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
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:
|
|
{
|
|
int32_t L_2 = ___1_index;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEDA0106FDFD942FADD2AA6A80843D70DD44B63FD)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
ConcurrentQueue_1_SnapForObservation_mC813203E9C5757B1DA9466A256DD3C6C2B5836F8(__this, (&V_0), (&V_2), (&V_1), (&V_3), il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_4 = V_0;
|
|
int32_t L_5 = V_2;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_6 = V_1;
|
|
int32_t L_7 = V_3;
|
|
int64_t L_8;
|
|
L_8 = ConcurrentQueue_1_GetCount_m1C16CA95801D6CEA80C60FFA4417CF3C402A3CEF(L_4, L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
V_4 = L_8;
|
|
int32_t L_9 = ___1_index;
|
|
ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* L_10 = ___0_array;
|
|
NullCheck(L_10);
|
|
int64_t L_11 = V_4;
|
|
if ((((int64_t)((int64_t)L_9)) <= ((int64_t)((int64_t)il2cpp_codegen_subtract(((int64_t)((int32_t)(((RuntimeArray*)L_10)->max_length))), L_11)))))
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_12 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE9C604469720D63E041FC7B3F7FF7D99A882AC2)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, method);
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
int32_t L_13 = ___1_index;
|
|
V_5 = L_13;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_14 = V_0;
|
|
int32_t L_15 = V_2;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_16 = V_1;
|
|
int32_t L_17 = V_3;
|
|
RuntimeObject* L_18;
|
|
L_18 = ConcurrentQueue_1_Enumerate_mBE8F1F279BCCE097150BEB388AF0C6E6D9F4D345(__this, L_14, L_15, L_16, L_17, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
V_6 = L_18;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0081:
|
|
{
|
|
{
|
|
RuntimeObject* L_19 = V_6;
|
|
if (!L_19)
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_20 = V_6;
|
|
NullCheck((RuntimeObject*)L_20);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_20);
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0076_1;
|
|
}
|
|
|
|
IL_0062_1:
|
|
{
|
|
ValueTuple_2U5BU5D_tB7FE2ACBAFA75C4C255B9D71128BDC6D5190B203* L_21 = ___0_array;
|
|
int32_t L_22 = V_5;
|
|
int32_t L_23 = L_22;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_23, 1));
|
|
RuntimeObject* L_24 = V_6;
|
|
NullCheck(L_24);
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD L_25;
|
|
L_25 = InterfaceFuncInvoker0< ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 10), L_24);
|
|
NullCheck(L_21);
|
|
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD)L_25);
|
|
}
|
|
|
|
IL_0076_1:
|
|
{
|
|
RuntimeObject* L_26 = V_6;
|
|
NullCheck((RuntimeObject*)L_26);
|
|
bool L_27;
|
|
L_27 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_26);
|
|
if (L_27)
|
|
{
|
|
goto IL_0062_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_GetEnumerator_mEC1489CEADF2463C9EC7CE191047CE594224B735_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, const RuntimeMethod* method)
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_0 = NULL;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
ConcurrentQueue_1_SnapForObservation_mC813203E9C5757B1DA9466A256DD3C6C2B5836F8(__this, (&V_0), (&V_2), (&V_1), (&V_3), il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_0 = V_0;
|
|
int32_t L_1 = V_2;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_2 = V_1;
|
|
int32_t L_3 = V_3;
|
|
RuntimeObject* L_4;
|
|
L_4 = ConcurrentQueue_1_Enumerate_mBE8F1F279BCCE097150BEB388AF0C6E6D9F4D345(__this, L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_SnapForObservation_mC813203E9C5757B1DA9466A256DD3C6C2B5836F8_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** ___0_head, int32_t* ___1_headHead, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** ___2_tail, int32_t* ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_2 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->____crossSegmentLock;
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006d:
|
|
{
|
|
{
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_2, NULL);
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_3, (&V_1), NULL);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** L_4 = ___0_head;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_5 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
*((RuntimeObject**)L_4) = (RuntimeObject*)L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_5);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** L_6 = ___2_tail;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_7 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
*((RuntimeObject**)L_6) = (RuntimeObject*)L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_6, (void*)(RuntimeObject*)L_7);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** L_8 = ___0_head;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_9 = *((Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531**)L_8);
|
|
V_2 = L_9;
|
|
}
|
|
|
|
IL_0028_1:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
L_10->____preservedForObservation = (bool)1;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_11 = V_2;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** L_12 = ___2_tail;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_13 = *((Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531**)L_12);
|
|
if ((((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_11) == ((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_13)))
|
|
{
|
|
goto IL_003d_1;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_14 = V_2;
|
|
NullCheck(L_14);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_15 = L_14->____nextSegment;
|
|
V_2 = L_15;
|
|
goto IL_0028_1;
|
|
}
|
|
|
|
IL_003d_1:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** L_16 = ___2_tail;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_17 = *((Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531**)L_16);
|
|
NullCheck(L_17);
|
|
Segment_EnsureFrozenForEnqueues_m7E2293D3637D2DF6EF322CE924578CFC6EF46152(L_17, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
int32_t* L_18 = ___1_headHead;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** L_19 = ___0_head;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_20 = *((Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531**)L_19);
|
|
NullCheck(L_20);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_21 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_20->____headAndTail);
|
|
int32_t* L_22 = (int32_t*)(&L_21->___Head);
|
|
int32_t L_23;
|
|
L_23 = VolatileRead(L_22);
|
|
*((int32_t*)L_18) = (int32_t)L_23;
|
|
int32_t* L_24 = ___3_tailTail;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** L_25 = ___2_tail;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_26 = *((Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531**)L_25);
|
|
NullCheck(L_26);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_27 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_26->____headAndTail);
|
|
int32_t* L_28 = (int32_t*)(&L_27->___Tail);
|
|
int32_t L_29;
|
|
L_29 = VolatileRead(L_28);
|
|
*((int32_t*)L_24) = (int32_t)L_29;
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD ConcurrentQueue_1_GetItemWhenAvailable_m91BF9C297E28E8482304B25DB354468B18A93E07_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___0_segment, int32_t ___1_i, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
int32_t L_0 = ___1_i;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_1 = ___0_segment;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->____slotsMask;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_add(L_0, 1))&L_2));
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_3 = ___0_segment;
|
|
NullCheck(L_3);
|
|
SlotU5BU5D_t202D2F69C0E5FA34B84D04DFCCFBB57CB7E2F1BD* L_4 = L_3->____slots;
|
|
int32_t L_5 = ___1_i;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = ((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->___SequenceNumber;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_7 = ___0_segment;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->____slotsMask;
|
|
int32_t L_9 = V_0;
|
|
if ((((int32_t)((int32_t)(L_6&L_8))) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675));
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
|
|
SpinWait_SpinOnce_m5B74E6B15013E90667646C0D943E886D4EC596AF((&V_1), NULL);
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_10 = ___0_segment;
|
|
NullCheck(L_10);
|
|
SlotU5BU5D_t202D2F69C0E5FA34B84D04DFCCFBB57CB7E2F1BD* L_11 = L_10->____slots;
|
|
int32_t L_12 = ___1_i;
|
|
NullCheck(L_11);
|
|
int32_t* L_13 = (int32_t*)(&((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->___SequenceNumber);
|
|
int32_t L_14;
|
|
L_14 = VolatileRead(L_13);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_15 = ___0_segment;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = L_15->____slotsMask;
|
|
int32_t L_17 = V_0;
|
|
if ((!(((uint32_t)((int32_t)(L_14&L_16))) == ((uint32_t)L_17))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_18 = ___0_segment;
|
|
NullCheck(L_18);
|
|
SlotU5BU5D_t202D2F69C0E5FA34B84D04DFCCFBB57CB7E2F1BD* L_19 = L_18->____slots;
|
|
int32_t L_20 = ___1_i;
|
|
NullCheck(L_19);
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___Item;
|
|
return L_21;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_Enumerate_mBE8F1F279BCCE097150BEB388AF0C6E6D9F4D345_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___0_head, int32_t ___1_headHead, Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
U3CEnumerateU3Ed__28_tEA742C92FD5C83A0B42BC0D9936D693C00E8AB1E* L_0 = (U3CEnumerateU3Ed__28_tEA742C92FD5C83A0B42BC0D9936D693C00E8AB1E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 32));
|
|
U3CEnumerateU3Ed__28__ctor_m4F92C7BB698ED882D8E0497CEE4D8FA3914ED733(L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
U3CEnumerateU3Ed__28_tEA742C92FD5C83A0B42BC0D9936D693C00E8AB1E* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
L_1->___U3CU3E4__this = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this), (void*)__this);
|
|
U3CEnumerateU3Ed__28_tEA742C92FD5C83A0B42BC0D9936D693C00E8AB1E* L_2 = L_1;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_3 = ___0_head;
|
|
NullCheck(L_2);
|
|
L_2->___head = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_2->___head), (void*)L_3);
|
|
U3CEnumerateU3Ed__28_tEA742C92FD5C83A0B42BC0D9936D693C00E8AB1E* L_4 = L_2;
|
|
int32_t L_5 = ___1_headHead;
|
|
NullCheck(L_4);
|
|
L_4->___headHead = L_5;
|
|
U3CEnumerateU3Ed__28_tEA742C92FD5C83A0B42BC0D9936D693C00E8AB1E* L_6 = L_4;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_7 = ___2_tail;
|
|
NullCheck(L_6);
|
|
L_6->___tail = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_6->___tail), (void*)L_7);
|
|
U3CEnumerateU3Ed__28_tEA742C92FD5C83A0B42BC0D9936D693C00E8AB1E* L_8 = L_6;
|
|
int32_t L_9 = ___3_tailTail;
|
|
NullCheck(L_8);
|
|
L_8->___tailTail = L_9;
|
|
return (RuntimeObject*)L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_Enqueue_m8E8D8D7943565B34DBC93C5C5D56063D0FBC047D_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_0 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD L_1 = ___0_item;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Segment_TryEnqueue_m717FD50925EA6ABB7EFD908AE4498F58A080BFC0(L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
if (L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD L_3 = ___0_item;
|
|
ConcurrentQueue_1_EnqueueSlow_mA0B6FB508C7DE9FD111F8DFDFC12517DB7D0261D(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 35));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_EnqueueSlow_mA0B6FB508C7DE9FD111F8DFDFC12517DB7D0261D_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD ___0_item, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_3 = NULL;
|
|
int32_t G_B7_0 = 0;
|
|
|
|
IL_0000:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_0 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_1 = V_0;
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD L_2 = ___0_item;
|
|
NullCheck(L_1);
|
|
bool L_3;
|
|
L_3 = Segment_TryEnqueue_m717FD50925EA6ABB7EFD908AE4498F58A080BFC0(L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
if (!L_3)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
RuntimeObject* L_4 = __this->____crossSegmentLock;
|
|
V_1 = L_4;
|
|
V_2 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006b:
|
|
{
|
|
{
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_6 = V_1;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_6, NULL);
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_7 = V_1;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_7, (&V_2), NULL);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_8 = V_0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_9 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_8) == ((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_9))))
|
|
{
|
|
goto IL_0069_1;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
Segment_EnsureFrozenForEnqueues_m7E2293D3637D2DF6EF322CE924578CFC6EF46152(L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_11 = V_0;
|
|
NullCheck(L_11);
|
|
bool L_12 = L_11->____preservedForObservation;
|
|
if (L_12)
|
|
{
|
|
goto IL_0051_1;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = Segment_get_Capacity_mDD685AE9A93EB9470B7EF7EA01774B7A53638EE3(L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 36));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_15;
|
|
L_15 = Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52(((int32_t)il2cpp_codegen_multiply(L_14, 2)), ((int32_t)1048576), NULL);
|
|
G_B7_0 = L_15;
|
|
goto IL_0053_1;
|
|
}
|
|
|
|
IL_0051_1:
|
|
{
|
|
G_B7_0 = ((int32_t)32);
|
|
}
|
|
|
|
IL_0053_1:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_16 = (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
Segment__ctor_mE54FC9C999FCB994B13229636F99B4237997DD69(L_16, G_B7_0, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
V_3 = L_16;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_17 = V_0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_18 = V_3;
|
|
NullCheck(L_17);
|
|
L_17->____nextSegment = L_18;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_17->____nextSegment), (void*)L_18);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_19 = V_3;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tail = L_19;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tail), (void*)L_19);
|
|
}
|
|
|
|
IL_0069_1:
|
|
{
|
|
goto IL_0000;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryDequeue_mFF536885040B79E9B6DDE22FE56E1744D731D324_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_0 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* L_1 = ___0_result;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Segment_TryDequeue_m7F22B9F0E48C58EE142F5F6521573BF540C1036B(L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
|
|
if (L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* L_3 = ___0_result;
|
|
bool L_4;
|
|
L_4 = ConcurrentQueue_1_TryDequeueSlow_m2D15E87BAC03C286FC5AED371246B462D8E21551(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 38));
|
|
return L_4;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryDequeueSlow_m2D15E87BAC03C286FC5AED371246B462D8E21551_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
|
|
IL_0000:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_0 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_1 = V_0;
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* L_2 = ___0_item;
|
|
NullCheck(L_1);
|
|
bool L_3;
|
|
L_3 = Segment_TryDequeue_m7F22B9F0E48C58EE142F5F6521573BF540C1036B(L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
|
|
if (!L_3)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_5 = L_4->____nextSegment;
|
|
if (L_5)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* L_6 = ___0_item;
|
|
il2cpp_codegen_initobj(L_6, sizeof(ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD));
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_7 = V_0;
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* L_8 = ___0_item;
|
|
NullCheck(L_7);
|
|
bool L_9;
|
|
L_9 = Segment_TryDequeue_m7F22B9F0E48C58EE142F5F6521573BF540C1036B(L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
|
|
if (!L_9)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
RuntimeObject* L_10 = __this->____crossSegmentLock;
|
|
V_1 = L_10;
|
|
V_2 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005c:
|
|
{
|
|
{
|
|
bool L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_12 = V_1;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_12, NULL);
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_13 = V_1;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_13, (&V_2), NULL);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_14 = V_0;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_15 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_14) == ((RuntimeObject*)(Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)L_15))))
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_16 = V_0;
|
|
NullCheck(L_16);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_17 = L_16->____nextSegment;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____head = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____head), (void*)L_17);
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
goto IL_0000;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
il2cpp_codegen_no_return();
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryPeek_m92269A4C3D0B27F71A83E4D9F86F38889E27E05E_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* L_0 = ___0_result;
|
|
bool L_1;
|
|
L_1 = ConcurrentQueue_1_TryPeek_m36C441A718E7CC9A0451752DBA91021C87997BA6(__this, L_0, (bool)1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryPeek_m36C441A718E7CC9A0451752DBA91021C87997BA6_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* ___0_result, bool ___1_resultUsed, const RuntimeMethod* method)
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_0 = NULL;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_1 = NULL;
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_0 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_1 = V_0;
|
|
NullCheck(L_1);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** L_2 = (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531**)(&L_1->____nextSegment);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_3;
|
|
L_3 = VolatileRead(L_2);
|
|
V_1 = L_3;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_4 = V_0;
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* L_5 = ___0_result;
|
|
bool L_6 = ___1_resultUsed;
|
|
NullCheck(L_4);
|
|
bool L_7;
|
|
L_7 = Segment_TryPeek_m685ADC5F91B878FDBBFDA6B2AD0C83D66FB42BC7(L_4, L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
if (!L_7)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_9 = V_1;
|
|
V_0 = L_9;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531** L_11 = (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531**)(&L_10->____nextSegment);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_12;
|
|
L_12 = VolatileRead(L_11);
|
|
if (L_12)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD* L_13 = ___0_result;
|
|
il2cpp_codegen_initobj(L_13, sizeof(ValueTuple_2_t998A3C988B99B895CDFB519A1EF5B3E191F8A1BD));
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_Clear_m5D335087D59289035718569E0FD9FE696C0D6C0F_gshared (ConcurrentQueue_1_t4EB2E098F44B8C63607D5A02465AA29FE285FAB8* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* V_2 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->____crossSegmentLock;
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003a:
|
|
{
|
|
{
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_2, NULL);
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_3, (&V_1), NULL);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_4 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_4);
|
|
Segment_EnsureFrozenForEnqueues_m7E2293D3637D2DF6EF322CE924578CFC6EF46152(L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_5 = (Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
Segment__ctor_mE54FC9C999FCB994B13229636F99B4237997DD69(L_5, ((int32_t)32), il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_6 = L_5;
|
|
V_2 = L_6;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____head = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____head), (void*)L_6);
|
|
Segment_t056852AAFA4278B079C62EBA3786D591B3D4B531* L_7 = V_2;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tail = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tail), (void*)L_7);
|
|
goto IL_0044;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1__ctor_m45A2A2E43BA42D4368773A687E7BB6CBCD510345_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_0 = NULL;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
|
|
__this->____crossSegmentLock = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____crossSegmentLock), (void*)L_0);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_1 = (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
Segment__ctor_mD5C583944CF31346F08BA757C9C15371C4858FA7(L_1, ((int32_t)32), il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_2 = L_1;
|
|
V_0 = L_2;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____head = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____head), (void*)L_2);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_3 = V_0;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tail = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tail), (void*)L_3);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_InitializeFromCollection_m7749950AB9C43CF95C3C0F24C63942A2A6EC55C6_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_3 = NULL;
|
|
RuntimeObject* V_4 = NULL;
|
|
RuntimeObject* V_5 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
|
|
__this->____crossSegmentLock = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____crossSegmentLock), (void*)L_0);
|
|
V_0 = ((int32_t)32);
|
|
RuntimeObject* L_1 = ___0_collection;
|
|
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
|
|
V_2 = L_4;
|
|
int32_t L_5 = V_2;
|
|
int32_t L_6 = V_0;
|
|
if ((((int32_t)L_5) <= ((int32_t)L_6)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_2;
|
|
int32_t L_8;
|
|
L_8 = Segment_RoundUpToPowerOf2_m903ED2EB85CA00362471EEBDE70010461BFED979(L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 7));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_9;
|
|
L_9 = Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52(L_8, ((int32_t)1048576), NULL);
|
|
V_0 = L_9;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_11 = (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
Segment__ctor_mD5C583944CF31346F08BA757C9C15371C4858FA7(L_11, L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_12 = L_11;
|
|
V_3 = L_12;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____head = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____head), (void*)L_12);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_13 = V_3;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tail = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tail), (void*)L_13);
|
|
RuntimeObject* L_14 = ___0_collection;
|
|
NullCheck(L_14);
|
|
RuntimeObject* L_15;
|
|
L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_14);
|
|
V_4 = L_15;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0073:
|
|
{
|
|
{
|
|
RuntimeObject* L_16 = V_4;
|
|
if (!L_16)
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_4;
|
|
NullCheck((RuntimeObject*)L_17);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0068_1;
|
|
}
|
|
|
|
IL_0057_1:
|
|
{
|
|
RuntimeObject* L_18 = V_4;
|
|
NullCheck(L_18);
|
|
RuntimeObject* L_19;
|
|
L_19 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 10), L_18);
|
|
V_5 = L_19;
|
|
RuntimeObject* L_20 = V_5;
|
|
ConcurrentQueue_1_Enqueue_m6E14BFDDF046BB59B8EEF4A398D5AB7F4720D0A4(__this, L_20, il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
}
|
|
|
|
IL_0068_1:
|
|
{
|
|
RuntimeObject* L_21 = V_4;
|
|
NullCheck((RuntimeObject*)L_21);
|
|
bool L_22;
|
|
L_22 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_21);
|
|
if (L_22)
|
|
{
|
|
goto IL_0057_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1__ctor_mBCFCA4B2BD3690237459567AFAA40841D50D3957_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
RuntimeObject* L_0 = ___0_collection;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
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*)&_stringLiteral469F05BE9BB4C7903C353D0EB9F6384C84A48B25)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_2 = ___0_collection;
|
|
ConcurrentQueue_1_InitializeFromCollection_m7749950AB9C43CF95C3C0F24C63942A2A6EC55C6(__this, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_System_Collections_ICollection_CopyTo_mF396233EA6DB5C1221692BAF17C7596C5D584C78_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeArray* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
{
|
|
RuntimeArray* L_0 = ___0_array;
|
|
V_0 = ((ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(method->klass->rgctx_data, 15)));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_2 = V_0;
|
|
int32_t L_3 = ___1_index;
|
|
ConcurrentQueue_1_CopyTo_m8A2CD5FB0B29389CAE0ED09D48C7C40C3FE47E47(__this, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
return;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
RuntimeArray* L_4 = ___0_array;
|
|
if (L_4)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_5 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, method);
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6;
|
|
L_6 = ConcurrentQueue_1_ToArray_mE05BD160E613A2B36E3002F87461F4A38B126AFC(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 17));
|
|
RuntimeArray* L_7 = ___0_array;
|
|
int32_t L_8 = ___1_index;
|
|
NullCheck((RuntimeArray*)L_6);
|
|
Array_CopyTo_mFD42E3443AB3B850ED6F19359698E242A08E1BAB((RuntimeArray*)L_6, L_7, L_8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_System_Collections_ICollection_get_IsSynchronized_m50F1CB26841B2FCA2D575DF97652245962F1C1AB_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_System_Collections_ICollection_get_SyncRoot_m9BB8BC1A86611604D47917EB44A62F04A676B929_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4CC02BED909F9630E59013E4804C6C269FF8370A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_System_Collections_IEnumerable_GetEnumerator_m088ECC0398BE2B233E084C8DEB95290A03C28DD0_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NullCheck((RuntimeObject*)__this);
|
|
RuntimeObject* L_0;
|
|
L_0 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), (RuntimeObject*)__this);
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_System_Collections_Concurrent_IProducerConsumerCollectionU3CTU3E_TryAdd_m4C6EC897F87651DA01A2BF0A29E449755975905C_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_item;
|
|
ConcurrentQueue_1_Enqueue_m6E14BFDDF046BB59B8EEF4A398D5AB7F4720D0A4(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_System_Collections_Concurrent_IProducerConsumerCollectionU3CTU3E_TryTake_m2E9EA263E0110565E8C1D534D4B55D91E2567FDE_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject** ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject** L_0 = ___0_item;
|
|
bool L_1;
|
|
L_1 = ConcurrentQueue_1_TryDequeue_m04C6B697D83A4AA4BAD38344201C140ED7DC5CAA(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 19));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_get_IsEmpty_m216D5A1F071C68F7E44D8AB0782CD898F544BF27_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
bool L_0;
|
|
L_0 = ConcurrentQueue_1_TryPeek_mC3450BED83DB82DEA37C407E34373008958BC9BB(__this, (&V_0), (bool)0, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ConcurrentQueue_1_ToArray_mE05BD160E613A2B36E3002F87461F4A38B126AFC_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_0 = NULL;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_4 = NULL;
|
|
RuntimeObject* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
{
|
|
ConcurrentQueue_1_SnapForObservation_m60B8F5FA00D76A094EB67116F89A32807F45B419(__this, (&V_0), (&V_2), (&V_1), (&V_3), il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_0 = V_0;
|
|
int32_t L_1 = V_2;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_2 = V_1;
|
|
int32_t L_3 = V_3;
|
|
int64_t L_4;
|
|
L_4 = ConcurrentQueue_1_GetCount_mFD43C52C52B526FD80C6356E0E8CEB2908E94B1D(L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
if ((int64_t)(L_4) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_5 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 25), (uint32_t)((intptr_t)L_4));
|
|
V_4 = L_5;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_6 = V_0;
|
|
int32_t L_7 = V_2;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_8 = V_1;
|
|
int32_t L_9 = V_3;
|
|
RuntimeObject* L_10;
|
|
L_10 = ConcurrentQueue_1_Enumerate_mB2EACA03901B963C1957491121264CB11B5B2C05(__this, L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
V_5 = L_10;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0050:
|
|
{
|
|
{
|
|
RuntimeObject* L_11 = V_5;
|
|
if (!L_11)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_12 = V_5;
|
|
NullCheck((RuntimeObject*)L_12);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_6 = 0;
|
|
goto IL_0045_1;
|
|
}
|
|
|
|
IL_0030_1:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_13 = V_4;
|
|
int32_t L_14 = V_6;
|
|
int32_t L_15 = L_14;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
RuntimeObject* L_16 = V_5;
|
|
NullCheck(L_16);
|
|
RuntimeObject* L_17;
|
|
L_17 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 10), L_16);
|
|
NullCheck(L_13);
|
|
(L_13)->SetAt(static_cast<il2cpp_array_size_t>(L_15), (RuntimeObject*)L_17);
|
|
}
|
|
|
|
IL_0045_1:
|
|
{
|
|
RuntimeObject* L_18 = V_5;
|
|
NullCheck((RuntimeObject*)L_18);
|
|
bool L_19;
|
|
L_19 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_18);
|
|
if (L_19)
|
|
{
|
|
goto IL_0030_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_20 = V_4;
|
|
return L_20;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentQueue_1_get_Count_mA93A5A146DE4520B153BECFFAF36279EB29FA21E_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_0 = NULL;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
{
|
|
il2cpp_codegen_initobj((&V_6), sizeof(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_0 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_1 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_1 = L_1;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_3 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_2->____headAndTail);
|
|
int32_t* L_4 = (int32_t*)(&L_3->___Head);
|
|
int32_t L_5;
|
|
L_5 = VolatileRead(L_4);
|
|
V_2 = L_5;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_7 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_6->____headAndTail);
|
|
int32_t* L_8 = (int32_t*)(&L_7->___Tail);
|
|
int32_t L_9;
|
|
L_9 = VolatileRead(L_8);
|
|
V_3 = L_9;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_10 = V_0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_11 = V_1;
|
|
if ((!(((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_10) == ((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_11))))
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_12 = V_0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_13 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_12) == ((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_13))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_14 = V_0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_15 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_14) == ((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_15))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_2;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_18 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_17->____headAndTail);
|
|
int32_t* L_19 = (int32_t*)(&L_18->___Head);
|
|
int32_t L_20;
|
|
L_20 = VolatileRead(L_19);
|
|
if ((!(((uint32_t)L_16) == ((uint32_t)L_20))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = V_3;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_22 = V_0;
|
|
NullCheck(L_22);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_23 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_22->____headAndTail);
|
|
int32_t* L_24 = (int32_t*)(&L_23->___Tail);
|
|
int32_t L_25;
|
|
L_25 = VolatileRead(L_24);
|
|
if ((!(((uint32_t)L_21) == ((uint32_t)L_25))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_26 = V_0;
|
|
int32_t L_27 = V_2;
|
|
int32_t L_28 = V_3;
|
|
int32_t L_29;
|
|
L_29 = ConcurrentQueue_1_GetCount_m6EE5FF1A402681EE1CBCFC6857C8CEF8CF7C1CD4(L_26, L_27, L_28, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
return L_29;
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_30 = V_0;
|
|
NullCheck(L_30);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_31 = L_30->____nextSegment;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_32 = V_1;
|
|
if ((!(((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_31) == ((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_32))))
|
|
{
|
|
goto IL_013c;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_33 = V_1;
|
|
NullCheck(L_33);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_34 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_33->____headAndTail);
|
|
int32_t* L_35 = (int32_t*)(&L_34->___Head);
|
|
int32_t L_36;
|
|
L_36 = VolatileRead(L_35);
|
|
V_4 = L_36;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_37 = V_1;
|
|
NullCheck(L_37);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_38 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_37->____headAndTail);
|
|
int32_t* L_39 = (int32_t*)(&L_38->___Tail);
|
|
int32_t L_40;
|
|
L_40 = VolatileRead(L_39);
|
|
V_5 = L_40;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_41 = V_0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_42 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_41) == ((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_42))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_43 = V_1;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_44 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_43) == ((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_44))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_45 = V_2;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_46 = V_0;
|
|
NullCheck(L_46);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_47 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_46->____headAndTail);
|
|
int32_t* L_48 = (int32_t*)(&L_47->___Head);
|
|
int32_t L_49;
|
|
L_49 = VolatileRead(L_48);
|
|
if ((!(((uint32_t)L_45) == ((uint32_t)L_49))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_50 = V_3;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_51 = V_0;
|
|
NullCheck(L_51);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_52 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_51->____headAndTail);
|
|
int32_t* L_53 = (int32_t*)(&L_52->___Tail);
|
|
int32_t L_54;
|
|
L_54 = VolatileRead(L_53);
|
|
if ((!(((uint32_t)L_50) == ((uint32_t)L_54))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_55 = V_4;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_56 = V_1;
|
|
NullCheck(L_56);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_57 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_56->____headAndTail);
|
|
int32_t* L_58 = (int32_t*)(&L_57->___Head);
|
|
int32_t L_59;
|
|
L_59 = VolatileRead(L_58);
|
|
if ((!(((uint32_t)L_55) == ((uint32_t)L_59))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_60 = V_5;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_61 = V_1;
|
|
NullCheck(L_61);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_62 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_61->____headAndTail);
|
|
int32_t* L_63 = (int32_t*)(&L_62->___Tail);
|
|
int32_t L_64;
|
|
L_64 = VolatileRead(L_63);
|
|
if ((!(((uint32_t)L_60) == ((uint32_t)L_64))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_65 = V_0;
|
|
int32_t L_66 = V_2;
|
|
int32_t L_67 = V_3;
|
|
int32_t L_68;
|
|
L_68 = ConcurrentQueue_1_GetCount_m6EE5FF1A402681EE1CBCFC6857C8CEF8CF7C1CD4(L_65, L_66, L_67, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_69 = V_1;
|
|
int32_t L_70 = V_4;
|
|
int32_t L_71 = V_5;
|
|
int32_t L_72;
|
|
L_72 = ConcurrentQueue_1_GetCount_m6EE5FF1A402681EE1CBCFC6857C8CEF8CF7C1CD4(L_69, L_70, L_71, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
return ((int32_t)il2cpp_codegen_add(L_68, L_72));
|
|
}
|
|
|
|
IL_013c:
|
|
{
|
|
ConcurrentQueue_1_SnapForObservation_m60B8F5FA00D76A094EB67116F89A32807F45B419(__this, (&V_0), (&V_2), (&V_1), (&V_5), il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_73 = V_0;
|
|
int32_t L_74 = V_2;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_75 = V_1;
|
|
int32_t L_76 = V_5;
|
|
int64_t L_77;
|
|
L_77 = ConcurrentQueue_1_GetCount_mFD43C52C52B526FD80C6356E0E8CEB2908E94B1D(L_73, L_74, L_75, L_76, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
return ((int32_t)L_77);
|
|
}
|
|
|
|
IL_0156:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
|
|
SpinWait_SpinOnce_m5B74E6B15013E90667646C0D943E886D4EC596AF((&V_6), NULL);
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentQueue_1_GetCount_m6EE5FF1A402681EE1CBCFC6857C8CEF8CF7C1CD4_gshared (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___0_s, int32_t ___1_head, int32_t ___2_tail, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_head;
|
|
int32_t L_1 = ___2_tail;
|
|
if ((((int32_t)L_0) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___1_head;
|
|
int32_t L_3 = ___2_tail;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_4 = ___0_s;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = Segment_get_FreezeOffset_m402D47C4B47FF6B763734B006DA71BA5DBC42582(L_4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28));
|
|
if ((((int32_t)L_2) == ((int32_t)((int32_t)il2cpp_codegen_subtract(L_3, L_5)))))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___1_head;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_7 = ___0_s;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->____slotsMask;
|
|
___1_head = ((int32_t)(L_6&L_8));
|
|
int32_t L_9 = ___2_tail;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_10 = ___0_s;
|
|
NullCheck(L_10);
|
|
int32_t L_11 = L_10->____slotsMask;
|
|
___2_tail = ((int32_t)(L_9&L_11));
|
|
int32_t L_12 = ___1_head;
|
|
int32_t L_13 = ___2_tail;
|
|
if ((((int32_t)L_12) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_14 = ___0_s;
|
|
NullCheck(L_14);
|
|
SlotU5BU5D_t50AA161D0E0CA4901F88A99B082CD5FA953B023B* L_15 = L_14->____slots;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = ___1_head;
|
|
int32_t L_17 = ___2_tail;
|
|
return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_15)->max_length)), L_16)), L_17));
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_18 = ___2_tail;
|
|
int32_t L_19 = ___1_head;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_18, L_19));
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ConcurrentQueue_1_GetCount_mFD43C52C52B526FD80C6356E0E8CEB2908E94B1D_gshared (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___0_head, int32_t ___1_headHead, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
int64_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_2 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
int64_t G_B6_0 = 0;
|
|
int64_t G_B5_0 = 0;
|
|
int32_t G_B7_0 = 0;
|
|
int64_t G_B7_1 = 0;
|
|
{
|
|
V_0 = ((int64_t)0);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_0 = ___0_head;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_1 = ___2_tail;
|
|
if ((((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_0) == ((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_1)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_2 = ___0_head;
|
|
NullCheck(L_2);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_3 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_2->____headAndTail);
|
|
int32_t* L_4 = (int32_t*)(&L_3->___Tail);
|
|
int32_t L_5;
|
|
L_5 = VolatileRead(L_4);
|
|
G_B3_0 = L_5;
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_6 = ___3_tailTail;
|
|
G_B3_0 = L_6;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_7 = ___0_head;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = Segment_get_FreezeOffset_m402D47C4B47FF6B763734B006DA71BA5DBC42582(L_7, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28));
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(G_B3_0, L_8));
|
|
int32_t L_9 = ___1_headHead;
|
|
int32_t L_10 = V_1;
|
|
if ((((int32_t)L_9) >= ((int32_t)L_10)))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = ___1_headHead;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_12 = ___0_head;
|
|
NullCheck(L_12);
|
|
int32_t L_13 = L_12->____slotsMask;
|
|
___1_headHead = ((int32_t)(L_11&L_13));
|
|
int32_t L_14 = V_1;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_15 = ___0_head;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = L_15->____slotsMask;
|
|
V_1 = ((int32_t)(L_14&L_16));
|
|
int64_t L_17 = V_0;
|
|
int32_t L_18 = ___1_headHead;
|
|
int32_t L_19 = V_1;
|
|
if ((((int32_t)L_18) < ((int32_t)L_19)))
|
|
{
|
|
G_B6_0 = L_17;
|
|
goto IL_004c;
|
|
}
|
|
G_B5_0 = L_17;
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_20 = ___0_head;
|
|
NullCheck(L_20);
|
|
SlotU5BU5D_t50AA161D0E0CA4901F88A99B082CD5FA953B023B* L_21 = L_20->____slots;
|
|
NullCheck(L_21);
|
|
int32_t L_22 = ___1_headHead;
|
|
int32_t L_23 = V_1;
|
|
G_B7_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_21)->max_length)), L_22)), L_23));
|
|
G_B7_1 = G_B5_0;
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
int32_t L_24 = V_1;
|
|
int32_t L_25 = ___1_headHead;
|
|
G_B7_0 = ((int32_t)il2cpp_codegen_subtract(L_24, L_25));
|
|
G_B7_1 = G_B6_0;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
V_0 = ((int64_t)il2cpp_codegen_add(G_B7_1, ((int64_t)G_B7_0)));
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_26 = ___0_head;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_27 = ___2_tail;
|
|
if ((((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_26) == ((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_27)))
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_28 = ___0_head;
|
|
NullCheck(L_28);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_29 = L_28->____nextSegment;
|
|
V_2 = L_29;
|
|
goto IL_007c;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int64_t L_30 = V_0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_31 = V_2;
|
|
NullCheck(L_31);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_32 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_31->____headAndTail);
|
|
int32_t L_33 = L_32->___Tail;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_34 = V_2;
|
|
NullCheck(L_34);
|
|
int32_t L_35;
|
|
L_35 = Segment_get_FreezeOffset_m402D47C4B47FF6B763734B006DA71BA5DBC42582(L_34, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28));
|
|
V_0 = ((int64_t)il2cpp_codegen_add(L_30, ((int64_t)((int32_t)il2cpp_codegen_subtract(L_33, L_35)))));
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_36 = V_2;
|
|
NullCheck(L_36);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_37 = L_36->____nextSegment;
|
|
V_2 = L_37;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_38 = V_2;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_39 = ___2_tail;
|
|
if ((!(((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_38) == ((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_39))))
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_40 = V_0;
|
|
int32_t L_41 = ___3_tailTail;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_42 = ___2_tail;
|
|
NullCheck(L_42);
|
|
int32_t L_43;
|
|
L_43 = Segment_get_FreezeOffset_m402D47C4B47FF6B763734B006DA71BA5DBC42582(L_42, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28));
|
|
V_0 = ((int64_t)il2cpp_codegen_add(L_40, ((int64_t)((int32_t)il2cpp_codegen_subtract(L_41, L_43)))));
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
int64_t L_44 = V_0;
|
|
return L_44;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_CopyTo_m8A2CD5FB0B29389CAE0ED09D48C7C40C3FE47E47_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_0 = NULL;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int64_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
RuntimeObject* V_6 = NULL;
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
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:
|
|
{
|
|
int32_t L_2 = ___1_index;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEDA0106FDFD942FADD2AA6A80843D70DD44B63FD)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
ConcurrentQueue_1_SnapForObservation_m60B8F5FA00D76A094EB67116F89A32807F45B419(__this, (&V_0), (&V_2), (&V_1), (&V_3), il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_4 = V_0;
|
|
int32_t L_5 = V_2;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_6 = V_1;
|
|
int32_t L_7 = V_3;
|
|
int64_t L_8;
|
|
L_8 = ConcurrentQueue_1_GetCount_mFD43C52C52B526FD80C6356E0E8CEB2908E94B1D(L_4, L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
V_4 = L_8;
|
|
int32_t L_9 = ___1_index;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_10 = ___0_array;
|
|
NullCheck(L_10);
|
|
int64_t L_11 = V_4;
|
|
if ((((int64_t)((int64_t)L_9)) <= ((int64_t)((int64_t)il2cpp_codegen_subtract(((int64_t)((int32_t)(((RuntimeArray*)L_10)->max_length))), L_11)))))
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_12 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE9C604469720D63E041FC7B3F7FF7D99A882AC2)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, method);
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
int32_t L_13 = ___1_index;
|
|
V_5 = L_13;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_14 = V_0;
|
|
int32_t L_15 = V_2;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_16 = V_1;
|
|
int32_t L_17 = V_3;
|
|
RuntimeObject* L_18;
|
|
L_18 = ConcurrentQueue_1_Enumerate_mB2EACA03901B963C1957491121264CB11B5B2C05(__this, L_14, L_15, L_16, L_17, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
V_6 = L_18;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0081:
|
|
{
|
|
{
|
|
RuntimeObject* L_19 = V_6;
|
|
if (!L_19)
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_20 = V_6;
|
|
NullCheck((RuntimeObject*)L_20);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_20);
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0076_1;
|
|
}
|
|
|
|
IL_0062_1:
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_21 = ___0_array;
|
|
int32_t L_22 = V_5;
|
|
int32_t L_23 = L_22;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_23, 1));
|
|
RuntimeObject* L_24 = V_6;
|
|
NullCheck(L_24);
|
|
RuntimeObject* L_25;
|
|
L_25 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 10), L_24);
|
|
NullCheck(L_21);
|
|
(L_21)->SetAt(static_cast<il2cpp_array_size_t>(L_23), (RuntimeObject*)L_25);
|
|
}
|
|
|
|
IL_0076_1:
|
|
{
|
|
RuntimeObject* L_26 = V_6;
|
|
NullCheck((RuntimeObject*)L_26);
|
|
bool L_27;
|
|
L_27 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_26);
|
|
if (L_27)
|
|
{
|
|
goto IL_0062_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_GetEnumerator_mF8393C01FCC37A5CE63F0CE393D0CEC9B725069E_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, const RuntimeMethod* method)
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_0 = NULL;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
ConcurrentQueue_1_SnapForObservation_m60B8F5FA00D76A094EB67116F89A32807F45B419(__this, (&V_0), (&V_2), (&V_1), (&V_3), il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_0 = V_0;
|
|
int32_t L_1 = V_2;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_2 = V_1;
|
|
int32_t L_3 = V_3;
|
|
RuntimeObject* L_4;
|
|
L_4 = ConcurrentQueue_1_Enumerate_mB2EACA03901B963C1957491121264CB11B5B2C05(__this, L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_SnapForObservation_m60B8F5FA00D76A094EB67116F89A32807F45B419_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** ___0_head, int32_t* ___1_headHead, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** ___2_tail, int32_t* ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_2 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->____crossSegmentLock;
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006d:
|
|
{
|
|
{
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_2, NULL);
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_3, (&V_1), NULL);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** L_4 = ___0_head;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_5 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
*((RuntimeObject**)L_4) = (RuntimeObject*)L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_5);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** L_6 = ___2_tail;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_7 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
*((RuntimeObject**)L_6) = (RuntimeObject*)L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_6, (void*)(RuntimeObject*)L_7);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** L_8 = ___0_head;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_9 = *((Segment_tBE464478C92438E20009981FD7F953F796D7F3B2**)L_8);
|
|
V_2 = L_9;
|
|
}
|
|
|
|
IL_0028_1:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
L_10->____preservedForObservation = (bool)1;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_11 = V_2;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** L_12 = ___2_tail;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_13 = *((Segment_tBE464478C92438E20009981FD7F953F796D7F3B2**)L_12);
|
|
if ((((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_11) == ((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_13)))
|
|
{
|
|
goto IL_003d_1;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_14 = V_2;
|
|
NullCheck(L_14);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_15 = L_14->____nextSegment;
|
|
V_2 = L_15;
|
|
goto IL_0028_1;
|
|
}
|
|
|
|
IL_003d_1:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** L_16 = ___2_tail;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_17 = *((Segment_tBE464478C92438E20009981FD7F953F796D7F3B2**)L_16);
|
|
NullCheck(L_17);
|
|
Segment_EnsureFrozenForEnqueues_mC7EA723BE98E075BE173825F3913AA3C16F0B655(L_17, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
int32_t* L_18 = ___1_headHead;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** L_19 = ___0_head;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_20 = *((Segment_tBE464478C92438E20009981FD7F953F796D7F3B2**)L_19);
|
|
NullCheck(L_20);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_21 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_20->____headAndTail);
|
|
int32_t* L_22 = (int32_t*)(&L_21->___Head);
|
|
int32_t L_23;
|
|
L_23 = VolatileRead(L_22);
|
|
*((int32_t*)L_18) = (int32_t)L_23;
|
|
int32_t* L_24 = ___3_tailTail;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** L_25 = ___2_tail;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_26 = *((Segment_tBE464478C92438E20009981FD7F953F796D7F3B2**)L_25);
|
|
NullCheck(L_26);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_27 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_26->____headAndTail);
|
|
int32_t* L_28 = (int32_t*)(&L_27->___Tail);
|
|
int32_t L_29;
|
|
L_29 = VolatileRead(L_28);
|
|
*((int32_t*)L_24) = (int32_t)L_29;
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_GetItemWhenAvailable_m8CD12D6BE7E6FAE430B1FDF9DC5673FA0542C7F9_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___0_segment, int32_t ___1_i, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
int32_t L_0 = ___1_i;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_1 = ___0_segment;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->____slotsMask;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_add(L_0, 1))&L_2));
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_3 = ___0_segment;
|
|
NullCheck(L_3);
|
|
SlotU5BU5D_t50AA161D0E0CA4901F88A99B082CD5FA953B023B* L_4 = L_3->____slots;
|
|
int32_t L_5 = ___1_i;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = ((L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5)))->___SequenceNumber;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_7 = ___0_segment;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->____slotsMask;
|
|
int32_t L_9 = V_0;
|
|
if ((((int32_t)((int32_t)(L_6&L_8))) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675));
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
|
|
SpinWait_SpinOnce_m5B74E6B15013E90667646C0D943E886D4EC596AF((&V_1), NULL);
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_10 = ___0_segment;
|
|
NullCheck(L_10);
|
|
SlotU5BU5D_t50AA161D0E0CA4901F88A99B082CD5FA953B023B* L_11 = L_10->____slots;
|
|
int32_t L_12 = ___1_i;
|
|
NullCheck(L_11);
|
|
int32_t* L_13 = (int32_t*)(&((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->___SequenceNumber);
|
|
int32_t L_14;
|
|
L_14 = VolatileRead(L_13);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_15 = ___0_segment;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = L_15->____slotsMask;
|
|
int32_t L_17 = V_0;
|
|
if ((!(((uint32_t)((int32_t)(L_14&L_16))) == ((uint32_t)L_17))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_18 = ___0_segment;
|
|
NullCheck(L_18);
|
|
SlotU5BU5D_t50AA161D0E0CA4901F88A99B082CD5FA953B023B* L_19 = L_18->____slots;
|
|
int32_t L_20 = ___1_i;
|
|
NullCheck(L_19);
|
|
RuntimeObject* L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___Item;
|
|
return L_21;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_Enumerate_mB2EACA03901B963C1957491121264CB11B5B2C05_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___0_head, int32_t ___1_headHead, Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
U3CEnumerateU3Ed__28_t0208D88B19E67F3B47A3ACACCAF0810D4DA5D4AE* L_0 = (U3CEnumerateU3Ed__28_t0208D88B19E67F3B47A3ACACCAF0810D4DA5D4AE*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 32));
|
|
U3CEnumerateU3Ed__28__ctor_m12DD4367CAA863C7406D2DC6FD650C53ADA44B29(L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
U3CEnumerateU3Ed__28_t0208D88B19E67F3B47A3ACACCAF0810D4DA5D4AE* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
L_1->___U3CU3E4__this = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_1->___U3CU3E4__this), (void*)__this);
|
|
U3CEnumerateU3Ed__28_t0208D88B19E67F3B47A3ACACCAF0810D4DA5D4AE* L_2 = L_1;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_3 = ___0_head;
|
|
NullCheck(L_2);
|
|
L_2->___head = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_2->___head), (void*)L_3);
|
|
U3CEnumerateU3Ed__28_t0208D88B19E67F3B47A3ACACCAF0810D4DA5D4AE* L_4 = L_2;
|
|
int32_t L_5 = ___1_headHead;
|
|
NullCheck(L_4);
|
|
L_4->___headHead = L_5;
|
|
U3CEnumerateU3Ed__28_t0208D88B19E67F3B47A3ACACCAF0810D4DA5D4AE* L_6 = L_4;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_7 = ___2_tail;
|
|
NullCheck(L_6);
|
|
L_6->___tail = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_6->___tail), (void*)L_7);
|
|
U3CEnumerateU3Ed__28_t0208D88B19E67F3B47A3ACACCAF0810D4DA5D4AE* L_8 = L_6;
|
|
int32_t L_9 = ___3_tailTail;
|
|
NullCheck(L_8);
|
|
L_8->___tailTail = L_9;
|
|
return (RuntimeObject*)L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_Enqueue_m6E14BFDDF046BB59B8EEF4A398D5AB7F4720D0A4_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_0 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
RuntimeObject* L_1 = ___0_item;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Segment_TryEnqueue_mC0606A90F9CBCD06D9ED05EA760356F9A9A9AF84(L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
if (L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_item;
|
|
ConcurrentQueue_1_EnqueueSlow_m4CD45BC265B633641FAEEDDBA196DAD43BAE1C67(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 35));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_EnqueueSlow_m4CD45BC265B633641FAEEDDBA196DAD43BAE1C67_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_3 = NULL;
|
|
int32_t G_B7_0 = 0;
|
|
|
|
IL_0000:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_0 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_1 = V_0;
|
|
RuntimeObject* L_2 = ___0_item;
|
|
NullCheck(L_1);
|
|
bool L_3;
|
|
L_3 = Segment_TryEnqueue_mC0606A90F9CBCD06D9ED05EA760356F9A9A9AF84(L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 34));
|
|
if (!L_3)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
RuntimeObject* L_4 = __this->____crossSegmentLock;
|
|
V_1 = L_4;
|
|
V_2 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006b:
|
|
{
|
|
{
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_6 = V_1;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_6, NULL);
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_7 = V_1;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_7, (&V_2), NULL);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_8 = V_0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_9 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_8) == ((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_9))))
|
|
{
|
|
goto IL_0069_1;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
Segment_EnsureFrozenForEnqueues_mC7EA723BE98E075BE173825F3913AA3C16F0B655(L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_11 = V_0;
|
|
NullCheck(L_11);
|
|
bool L_12 = L_11->____preservedForObservation;
|
|
if (L_12)
|
|
{
|
|
goto IL_0051_1;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = Segment_get_Capacity_m6AC42C585777163E56321B193E08010DFD029898(L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 36));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_15;
|
|
L_15 = Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52(((int32_t)il2cpp_codegen_multiply(L_14, 2)), ((int32_t)1048576), NULL);
|
|
G_B7_0 = L_15;
|
|
goto IL_0053_1;
|
|
}
|
|
|
|
IL_0051_1:
|
|
{
|
|
G_B7_0 = ((int32_t)32);
|
|
}
|
|
|
|
IL_0053_1:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_16 = (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
Segment__ctor_mD5C583944CF31346F08BA757C9C15371C4858FA7(L_16, G_B7_0, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
V_3 = L_16;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_17 = V_0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_18 = V_3;
|
|
NullCheck(L_17);
|
|
L_17->____nextSegment = L_18;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_17->____nextSegment), (void*)L_18);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_19 = V_3;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tail = L_19;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tail), (void*)L_19);
|
|
}
|
|
|
|
IL_0069_1:
|
|
{
|
|
goto IL_0000;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryDequeue_m04C6B697D83A4AA4BAD38344201C140ED7DC5CAA_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject** ___0_result, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_0 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
RuntimeObject** L_1 = ___0_result;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Segment_TryDequeue_m65CCE1E0A24F41FA5EE05BBB78C07B873ADCC77E(L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
|
|
if (L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject** L_3 = ___0_result;
|
|
bool L_4;
|
|
L_4 = ConcurrentQueue_1_TryDequeueSlow_m51E29FFC2018FE36494F806DE731B983CF149480(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 38));
|
|
return L_4;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryDequeueSlow_m51E29FFC2018FE36494F806DE731B983CF149480_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject** ___0_item, const RuntimeMethod* method)
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
|
|
IL_0000:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_0 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_1 = V_0;
|
|
RuntimeObject** L_2 = ___0_item;
|
|
NullCheck(L_1);
|
|
bool L_3;
|
|
L_3 = Segment_TryDequeue_m65CCE1E0A24F41FA5EE05BBB78C07B873ADCC77E(L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
|
|
if (!L_3)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_5 = L_4->____nextSegment;
|
|
if (L_5)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject** L_6 = ___0_item;
|
|
il2cpp_codegen_initobj(L_6, sizeof(RuntimeObject*));
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_7 = V_0;
|
|
RuntimeObject** L_8 = ___0_item;
|
|
NullCheck(L_7);
|
|
bool L_9;
|
|
L_9 = Segment_TryDequeue_m65CCE1E0A24F41FA5EE05BBB78C07B873ADCC77E(L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
|
|
if (!L_9)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
RuntimeObject* L_10 = __this->____crossSegmentLock;
|
|
V_1 = L_10;
|
|
V_2 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005c:
|
|
{
|
|
{
|
|
bool L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_12 = V_1;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_12, NULL);
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_13 = V_1;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_13, (&V_2), NULL);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_14 = V_0;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_15 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_14) == ((RuntimeObject*)(Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)L_15))))
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_16 = V_0;
|
|
NullCheck(L_16);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_17 = L_16->____nextSegment;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____head = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____head), (void*)L_17);
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
goto IL_0000;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
il2cpp_codegen_no_return();
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryPeek_m77F4E32293E8717DB7B83508705CB23B8984932B_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject** ___0_result, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject** L_0 = ___0_result;
|
|
bool L_1;
|
|
L_1 = ConcurrentQueue_1_TryPeek_mC3450BED83DB82DEA37C407E34373008958BC9BB(__this, L_0, (bool)1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryPeek_mC3450BED83DB82DEA37C407E34373008958BC9BB_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, RuntimeObject** ___0_result, bool ___1_resultUsed, const RuntimeMethod* method)
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_0 = NULL;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_1 = NULL;
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_0 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_1 = V_0;
|
|
NullCheck(L_1);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** L_2 = (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2**)(&L_1->____nextSegment);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_3;
|
|
L_3 = VolatileRead(L_2);
|
|
V_1 = L_3;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_4 = V_0;
|
|
RuntimeObject** L_5 = ___0_result;
|
|
bool L_6 = ___1_resultUsed;
|
|
NullCheck(L_4);
|
|
bool L_7;
|
|
L_7 = Segment_TryPeek_m8AE646DCD469A3337B3B3DA3B568612B8B3F7BD1(L_4, L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
if (!L_7)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_9 = V_1;
|
|
V_0 = L_9;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2** L_11 = (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2**)(&L_10->____nextSegment);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_12;
|
|
L_12 = VolatileRead(L_11);
|
|
if (L_12)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject** L_13 = ___0_result;
|
|
il2cpp_codegen_initobj(L_13, sizeof(RuntimeObject*));
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_Clear_m8E0C1E0E5A362B8C9E9789DBCDC12689284B0DEA_gshared (ConcurrentQueue_1_t38466BAF2E0933882FAC022407D638F7900CEED4* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* V_2 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->____crossSegmentLock;
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003a:
|
|
{
|
|
{
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_2, NULL);
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_3, (&V_1), NULL);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_4 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_4);
|
|
Segment_EnsureFrozenForEnqueues_mC7EA723BE98E075BE173825F3913AA3C16F0B655(L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_5 = (Segment_tBE464478C92438E20009981FD7F953F796D7F3B2*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
Segment__ctor_mD5C583944CF31346F08BA757C9C15371C4858FA7(L_5, ((int32_t)32), il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_6 = L_5;
|
|
V_2 = L_6;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____head = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____head), (void*)L_6);
|
|
Segment_tBE464478C92438E20009981FD7F953F796D7F3B2* L_7 = V_2;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tail = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tail), (void*)L_7);
|
|
goto IL_0044;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1__ctor_mBD638A8A935506D26301AF551FBF883A3354434B_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_0 = NULL;
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
|
|
__this->____crossSegmentLock = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____crossSegmentLock), (void*)L_0);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_1 = (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
(( void (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(L_1, ((int32_t)32), il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_2 = L_1;
|
|
V_0 = L_2;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____head = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____head), (void*)L_2);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_3 = V_0;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tail = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tail), (void*)L_3);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_InitializeFromCollection_m0E7A03C63DC2880EF2C02EDC72328816390B6B42_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
const uint32_t SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_19 = alloca(SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
const Il2CppFullySharedGenericAny L_20 = alloca(SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_3 = NULL;
|
|
RuntimeObject* V_4 = NULL;
|
|
Il2CppFullySharedGenericAny V_5 = alloca(SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
memset(V_5, 0, SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
{
|
|
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
|
|
__this->____crossSegmentLock = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____crossSegmentLock), (void*)L_0);
|
|
V_0 = ((int32_t)32);
|
|
RuntimeObject* L_1 = ___0_collection;
|
|
V_1 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
RuntimeObject* L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 5), L_3);
|
|
V_2 = L_4;
|
|
int32_t L_5 = V_2;
|
|
int32_t L_6 = V_0;
|
|
if ((((int32_t)L_5) <= ((int32_t)L_6)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = V_2;
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 7)))(L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 7));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_9;
|
|
L_9 = Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52(L_8, ((int32_t)1048576), NULL);
|
|
V_0 = L_9;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_10 = V_0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_11 = (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
(( void (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(L_11, L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_12 = L_11;
|
|
V_3 = L_12;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____head = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____head), (void*)L_12);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_13 = V_3;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tail = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tail), (void*)L_13);
|
|
RuntimeObject* L_14 = ___0_collection;
|
|
NullCheck(L_14);
|
|
RuntimeObject* L_15;
|
|
L_15 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), L_14);
|
|
V_4 = L_15;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0073:
|
|
{
|
|
{
|
|
RuntimeObject* L_16 = V_4;
|
|
if (!L_16)
|
|
{
|
|
goto IL_007e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_17 = V_4;
|
|
NullCheck((RuntimeObject*)L_17);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_17);
|
|
}
|
|
|
|
IL_007e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0068_1;
|
|
}
|
|
|
|
IL_0057_1:
|
|
{
|
|
RuntimeObject* L_18 = V_4;
|
|
NullCheck(L_18);
|
|
InterfaceActionInvoker1Invoker< Il2CppFullySharedGenericAny* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 10), L_18, (Il2CppFullySharedGenericAny*)L_19);
|
|
il2cpp_codegen_memcpy(V_5, L_19, SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
il2cpp_codegen_memcpy(L_20, V_5, SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)), il2cpp_rgctx_method(method->klass->rgctx_data, 13), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_20: *(void**)L_20));
|
|
}
|
|
|
|
IL_0068_1:
|
|
{
|
|
RuntimeObject* L_21 = V_4;
|
|
NullCheck((RuntimeObject*)L_21);
|
|
bool L_22;
|
|
L_22 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_21);
|
|
if (L_22)
|
|
{
|
|
goto IL_0057_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1__ctor_m8E09DC5BE75ABFB00CB091CAF816D365A40C48C1_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, RuntimeObject* ___0_collection, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
RuntimeObject* L_0 = ___0_collection;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
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*)&_stringLiteral469F05BE9BB4C7903C353D0EB9F6384C84A48B25)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_2 = ___0_collection;
|
|
(( void (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 14)))(__this, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_System_Collections_ICollection_CopyTo_m31E8DEB5DB7A18B5FBF3E5DDF9F527C2EEDCF992_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, RuntimeArray* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* V_0 = NULL;
|
|
{
|
|
RuntimeArray* L_0 = ___0_array;
|
|
V_0 = ((__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(method->klass->rgctx_data, 15)));
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_2 = V_0;
|
|
int32_t L_3 = ___1_index;
|
|
(( void (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 16)))(__this, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 16));
|
|
return;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
RuntimeArray* L_4 = ___0_array;
|
|
if (L_4)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_5 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralB829404B947F7E1629A30B5E953A49EB21CCD2ED)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, method);
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_6;
|
|
L_6 = (( __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, 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));
|
|
RuntimeArray* L_7 = ___0_array;
|
|
int32_t L_8 = ___1_index;
|
|
NullCheck((RuntimeArray*)L_6);
|
|
Array_CopyTo_mFD42E3443AB3B850ED6F19359698E242A08E1BAB((RuntimeArray*)L_6, L_7, L_8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_System_Collections_ICollection_get_IsSynchronized_mDBE15A12DBD4B834E62E0F8847B0658B9A3FA66D_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_System_Collections_ICollection_get_SyncRoot_mC20302A37BEB55D6E142143278B87DC2BE71A10F_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_0 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral4CC02BED909F9630E59013E4804C6C269FF8370A)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, method);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_System_Collections_IEnumerable_GetEnumerator_m2ABB948D0EA8D62826531E5AE61A184491A310C6_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NullCheck((RuntimeObject*)__this);
|
|
RuntimeObject* L_0;
|
|
L_0 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 4), (RuntimeObject*)__this);
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_System_Collections_Concurrent_IProducerConsumerCollectionU3CTU3E_TryAdd_m2918189A3D021A0952955D64B4FCC204FAB077EC_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_item : &___0_item), SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 13)), il2cpp_rgctx_method(method->klass->rgctx_data, 13), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_0: *(void**)L_0));
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_System_Collections_Concurrent_IProducerConsumerCollectionU3CTU3E_TryTake_m1FFC0C35F0712A5B8C4A2D0FB3213295044FAD83_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, Il2CppFullySharedGenericAny* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppFullySharedGenericAny* L_0 = ___0_item;
|
|
bool L_1;
|
|
L_1 = (( bool (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 19)))(__this, L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 19));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_get_IsEmpty_mB9B15158145849DEC44B4534F7D4003831774FB7_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
Il2CppFullySharedGenericAny V_0 = alloca(SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
memset(V_0, 0, SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
{
|
|
bool L_0;
|
|
L_0 = (( bool (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, Il2CppFullySharedGenericAny*, bool, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 20)))(__this, (Il2CppFullySharedGenericAny*)V_0, (bool)0, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
return (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ConcurrentQueue_1_ToArray_m332B0114467B44A9F92FD82308D97548187188D7_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
const uint32_t SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_17 = alloca(SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_0 = NULL;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* V_4 = NULL;
|
|
RuntimeObject* V_5 = NULL;
|
|
int32_t V_6 = 0;
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**, int32_t*, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 21)))(__this, (&V_0), (&V_2), (&V_1), (&V_3), il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_0 = V_0;
|
|
int32_t L_1 = V_2;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_2 = V_1;
|
|
int32_t L_3 = V_3;
|
|
int64_t L_4;
|
|
L_4 = (( int64_t (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 23)))(L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
if ((int64_t)(L_4) > INTPTR_MAX) IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_overflow_exception(), method);
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_5 = (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)(__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*)SZArrayNew(il2cpp_rgctx_data(method->klass->rgctx_data, 25), (uint32_t)((intptr_t)L_4));
|
|
V_4 = L_5;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_6 = V_0;
|
|
int32_t L_7 = V_2;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_8 = V_1;
|
|
int32_t L_9 = V_3;
|
|
RuntimeObject* L_10;
|
|
L_10 = (( RuntimeObject* (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 26)))(__this, L_6, L_7, L_8, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
V_5 = L_10;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0050:
|
|
{
|
|
{
|
|
RuntimeObject* L_11 = V_5;
|
|
if (!L_11)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_12 = V_5;
|
|
NullCheck((RuntimeObject*)L_12);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_12);
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_6 = 0;
|
|
goto IL_0045_1;
|
|
}
|
|
|
|
IL_0030_1:
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_13 = V_4;
|
|
int32_t L_14 = V_6;
|
|
int32_t L_15 = L_14;
|
|
V_6 = ((int32_t)il2cpp_codegen_add(L_15, 1));
|
|
RuntimeObject* L_16 = V_5;
|
|
NullCheck(L_16);
|
|
InterfaceActionInvoker1Invoker< Il2CppFullySharedGenericAny* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 10), L_16, (Il2CppFullySharedGenericAny*)L_17);
|
|
NullCheck(L_13);
|
|
il2cpp_codegen_memcpy((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_15)), L_17, SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 12), (void**)(L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_15)), (void*)L_17);
|
|
}
|
|
|
|
IL_0045_1:
|
|
{
|
|
RuntimeObject* L_18 = V_5;
|
|
NullCheck((RuntimeObject*)L_18);
|
|
bool L_19;
|
|
L_19 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_18);
|
|
if (L_19)
|
|
{
|
|
goto IL_0030_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_20 = V_4;
|
|
return L_20;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentQueue_1_get_Count_m396B7352DD9C882FFFBFFA06479B0EDF49A6D9AF_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_0 = NULL;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
{
|
|
il2cpp_codegen_initobj((&V_6), sizeof(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675));
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_0 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_1 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_1 = L_1;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_3 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_2->____headAndTail);
|
|
int32_t* L_4 = (int32_t*)(&L_3->___Head);
|
|
int32_t L_5;
|
|
L_5 = VolatileRead(L_4);
|
|
V_2 = L_5;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_7 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_6->____headAndTail);
|
|
int32_t* L_8 = (int32_t*)(&L_7->___Tail);
|
|
int32_t L_9;
|
|
L_9 = VolatileRead(L_8);
|
|
V_3 = L_9;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_10 = V_0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_11 = V_1;
|
|
if ((!(((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_10) == ((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_11))))
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_12 = V_0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_13 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_12) == ((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_13))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_14 = V_0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_15 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_14) == ((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_15))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_2;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_18 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_17->____headAndTail);
|
|
int32_t* L_19 = (int32_t*)(&L_18->___Head);
|
|
int32_t L_20;
|
|
L_20 = VolatileRead(L_19);
|
|
if ((!(((uint32_t)L_16) == ((uint32_t)L_20))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = V_3;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_22 = V_0;
|
|
NullCheck(L_22);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_23 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_22->____headAndTail);
|
|
int32_t* L_24 = (int32_t*)(&L_23->___Tail);
|
|
int32_t L_25;
|
|
L_25 = VolatileRead(L_24);
|
|
if ((!(((uint32_t)L_21) == ((uint32_t)L_25))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_26 = V_0;
|
|
int32_t L_27 = V_2;
|
|
int32_t L_28 = V_3;
|
|
int32_t L_29;
|
|
L_29 = (( int32_t (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 27)))(L_26, L_27, L_28, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
return L_29;
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_30 = V_0;
|
|
NullCheck(L_30);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_31 = L_30->____nextSegment;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_32 = V_1;
|
|
if ((!(((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_31) == ((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_32))))
|
|
{
|
|
goto IL_013c;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_33 = V_1;
|
|
NullCheck(L_33);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_34 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_33->____headAndTail);
|
|
int32_t* L_35 = (int32_t*)(&L_34->___Head);
|
|
int32_t L_36;
|
|
L_36 = VolatileRead(L_35);
|
|
V_4 = L_36;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_37 = V_1;
|
|
NullCheck(L_37);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_38 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_37->____headAndTail);
|
|
int32_t* L_39 = (int32_t*)(&L_38->___Tail);
|
|
int32_t L_40;
|
|
L_40 = VolatileRead(L_39);
|
|
V_5 = L_40;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_41 = V_0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_42 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_41) == ((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_42))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_43 = V_1;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_44 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_43) == ((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_44))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_45 = V_2;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_46 = V_0;
|
|
NullCheck(L_46);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_47 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_46->____headAndTail);
|
|
int32_t* L_48 = (int32_t*)(&L_47->___Head);
|
|
int32_t L_49;
|
|
L_49 = VolatileRead(L_48);
|
|
if ((!(((uint32_t)L_45) == ((uint32_t)L_49))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_50 = V_3;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_51 = V_0;
|
|
NullCheck(L_51);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_52 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_51->____headAndTail);
|
|
int32_t* L_53 = (int32_t*)(&L_52->___Tail);
|
|
int32_t L_54;
|
|
L_54 = VolatileRead(L_53);
|
|
if ((!(((uint32_t)L_50) == ((uint32_t)L_54))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_55 = V_4;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_56 = V_1;
|
|
NullCheck(L_56);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_57 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_56->____headAndTail);
|
|
int32_t* L_58 = (int32_t*)(&L_57->___Head);
|
|
int32_t L_59;
|
|
L_59 = VolatileRead(L_58);
|
|
if ((!(((uint32_t)L_55) == ((uint32_t)L_59))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_60 = V_5;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_61 = V_1;
|
|
NullCheck(L_61);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_62 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_61->____headAndTail);
|
|
int32_t* L_63 = (int32_t*)(&L_62->___Tail);
|
|
int32_t L_64;
|
|
L_64 = VolatileRead(L_63);
|
|
if ((!(((uint32_t)L_60) == ((uint32_t)L_64))))
|
|
{
|
|
goto IL_0156;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_65 = V_0;
|
|
int32_t L_66 = V_2;
|
|
int32_t L_67 = V_3;
|
|
int32_t L_68;
|
|
L_68 = (( int32_t (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 27)))(L_65, L_66, L_67, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_69 = V_1;
|
|
int32_t L_70 = V_4;
|
|
int32_t L_71 = V_5;
|
|
int32_t L_72;
|
|
L_72 = (( int32_t (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 27)))(L_69, L_70, L_71, il2cpp_rgctx_method(method->klass->rgctx_data, 27));
|
|
return ((int32_t)il2cpp_codegen_add(L_68, L_72));
|
|
}
|
|
|
|
IL_013c:
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**, int32_t*, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 21)))(__this, (&V_0), (&V_2), (&V_1), (&V_5), il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_73 = V_0;
|
|
int32_t L_74 = V_2;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_75 = V_1;
|
|
int32_t L_76 = V_5;
|
|
int64_t L_77;
|
|
L_77 = (( int64_t (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 23)))(L_73, L_74, L_75, L_76, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
return ((int32_t)L_77);
|
|
}
|
|
|
|
IL_0156:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
|
|
SpinWait_SpinOnce_m5B74E6B15013E90667646C0D943E886D4EC596AF((&V_6), NULL);
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConcurrentQueue_1_GetCount_m04329AA073F4F8FB1966F5D5C036F1E54F46EE22_gshared (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* ___0_s, int32_t ___1_head, int32_t ___2_tail, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___1_head;
|
|
int32_t L_1 = ___2_tail;
|
|
if ((((int32_t)L_0) == ((int32_t)L_1)))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___1_head;
|
|
int32_t L_3 = ___2_tail;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_4 = ___0_s;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = (( int32_t (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28)))(L_4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28));
|
|
if ((((int32_t)L_2) == ((int32_t)((int32_t)il2cpp_codegen_subtract(L_3, L_5)))))
|
|
{
|
|
goto IL_0038;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = ___1_head;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_7 = ___0_s;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->____slotsMask;
|
|
___1_head = ((int32_t)(L_6&L_8));
|
|
int32_t L_9 = ___2_tail;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_10 = ___0_s;
|
|
NullCheck(L_10);
|
|
int32_t L_11 = L_10->____slotsMask;
|
|
___2_tail = ((int32_t)(L_9&L_11));
|
|
int32_t L_12 = ___1_head;
|
|
int32_t L_13 = ___2_tail;
|
|
if ((((int32_t)L_12) < ((int32_t)L_13)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_14 = ___0_s;
|
|
NullCheck(L_14);
|
|
SlotU5BU5D_t15A614E28C19F61C3F029DFAA2127DA15F293444* L_15 = L_14->____slots;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = ___1_head;
|
|
int32_t L_17 = ___2_tail;
|
|
return ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_15)->max_length)), L_16)), L_17));
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_18 = ___2_tail;
|
|
int32_t L_19 = ___1_head;
|
|
return ((int32_t)il2cpp_codegen_subtract(L_18, L_19));
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
return 0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ConcurrentQueue_1_GetCount_m0E9A4AD17D52B3EAFD862A9F8F80C332F31AFC50_gshared (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* ___0_head, int32_t ___1_headHead, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
int64_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_2 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
int64_t G_B6_0 = 0;
|
|
int64_t G_B5_0 = 0;
|
|
int32_t G_B7_0 = 0;
|
|
int64_t G_B7_1 = 0;
|
|
{
|
|
V_0 = ((int64_t)0);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_0 = ___0_head;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_1 = ___2_tail;
|
|
if ((((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_0) == ((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_1)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_2 = ___0_head;
|
|
NullCheck(L_2);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_3 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_2->____headAndTail);
|
|
int32_t* L_4 = (int32_t*)(&L_3->___Tail);
|
|
int32_t L_5;
|
|
L_5 = VolatileRead(L_4);
|
|
G_B3_0 = L_5;
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
int32_t L_6 = ___3_tailTail;
|
|
G_B3_0 = L_6;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_7 = ___0_head;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = (( int32_t (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28)))(L_7, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28));
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(G_B3_0, L_8));
|
|
int32_t L_9 = ___1_headHead;
|
|
int32_t L_10 = V_1;
|
|
if ((((int32_t)L_9) >= ((int32_t)L_10)))
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = ___1_headHead;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_12 = ___0_head;
|
|
NullCheck(L_12);
|
|
int32_t L_13 = L_12->____slotsMask;
|
|
___1_headHead = ((int32_t)(L_11&L_13));
|
|
int32_t L_14 = V_1;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_15 = ___0_head;
|
|
NullCheck(L_15);
|
|
int32_t L_16 = L_15->____slotsMask;
|
|
V_1 = ((int32_t)(L_14&L_16));
|
|
int64_t L_17 = V_0;
|
|
int32_t L_18 = ___1_headHead;
|
|
int32_t L_19 = V_1;
|
|
if ((((int32_t)L_18) < ((int32_t)L_19)))
|
|
{
|
|
G_B6_0 = L_17;
|
|
goto IL_004c;
|
|
}
|
|
G_B5_0 = L_17;
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_20 = ___0_head;
|
|
NullCheck(L_20);
|
|
SlotU5BU5D_t15A614E28C19F61C3F029DFAA2127DA15F293444* L_21 = L_20->____slots;
|
|
NullCheck(L_21);
|
|
int32_t L_22 = ___1_headHead;
|
|
int32_t L_23 = V_1;
|
|
G_B7_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_21)->max_length)), L_22)), L_23));
|
|
G_B7_1 = G_B5_0;
|
|
goto IL_004f;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
int32_t L_24 = V_1;
|
|
int32_t L_25 = ___1_headHead;
|
|
G_B7_0 = ((int32_t)il2cpp_codegen_subtract(L_24, L_25));
|
|
G_B7_1 = G_B6_0;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
V_0 = ((int64_t)il2cpp_codegen_add(G_B7_1, ((int64_t)G_B7_0)));
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_26 = ___0_head;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_27 = ___2_tail;
|
|
if ((((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_26) == ((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_27)))
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_28 = ___0_head;
|
|
NullCheck(L_28);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_29 = L_28->____nextSegment;
|
|
V_2 = L_29;
|
|
goto IL_007c;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int64_t L_30 = V_0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_31 = V_2;
|
|
NullCheck(L_31);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_32 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_31->____headAndTail);
|
|
int32_t L_33 = L_32->___Tail;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_34 = V_2;
|
|
NullCheck(L_34);
|
|
int32_t L_35;
|
|
L_35 = (( int32_t (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28)))(L_34, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28));
|
|
V_0 = ((int64_t)il2cpp_codegen_add(L_30, ((int64_t)((int32_t)il2cpp_codegen_subtract(L_33, L_35)))));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_36 = V_2;
|
|
NullCheck(L_36);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_37 = L_36->____nextSegment;
|
|
V_2 = L_37;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_38 = V_2;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_39 = ___2_tail;
|
|
if ((!(((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_38) == ((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_39))))
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_40 = V_0;
|
|
int32_t L_41 = ___3_tailTail;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_42 = ___2_tail;
|
|
NullCheck(L_42);
|
|
int32_t L_43;
|
|
L_43 = (( int32_t (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28)))(L_42, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 28));
|
|
V_0 = ((int64_t)il2cpp_codegen_add(L_40, ((int64_t)((int32_t)il2cpp_codegen_subtract(L_41, L_43)))));
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
int64_t L_44 = V_0;
|
|
return L_44;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_CopyTo_m591AA4AB0FDF391C4137E997870F98C955D8996B_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___0_array, int32_t ___1_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
const uint32_t SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_25 = alloca(SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_0 = NULL;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int64_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
RuntimeObject* V_6 = NULL;
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
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:
|
|
{
|
|
int32_t L_2 = ___1_index;
|
|
if ((((int32_t)L_2) >= ((int32_t)0)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
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_mE5B2755F0BEA043CACF915D5CE140859EE58FA66(L_3, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2B6D6F48C27C60C3B55391AB377D9DC8F5639AA1)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEDA0106FDFD942FADD2AA6A80843D70DD44B63FD)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_3, method);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**, int32_t*, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 21)))(__this, (&V_0), (&V_2), (&V_1), (&V_3), il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_4 = V_0;
|
|
int32_t L_5 = V_2;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_6 = V_1;
|
|
int32_t L_7 = V_3;
|
|
int64_t L_8;
|
|
L_8 = (( int64_t (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 23)))(L_4, L_5, L_6, L_7, il2cpp_rgctx_method(method->klass->rgctx_data, 23));
|
|
V_4 = L_8;
|
|
int32_t L_9 = ___1_index;
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_10 = ___0_array;
|
|
NullCheck(L_10);
|
|
int64_t L_11 = V_4;
|
|
if ((((int64_t)((int64_t)L_9)) <= ((int64_t)((int64_t)il2cpp_codegen_subtract(((int64_t)((int32_t)(((RuntimeArray*)L_10)->max_length))), L_11)))))
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_12 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_12, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralCE9C604469720D63E041FC7B3F7FF7D99A882AC2)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_12, method);
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
int32_t L_13 = ___1_index;
|
|
V_5 = L_13;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_14 = V_0;
|
|
int32_t L_15 = V_2;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_16 = V_1;
|
|
int32_t L_17 = V_3;
|
|
RuntimeObject* L_18;
|
|
L_18 = (( RuntimeObject* (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 26)))(__this, L_14, L_15, L_16, L_17, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
V_6 = L_18;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0081:
|
|
{
|
|
{
|
|
RuntimeObject* L_19 = V_6;
|
|
if (!L_19)
|
|
{
|
|
goto IL_008c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_20 = V_6;
|
|
NullCheck((RuntimeObject*)L_20);
|
|
InterfaceActionInvoker0::Invoke(0, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, (RuntimeObject*)L_20);
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
goto IL_0076_1;
|
|
}
|
|
|
|
IL_0062_1:
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_21 = ___0_array;
|
|
int32_t L_22 = V_5;
|
|
int32_t L_23 = L_22;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_23, 1));
|
|
RuntimeObject* L_24 = V_6;
|
|
NullCheck(L_24);
|
|
InterfaceActionInvoker1Invoker< Il2CppFullySharedGenericAny* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 10), L_24, (Il2CppFullySharedGenericAny*)L_25);
|
|
NullCheck(L_21);
|
|
il2cpp_codegen_memcpy((L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)), L_25, SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
Il2CppCodeGenWriteBarrierForClass(il2cpp_rgctx_data(method->klass->rgctx_data, 12), (void**)(L_21)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_23)), (void*)L_25);
|
|
}
|
|
|
|
IL_0076_1:
|
|
{
|
|
RuntimeObject* L_26 = V_6;
|
|
NullCheck((RuntimeObject*)L_26);
|
|
bool L_27;
|
|
L_27 = InterfaceFuncInvoker0< bool >::Invoke(0, IEnumerator_t7B609C2FFA6EB5167D9C62A0C32A21DE2F666DAA_il2cpp_TypeInfo_var, (RuntimeObject*)L_26);
|
|
if (L_27)
|
|
{
|
|
goto IL_0062_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008d;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_008d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_GetEnumerator_m49B06A21630AD3AE3A34C716D1FD9AE37CC950AD_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, const RuntimeMethod* method)
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_0 = NULL;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
{
|
|
(( void (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**, int32_t*, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**, int32_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 21)))(__this, (&V_0), (&V_2), (&V_1), (&V_3), il2cpp_rgctx_method(method->klass->rgctx_data, 21));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_0 = V_0;
|
|
int32_t L_1 = V_2;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_2 = V_1;
|
|
int32_t L_3 = V_3;
|
|
RuntimeObject* L_4;
|
|
L_4 = (( RuntimeObject* (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 26)))(__this, L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 26));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_SnapForObservation_m381528AE4EA912FA5DAE6DC187A5DA7BA847C6D2_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912** ___0_head, int32_t* ___1_headHead, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912** ___2_tail, int32_t* ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_2 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->____crossSegmentLock;
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006d:
|
|
{
|
|
{
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0076;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_2, NULL);
|
|
}
|
|
|
|
IL_0076:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_3, (&V_1), NULL);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912** L_4 = ___0_head;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_5 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
*((RuntimeObject**)L_4) = (RuntimeObject*)L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_5);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912** L_6 = ___2_tail;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_7 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
*((RuntimeObject**)L_6) = (RuntimeObject*)L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_6, (void*)(RuntimeObject*)L_7);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912** L_8 = ___0_head;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_9 = *((Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**)L_8);
|
|
V_2 = L_9;
|
|
}
|
|
|
|
IL_0028_1:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
L_10->____preservedForObservation = (bool)1;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_11 = V_2;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912** L_12 = ___2_tail;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_13 = *((Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**)L_12);
|
|
if ((((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_11) == ((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_13)))
|
|
{
|
|
goto IL_003d_1;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_14 = V_2;
|
|
NullCheck(L_14);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_15 = L_14->____nextSegment;
|
|
V_2 = L_15;
|
|
goto IL_0028_1;
|
|
}
|
|
|
|
IL_003d_1:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912** L_16 = ___2_tail;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_17 = *((Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**)L_16);
|
|
NullCheck(L_17);
|
|
(( void (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 30)))(L_17, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
int32_t* L_18 = ___1_headHead;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912** L_19 = ___0_head;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_20 = *((Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**)L_19);
|
|
NullCheck(L_20);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_21 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_20->____headAndTail);
|
|
int32_t* L_22 = (int32_t*)(&L_21->___Head);
|
|
int32_t L_23;
|
|
L_23 = VolatileRead(L_22);
|
|
*((int32_t*)L_18) = (int32_t)L_23;
|
|
int32_t* L_24 = ___3_tailTail;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912** L_25 = ___2_tail;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_26 = *((Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**)L_25);
|
|
NullCheck(L_26);
|
|
PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8* L_27 = (PaddedHeadAndTail_t1DAB41665EC6BE441A9807218EB9514A1E75B8A8*)(&L_26->____headAndTail);
|
|
int32_t* L_28 = (int32_t*)(&L_27->___Tail);
|
|
int32_t L_29;
|
|
L_29 = VolatileRead(L_28);
|
|
*((int32_t*)L_24) = (int32_t)L_29;
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_GetItemWhenAvailable_m4C552A8DF80F2CC2A1DB09DBC603B1DD3073CD48_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* ___0_segment, int32_t ___1_i, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
const uint32_t SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_20 = alloca(SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
int32_t V_0 = 0;
|
|
SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
int32_t L_0 = ___1_i;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_1 = ___0_segment;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->____slotsMask;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_add(L_0, 1))&L_2));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_3 = ___0_segment;
|
|
NullCheck(L_3);
|
|
SlotU5BU5D_t15A614E28C19F61C3F029DFAA2127DA15F293444* L_4 = L_3->____slots;
|
|
int32_t L_5 = ___1_i;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = *(int32_t*)il2cpp_codegen_get_instance_field_data_pointer(((Slot_t15722483BF8D3D9AE95C0F301EAB5E41F7E1E2B9*)(L_4)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_5))), il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),1));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_7 = ___0_segment;
|
|
NullCheck(L_7);
|
|
int32_t L_8 = L_7->____slotsMask;
|
|
int32_t L_9 = V_0;
|
|
if ((((int32_t)((int32_t)(L_6&L_8))) == ((int32_t)L_9)))
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675));
|
|
goto IL_0037;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(SpinWait_t51CFFA8FF70F1B430E075F96CFD936260D8CE675_il2cpp_TypeInfo_var);
|
|
SpinWait_SpinOnce_m5B74E6B15013E90667646C0D943E886D4EC596AF((&V_1), NULL);
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_10 = ___0_segment;
|
|
NullCheck(L_10);
|
|
SlotU5BU5D_t15A614E28C19F61C3F029DFAA2127DA15F293444* L_11 = L_10->____slots;
|
|
int32_t L_12 = ___1_i;
|
|
NullCheck(L_11);
|
|
int32_t L_13;
|
|
L_13 = VolatileRead((((int32_t*)il2cpp_codegen_get_instance_field_data_pointer(((Slot_t15722483BF8D3D9AE95C0F301EAB5E41F7E1E2B9*)(L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12))), il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),1)))));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_14 = ___0_segment;
|
|
NullCheck(L_14);
|
|
int32_t L_15 = L_14->____slotsMask;
|
|
int32_t L_16 = V_0;
|
|
if ((!(((uint32_t)((int32_t)(L_13&L_15))) == ((uint32_t)L_16))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_17 = ___0_segment;
|
|
NullCheck(L_17);
|
|
SlotU5BU5D_t15A614E28C19F61C3F029DFAA2127DA15F293444* L_18 = L_17->____slots;
|
|
int32_t L_19 = ___1_i;
|
|
NullCheck(L_18);
|
|
il2cpp_codegen_memcpy(L_20, il2cpp_codegen_get_instance_field_data_pointer(((Slot_t15722483BF8D3D9AE95C0F301EAB5E41F7E1E2B9*)(L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19))), il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 31),0)), SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_20, SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConcurrentQueue_1_Enumerate_m9F500020A270C5F7C5C417150A0C79E70641DD5E_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* ___0_head, int32_t ___1_headHead, Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* ___2_tail, int32_t ___3_tailTail, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
U3CEnumerateU3Ed__28_tD7440BDC11153BC444DCE333B0950B1C7B9E9C12* L_0 = (U3CEnumerateU3Ed__28_tD7440BDC11153BC444DCE333B0950B1C7B9E9C12*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 32));
|
|
(( void (*) (U3CEnumerateU3Ed__28_tD7440BDC11153BC444DCE333B0950B1C7B9E9C12*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 33)))(L_0, 0, il2cpp_rgctx_method(method->klass->rgctx_data, 33));
|
|
U3CEnumerateU3Ed__28_tD7440BDC11153BC444DCE333B0950B1C7B9E9C12* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
il2cpp_codegen_write_instance_field_data<ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*>(L_1, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 32),6), __this);
|
|
U3CEnumerateU3Ed__28_tD7440BDC11153BC444DCE333B0950B1C7B9E9C12* L_2 = L_1;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_3 = ___0_head;
|
|
NullCheck(L_2);
|
|
il2cpp_codegen_write_instance_field_data<Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*>(L_2, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 32),2), L_3);
|
|
U3CEnumerateU3Ed__28_tD7440BDC11153BC444DCE333B0950B1C7B9E9C12* L_4 = L_2;
|
|
int32_t L_5 = ___1_headHead;
|
|
NullCheck(L_4);
|
|
il2cpp_codegen_write_instance_field_data<int32_t>(L_4, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 32),5), L_5);
|
|
U3CEnumerateU3Ed__28_tD7440BDC11153BC444DCE333B0950B1C7B9E9C12* L_6 = L_4;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_7 = ___2_tail;
|
|
NullCheck(L_6);
|
|
il2cpp_codegen_write_instance_field_data<Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*>(L_6, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 32),3), L_7);
|
|
U3CEnumerateU3Ed__28_tD7440BDC11153BC444DCE333B0950B1C7B9E9C12* L_8 = L_6;
|
|
int32_t L_9 = ___3_tailTail;
|
|
NullCheck(L_8);
|
|
il2cpp_codegen_write_instance_field_data<int32_t>(L_8, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 32),4), L_9);
|
|
return (RuntimeObject*)L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_Enqueue_m12CEC37645C8F7D938CAC8B31291CD47605A4E8A_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
const Il2CppFullySharedGenericAny L_3 = L_1;
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_0 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_item : &___0_item), SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = InvokerFuncInvoker1< bool, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 34)), il2cpp_rgctx_method(method->klass->rgctx_data, 34), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_1: *(void**)L_1));
|
|
if (L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_item : &___0_item), SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 35)), il2cpp_rgctx_method(method->klass->rgctx_data, 35), __this, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_3: *(void**)L_3));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_EnqueueSlow_m58D248EA5A34093707C7712BA719CAD5CDE7D808_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
const uint32_t SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_3 = NULL;
|
|
int32_t G_B7_0 = 0;
|
|
|
|
IL_0000:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_0 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_1 = V_0;
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? ___0_item : &___0_item), SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
NullCheck(L_1);
|
|
bool L_3;
|
|
L_3 = InvokerFuncInvoker1< bool, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 34)), il2cpp_rgctx_method(method->klass->rgctx_data, 34), L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12)) ? L_2: *(void**)L_2));
|
|
if (!L_3)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
RuntimeObject* L_4 = __this->____crossSegmentLock;
|
|
V_1 = L_4;
|
|
V_2 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006b:
|
|
{
|
|
{
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_6 = V_1;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_6, NULL);
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_7 = V_1;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_7, (&V_2), NULL);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_8 = V_0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_9 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_8) == ((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_9))))
|
|
{
|
|
goto IL_0069_1;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
(( void (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 30)))(L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_11 = V_0;
|
|
NullCheck(L_11);
|
|
bool L_12 = L_11->____preservedForObservation;
|
|
if (L_12)
|
|
{
|
|
goto IL_0051_1;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
int32_t L_14;
|
|
L_14 = (( int32_t (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 36)))(L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 36));
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
int32_t L_15;
|
|
L_15 = Math_Min_m53C488772A34D53917BCA2A491E79A0A5356ED52(((int32_t)il2cpp_codegen_multiply(L_14, 2)), ((int32_t)1048576), NULL);
|
|
G_B7_0 = L_15;
|
|
goto IL_0053_1;
|
|
}
|
|
|
|
IL_0051_1:
|
|
{
|
|
G_B7_0 = ((int32_t)32);
|
|
}
|
|
|
|
IL_0053_1:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_16 = (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
(( void (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(L_16, G_B7_0, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
V_3 = L_16;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_17 = V_0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_18 = V_3;
|
|
NullCheck(L_17);
|
|
L_17->____nextSegment = L_18;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_17->____nextSegment), (void*)L_18);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_19 = V_3;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tail = L_19;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tail), (void*)L_19);
|
|
}
|
|
|
|
IL_0069_1:
|
|
{
|
|
goto IL_0000;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryDequeue_m25152A8A3C9E8C62D269FF97A19A7E3609036349_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, Il2CppFullySharedGenericAny* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_0 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
Il2CppFullySharedGenericAny* L_1 = ___0_result;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = (( bool (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 37)))(L_0, L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
|
|
if (L_2)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_3 = ___0_result;
|
|
bool L_4;
|
|
L_4 = (( bool (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 38)))(__this, L_3, il2cpp_rgctx_method(method->klass->rgctx_data, 38));
|
|
return L_4;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryDequeueSlow_mCF13CBDD23E6DEAD1DB483A55E78B7AA9E0B01FA_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, Il2CppFullySharedGenericAny* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
|
|
IL_0000:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_0 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_1 = V_0;
|
|
Il2CppFullySharedGenericAny* L_2 = ___0_item;
|
|
NullCheck(L_1);
|
|
bool L_3;
|
|
L_3 = (( bool (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 37)))(L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
|
|
if (!L_3)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_5 = L_4->____nextSegment;
|
|
if (L_5)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_6 = ___0_item;
|
|
il2cpp_codegen_initobj(L_6, SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_7 = V_0;
|
|
Il2CppFullySharedGenericAny* L_8 = ___0_item;
|
|
NullCheck(L_7);
|
|
bool L_9;
|
|
L_9 = (( bool (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 37)))(L_7, L_8, il2cpp_rgctx_method(method->klass->rgctx_data, 37));
|
|
if (!L_9)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
RuntimeObject* L_10 = __this->____crossSegmentLock;
|
|
V_1 = L_10;
|
|
V_2 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005c:
|
|
{
|
|
{
|
|
bool L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_12 = V_1;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_12, NULL);
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_13 = V_1;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_13, (&V_2), NULL);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_14 = V_0;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_15 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
if ((!(((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_14) == ((RuntimeObject*)(Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)L_15))))
|
|
{
|
|
goto IL_005a_1;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_16 = V_0;
|
|
NullCheck(L_16);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_17 = L_16->____nextSegment;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____head = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____head), (void*)L_17);
|
|
}
|
|
|
|
IL_005a_1:
|
|
{
|
|
goto IL_0000;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
il2cpp_codegen_no_return();
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryPeek_mE3A3EDD7528C3CDE54213918D544D67E487CEC34_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, Il2CppFullySharedGenericAny* ___0_result, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppFullySharedGenericAny* L_0 = ___0_result;
|
|
bool L_1;
|
|
L_1 = (( bool (*) (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56*, Il2CppFullySharedGenericAny*, bool, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 20)))(__this, L_0, (bool)1, il2cpp_rgctx_method(method->klass->rgctx_data, 20));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConcurrentQueue_1_TryPeek_m363DB720F4675DA729481B4FFC59CD5E3960415F_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, Il2CppFullySharedGenericAny* ___0_result, bool ___1_resultUsed, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 12));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_0 = NULL;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_1 = NULL;
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_0 = __this->____head;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_1 = V_0;
|
|
NullCheck(L_1);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912** L_2 = (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**)(&L_1->____nextSegment);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_3;
|
|
L_3 = VolatileRead(L_2);
|
|
V_1 = L_3;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_4 = V_0;
|
|
Il2CppFullySharedGenericAny* L_5 = ___0_result;
|
|
bool L_6 = ___1_resultUsed;
|
|
NullCheck(L_4);
|
|
bool L_7;
|
|
L_7 = (( bool (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, Il2CppFullySharedGenericAny*, bool, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 40)))(L_4, L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 40));
|
|
if (!L_7)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_9 = V_1;
|
|
V_0 = L_9;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912** L_11 = (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912**)(&L_10->____nextSegment);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_12;
|
|
L_12 = VolatileRead(L_11);
|
|
if (L_12)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_13 = ___0_result;
|
|
il2cpp_codegen_initobj(L_13, SizeOf_T_t82AAEF73E6C71A4CCC5C81A762D3113740ABDCE9);
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConcurrentQueue_1_Clear_m5E6112DF3E7607B448C206141849469D8BB24C78_gshared (ConcurrentQueue_1_t94DD2648ECD2CD2F820284EB39B21F7D62F72C56* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* V_2 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->____crossSegmentLock;
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003a:
|
|
{
|
|
{
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_2, NULL);
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_3, (&V_1), NULL);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_4 = __this->____tail;
|
|
il2cpp_codegen_memory_barrier();
|
|
NullCheck(L_4);
|
|
(( void (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 30)))(L_4, il2cpp_rgctx_method(method->klass->rgctx_data, 30));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_5 = (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 1));
|
|
(( void (*) (Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 2)))(L_5, ((int32_t)32), il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_6 = L_5;
|
|
V_2 = L_6;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____head = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____head), (void*)L_6);
|
|
Segment_tA2C5A02AEE913CF94D2449FE0757EA3445935912* L_7 = V_2;
|
|
il2cpp_codegen_memory_barrier();
|
|
__this->____tail = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____tail), (void*)L_7);
|
|
goto IL_0044;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2__ctor_m853F59C8991DABC257AA9EE373CF4061CDD53E94_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = (RuntimeObject*)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(L_0, NULL);
|
|
__this->____lock = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____lock), (void*)L_0);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2((RuntimeObject*)__this, NULL);
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_1 = (EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8*)(EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8*)SZArrayNew(EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8_il2cpp_TypeInfo_var, (uint32_t)((int32_t)13));
|
|
__this->___data = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___data), (void*)L_1);
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_2 = __this->___data;
|
|
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
GC_register_ephemeron_array_m7798D3C75D2E2DC50CAA2422C2B36656D7793D18(L_2, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Finalize_mDC353C3EA65B9A785B2F7F5F3A987014DD6DE0BE_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0002:
|
|
{
|
|
NullCheck((RuntimeObject*)__this);
|
|
Object_Finalize_mC98C96301CCABFE00F1A7EF8E15DF507CACD42B2((RuntimeObject*)__this, NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_RehashWithoutResize_m7B5A91678E9229FB79E164822F26C2AD4309EE55_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
RuntimeObject* V_3 = NULL;
|
|
int32_t V_4 = 0;
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_0 = __this->___data;
|
|
NullCheck(L_0);
|
|
V_0 = ((int32_t)(((RuntimeArray*)L_0)->max_length));
|
|
V_1 = 0;
|
|
goto IL_003b;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_1 = __this->___data;
|
|
int32_t L_2 = V_1;
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_3 = ((L_1)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_2)))->___key;
|
|
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_4 = ((GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_StaticFields*)il2cpp_codegen_static_fields_for(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var))->___EPHEMERON_TOMBSTONE;
|
|
if ((!(((RuntimeObject*)(RuntimeObject*)L_3) == ((RuntimeObject*)(RuntimeObject*)L_4))))
|
|
{
|
|
goto IL_0037;
|
|
}
|
|
}
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_5 = __this->___data;
|
|
int32_t L_6 = V_1;
|
|
NullCheck(L_5);
|
|
((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->___key = NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((L_5)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_6)))->___key), (void*)NULL);
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
int32_t L_7 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
int32_t L_8 = V_1;
|
|
int32_t L_9 = V_0;
|
|
if ((((int32_t)L_8) < ((int32_t)L_9)))
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
V_2 = 0;
|
|
goto IL_010c;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_10 = __this->___data;
|
|
int32_t L_11 = V_2;
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_12 = ((L_10)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_11)))->___key;
|
|
V_3 = L_12;
|
|
RuntimeObject* L_13 = V_3;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0108;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_14 = V_3;
|
|
int32_t L_15;
|
|
L_15 = RuntimeHelpers_GetHashCode_m7B5D57E1EE2A59EDFA1BD237E9B37C6C836D774B(L_14, NULL);
|
|
int32_t L_16 = V_0;
|
|
V_4 = ((int32_t)(((int32_t)(L_15&((int32_t)2147483647LL)))%L_16));
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_17 = __this->___data;
|
|
int32_t L_18 = V_4;
|
|
NullCheck(L_17);
|
|
RuntimeObject* L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___key;
|
|
if (L_19)
|
|
{
|
|
goto IL_00de;
|
|
}
|
|
}
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_20 = __this->___data;
|
|
int32_t L_21 = V_4;
|
|
NullCheck(L_20);
|
|
RuntimeObject* L_22 = V_3;
|
|
((L_20)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_21)))->___key = L_22;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((L_20)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_21)))->___key), (void*)L_22);
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_23 = __this->___data;
|
|
int32_t L_24 = V_4;
|
|
NullCheck(L_23);
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_25 = __this->___data;
|
|
int32_t L_26 = V_2;
|
|
NullCheck(L_25);
|
|
RuntimeObject* L_27 = ((L_25)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_26)))->___value;
|
|
((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->___value = L_27;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->___value), (void*)L_27);
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_28 = __this->___data;
|
|
int32_t L_29 = V_2;
|
|
NullCheck(L_28);
|
|
((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->___key = NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((L_28)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_29)))->___key), (void*)NULL);
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_30 = __this->___data;
|
|
int32_t L_31 = V_2;
|
|
NullCheck(L_30);
|
|
((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->___value = NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((L_30)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_31)))->___value), (void*)NULL);
|
|
goto IL_0108;
|
|
}
|
|
|
|
IL_00de:
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_32 = __this->___data;
|
|
int32_t L_33 = V_4;
|
|
NullCheck(L_32);
|
|
RuntimeObject* L_34 = ((L_32)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_33)))->___key;
|
|
RuntimeObject* L_35 = V_3;
|
|
if ((((RuntimeObject*)(RuntimeObject*)L_34) == ((RuntimeObject*)(RuntimeObject*)L_35)))
|
|
{
|
|
goto IL_0108;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_36 = V_4;
|
|
int32_t L_37 = ((int32_t)il2cpp_codegen_add(L_36, 1));
|
|
V_4 = L_37;
|
|
int32_t L_38 = V_0;
|
|
if ((!(((uint32_t)L_37) == ((uint32_t)L_38))))
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
V_4 = 0;
|
|
goto IL_006e;
|
|
}
|
|
|
|
IL_0108:
|
|
{
|
|
int32_t L_39 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_39, 1));
|
|
}
|
|
|
|
IL_010c:
|
|
{
|
|
int32_t L_40 = V_2;
|
|
int32_t L_41 = V_0;
|
|
if ((((int32_t)L_40) < ((int32_t)L_41)))
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_RecomputeSize_mA8EA4C9A414745380F7E16B8A773146319737B39_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
__this->___size = 0;
|
|
V_0 = 0;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_0 = __this->___data;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2 = ((L_0)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_1)))->___key;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3 = __this->___size;
|
|
__this->___size = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_6 = __this->___data;
|
|
NullCheck(L_6);
|
|
if ((((int32_t)L_5) < ((int32_t)((int32_t)(((RuntimeArray*)L_6)->max_length)))))
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Rehash_m95A9B6F55E92FC8E85D9E5B751B5F0F50F37430B_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashHelpers_t75606750E152DB8C7289EB4163D3A728ED1A601A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
uint32_t V_0 = 0;
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
RuntimeObject* V_3 = NULL;
|
|
RuntimeObject* V_4 = NULL;
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
RuntimeObject* V_9 = NULL;
|
|
{
|
|
ConditionalWeakTable_2_RecomputeSize_mA8EA4C9A414745380F7E16B8A773146319737B39(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 1));
|
|
int32_t L_0 = __this->___size;
|
|
il2cpp_codegen_runtime_class_init_inline(HashHelpers_t75606750E152DB8C7289EB4163D3A728ED1A601A_il2cpp_TypeInfo_var);
|
|
int32_t L_1;
|
|
L_1 = HashHelpers_GetPrime_m5B7AE10D5E76267579296C8F2CB8464AC2DE8472(((int32_t)(((int32_t)(il2cpp_codegen_cast_double_to_int<int32_t>(((float)(((float)L_0)/(0.699999988f))))<<1))|1)), NULL);
|
|
V_0 = (uint32_t)L_1;
|
|
uint32_t L_2 = V_0;
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_3 = __this->___data;
|
|
NullCheck(L_3);
|
|
if ((!(((float)((float)((double)(uint32_t)L_2))) > ((float)((float)il2cpp_codegen_multiply(((float)((int32_t)(((RuntimeArray*)L_3)->max_length))), (0.5f)))))))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
uint32_t L_4 = V_0;
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_5 = __this->___data;
|
|
NullCheck(L_5);
|
|
if ((!(((float)((float)((double)(uint32_t)L_4))) < ((float)((float)il2cpp_codegen_multiply(((float)((int32_t)(((RuntimeArray*)L_5)->max_length))), (1.10000002f)))))))
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
ConditionalWeakTable_2_RehashWithoutResize_m7B5A91678E9229FB79E164822F26C2AD4309EE55(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 2));
|
|
return;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
uint32_t L_6 = V_0;
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_7 = (EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8*)(EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8*)SZArrayNew(EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8_il2cpp_TypeInfo_var, (uint32_t)L_6);
|
|
V_1 = L_7;
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_8 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
GC_register_ephemeron_array_m7798D3C75D2E2DC50CAA2422C2B36656D7793D18(L_8, NULL);
|
|
__this->___size = 0;
|
|
V_2 = 0;
|
|
goto IL_011c;
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_9 = __this->___data;
|
|
int32_t L_10 = V_2;
|
|
NullCheck(L_9);
|
|
RuntimeObject* L_11 = ((L_9)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_10)))->___key;
|
|
V_3 = L_11;
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_12 = __this->___data;
|
|
int32_t L_13 = V_2;
|
|
NullCheck(L_12);
|
|
RuntimeObject* L_14 = ((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->___value;
|
|
V_4 = L_14;
|
|
RuntimeObject* L_15 = V_3;
|
|
if (!L_15)
|
|
{
|
|
goto IL_0118;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_16 = V_3;
|
|
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_17 = ((GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_StaticFields*)il2cpp_codegen_static_fields_for(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var))->___EPHEMERON_TOMBSTONE;
|
|
if ((((RuntimeObject*)(RuntimeObject*)L_16) == ((RuntimeObject*)(RuntimeObject*)L_17)))
|
|
{
|
|
goto IL_0118;
|
|
}
|
|
}
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_18 = V_1;
|
|
NullCheck(L_18);
|
|
V_5 = ((int32_t)(((RuntimeArray*)L_18)->max_length));
|
|
V_8 = (-1);
|
|
RuntimeObject* L_19 = V_3;
|
|
int32_t L_20;
|
|
L_20 = RuntimeHelpers_GetHashCode_m7B5D57E1EE2A59EDFA1BD237E9B37C6C836D774B(L_19, NULL);
|
|
int32_t L_21 = V_5;
|
|
int32_t L_22 = ((int32_t)(((int32_t)(L_20&((int32_t)2147483647LL)))%L_21));
|
|
V_7 = L_22;
|
|
V_6 = L_22;
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_23 = V_1;
|
|
int32_t L_24 = V_6;
|
|
NullCheck(L_23);
|
|
RuntimeObject* L_25 = ((L_23)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_24)))->___key;
|
|
V_9 = L_25;
|
|
RuntimeObject* L_26 = V_9;
|
|
if (!L_26)
|
|
{
|
|
goto IL_00d3;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_27 = V_9;
|
|
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_28 = ((GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_StaticFields*)il2cpp_codegen_static_fields_for(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var))->___EPHEMERON_TOMBSTONE;
|
|
if ((!(((RuntimeObject*)(RuntimeObject*)L_27) == ((RuntimeObject*)(RuntimeObject*)L_28))))
|
|
{
|
|
goto IL_00d9;
|
|
}
|
|
}
|
|
|
|
IL_00d3:
|
|
{
|
|
int32_t L_29 = V_6;
|
|
V_8 = L_29;
|
|
goto IL_00ed;
|
|
}
|
|
|
|
IL_00d9:
|
|
{
|
|
int32_t L_30 = V_6;
|
|
int32_t L_31 = ((int32_t)il2cpp_codegen_add(L_30, 1));
|
|
V_6 = L_31;
|
|
int32_t L_32 = V_5;
|
|
if ((!(((uint32_t)L_31) == ((uint32_t)L_32))))
|
|
{
|
|
goto IL_00e7;
|
|
}
|
|
}
|
|
{
|
|
V_6 = 0;
|
|
}
|
|
|
|
IL_00e7:
|
|
{
|
|
int32_t L_33 = V_6;
|
|
int32_t L_34 = V_7;
|
|
if ((!(((uint32_t)L_33) == ((uint32_t)L_34))))
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
}
|
|
|
|
IL_00ed:
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_35 = V_1;
|
|
int32_t L_36 = V_8;
|
|
NullCheck(L_35);
|
|
RuntimeObject* L_37 = V_3;
|
|
((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->___key = L_37;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((L_35)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_36)))->___key), (void*)L_37);
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_38 = V_1;
|
|
int32_t L_39 = V_8;
|
|
NullCheck(L_38);
|
|
RuntimeObject* L_40 = V_4;
|
|
((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->___value = L_40;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((L_38)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_39)))->___value), (void*)L_40);
|
|
int32_t L_41 = __this->___size;
|
|
__this->___size = ((int32_t)il2cpp_codegen_add(L_41, 1));
|
|
}
|
|
|
|
IL_0118:
|
|
{
|
|
int32_t L_42 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_42, 1));
|
|
}
|
|
|
|
IL_011c:
|
|
{
|
|
int32_t L_43 = V_2;
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_44 = __this->___data;
|
|
NullCheck(L_44);
|
|
if ((((int32_t)L_43) < ((int32_t)((int32_t)(((RuntimeArray*)L_44)->max_length)))))
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_45 = V_1;
|
|
__this->___data = L_45;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___data), (void*)L_45);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConditionalWeakTable_2_Add_mA45BB747BEE445F5A6D5ABC32B2070CAF5E9BE44_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, RuntimeObject* ___0_key, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
RuntimeObject* V_6 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
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_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBE1D2E11D58177AC5AC7C4A993B5BE6408F97DAA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
RuntimeObject* L_2 = __this->____lock;
|
|
V_0 = L_2;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0107:
|
|
{
|
|
{
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_4, NULL);
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_5, (&V_1), NULL);
|
|
int32_t L_6 = __this->___size;
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_7 = __this->___data;
|
|
NullCheck(L_7);
|
|
if ((!(((float)((float)L_6)) >= ((float)((float)il2cpp_codegen_multiply(((float)((int32_t)(((RuntimeArray*)L_7)->max_length))), (0.699999988f)))))))
|
|
{
|
|
goto IL_0047_1;
|
|
}
|
|
}
|
|
{
|
|
ConditionalWeakTable_2_Rehash_m95A9B6F55E92FC8E85D9E5B751B5F0F50F37430B(__this, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
}
|
|
|
|
IL_0047_1:
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_8 = __this->___data;
|
|
NullCheck(L_8);
|
|
V_2 = ((int32_t)(((RuntimeArray*)L_8)->max_length));
|
|
V_5 = (-1);
|
|
RuntimeObject* L_9 = ___0_key;
|
|
int32_t L_10;
|
|
L_10 = RuntimeHelpers_GetHashCode_m7B5D57E1EE2A59EDFA1BD237E9B37C6C836D774B(L_9, NULL);
|
|
int32_t L_11 = V_2;
|
|
int32_t L_12 = ((int32_t)(((int32_t)(L_10&((int32_t)2147483647LL)))%L_11));
|
|
V_4 = L_12;
|
|
V_3 = L_12;
|
|
}
|
|
|
|
IL_006a_1:
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_13 = __this->___data;
|
|
int32_t L_14 = V_3;
|
|
NullCheck(L_13);
|
|
RuntimeObject* L_15 = ((L_13)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_14)))->___key;
|
|
V_6 = L_15;
|
|
RuntimeObject* L_16 = V_6;
|
|
if (L_16)
|
|
{
|
|
goto IL_008b_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17 = V_5;
|
|
if ((!(((uint32_t)L_17) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_00c7_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_18 = V_3;
|
|
V_5 = L_18;
|
|
goto IL_00c7_1;
|
|
}
|
|
|
|
IL_008b_1:
|
|
{
|
|
RuntimeObject* L_19 = V_6;
|
|
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_20 = ((GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_StaticFields*)il2cpp_codegen_static_fields_for(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var))->___EPHEMERON_TOMBSTONE;
|
|
if ((!(((RuntimeObject*)(RuntimeObject*)L_19) == ((RuntimeObject*)(RuntimeObject*)L_20))))
|
|
{
|
|
goto IL_009e_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_21 = V_5;
|
|
if ((!(((uint32_t)L_21) == ((uint32_t)(-1)))))
|
|
{
|
|
goto IL_009e_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_22 = V_3;
|
|
V_5 = L_22;
|
|
goto IL_00b8_1;
|
|
}
|
|
|
|
IL_009e_1:
|
|
{
|
|
RuntimeObject* L_23 = V_6;
|
|
RuntimeObject* L_24 = ___0_key;
|
|
if ((!(((RuntimeObject*)(RuntimeObject*)L_23) == ((RuntimeObject*)(RuntimeObject*)L_24))))
|
|
{
|
|
goto IL_00b8_1;
|
|
}
|
|
}
|
|
{
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_25 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
ArgumentException__ctor_m8F9D40CE19D19B698A70F9A258640EB52DB39B62(L_25, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral2AA2E732DB2949176A84E755559B51D778BADC01)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_25, method);
|
|
}
|
|
|
|
IL_00b8_1:
|
|
{
|
|
int32_t L_26 = V_3;
|
|
int32_t L_27 = ((int32_t)il2cpp_codegen_add(L_26, 1));
|
|
V_3 = L_27;
|
|
int32_t L_28 = V_2;
|
|
if ((!(((uint32_t)L_27) == ((uint32_t)L_28))))
|
|
{
|
|
goto IL_00c2_1;
|
|
}
|
|
}
|
|
{
|
|
V_3 = 0;
|
|
}
|
|
|
|
IL_00c2_1:
|
|
{
|
|
int32_t L_29 = V_3;
|
|
int32_t L_30 = V_4;
|
|
if ((!(((uint32_t)L_29) == ((uint32_t)L_30))))
|
|
{
|
|
goto IL_006a_1;
|
|
}
|
|
}
|
|
|
|
IL_00c7_1:
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_31 = __this->___data;
|
|
int32_t L_32 = V_5;
|
|
NullCheck(L_31);
|
|
RuntimeObject* L_33 = ___0_key;
|
|
((L_31)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_32)))->___key = L_33;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((L_31)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_32)))->___key), (void*)L_33);
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_34 = __this->___data;
|
|
int32_t L_35 = V_5;
|
|
NullCheck(L_34);
|
|
RuntimeObject* L_36 = ___1_value;
|
|
((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->___value = L_36;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((L_34)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_35)))->___value), (void*)L_36);
|
|
int32_t L_37 = __this->___size;
|
|
__this->___size = ((int32_t)il2cpp_codegen_add(L_37, 1));
|
|
goto IL_0111;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_Remove_m51E45FAFE5B1D6E9FDA123477422367F1F215DE6_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
RuntimeObject* V_5 = NULL;
|
|
bool V_6 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
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_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBE1D2E11D58177AC5AC7C4A993B5BE6408F97DAA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
RuntimeObject* L_2 = __this->____lock;
|
|
V_0 = L_2;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00aa:
|
|
{
|
|
{
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_00b3;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_4, NULL);
|
|
}
|
|
|
|
IL_00b3:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_5, (&V_1), NULL);
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_6 = __this->___data;
|
|
NullCheck(L_6);
|
|
V_2 = ((int32_t)(((RuntimeArray*)L_6)->max_length));
|
|
RuntimeObject* L_7 = ___0_key;
|
|
int32_t L_8;
|
|
L_8 = RuntimeHelpers_GetHashCode_m7B5D57E1EE2A59EDFA1BD237E9B37C6C836D774B(L_7, NULL);
|
|
int32_t L_9 = V_2;
|
|
int32_t L_10 = ((int32_t)(((int32_t)(L_8&((int32_t)2147483647LL)))%L_9));
|
|
V_4 = L_10;
|
|
V_3 = L_10;
|
|
}
|
|
|
|
IL_0049_1:
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_11 = __this->___data;
|
|
int32_t L_12 = V_3;
|
|
NullCheck(L_11);
|
|
RuntimeObject* L_13 = ((L_11)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_12)))->___key;
|
|
V_5 = L_13;
|
|
RuntimeObject* L_14 = V_5;
|
|
RuntimeObject* L_15 = ___0_key;
|
|
if ((!(((RuntimeObject*)(RuntimeObject*)L_14) == ((RuntimeObject*)(RuntimeObject*)L_15))))
|
|
{
|
|
goto IL_0093_1;
|
|
}
|
|
}
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_16 = __this->___data;
|
|
int32_t L_17 = V_3;
|
|
NullCheck(L_16);
|
|
il2cpp_codegen_runtime_class_init_inline(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_18 = ((GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_StaticFields*)il2cpp_codegen_static_fields_for(GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var))->___EPHEMERON_TOMBSTONE;
|
|
((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->___key = L_18;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((L_16)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_17)))->___key), (void*)L_18);
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_19 = __this->___data;
|
|
int32_t L_20 = V_3;
|
|
NullCheck(L_19);
|
|
((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___value = NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___value), (void*)NULL);
|
|
V_6 = (bool)1;
|
|
goto IL_00b6;
|
|
}
|
|
|
|
IL_0093_1:
|
|
{
|
|
RuntimeObject* L_21 = V_5;
|
|
if (L_21)
|
|
{
|
|
goto IL_0099_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b4;
|
|
}
|
|
|
|
IL_0099_1:
|
|
{
|
|
int32_t L_22 = V_3;
|
|
int32_t L_23 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
V_3 = L_23;
|
|
int32_t L_24 = V_2;
|
|
if ((!(((uint32_t)L_23) == ((uint32_t)L_24))))
|
|
{
|
|
goto IL_00a3_1;
|
|
}
|
|
}
|
|
{
|
|
V_3 = 0;
|
|
}
|
|
|
|
IL_00a3_1:
|
|
{
|
|
int32_t L_25 = V_3;
|
|
int32_t L_26 = V_4;
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)L_26))))
|
|
{
|
|
goto IL_0049_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00b4;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00b6:
|
|
{
|
|
bool L_27 = V_6;
|
|
return L_27;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConditionalWeakTable_2_TryGetValue_mA6697354DA1D2A76999FFDCC072C62AC5C364124_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, RuntimeObject* ___0_key, RuntimeObject** ___1_value, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
RuntimeObject* V_5 = NULL;
|
|
bool V_6 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_key;
|
|
if (L_0)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
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_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBE1D2E11D58177AC5AC7C4A993B5BE6408F97DAA)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralE7D028CCE3B6E7B61AE2C752D7AE970DA04AB7C6)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
RuntimeObject** L_2 = ___1_value;
|
|
il2cpp_codegen_initobj(L_2, sizeof(RuntimeObject*));
|
|
RuntimeObject* L_3 = __this->____lock;
|
|
V_0 = L_3;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00a5:
|
|
{
|
|
{
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_00ae;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_5 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_5, NULL);
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_6 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_6, (&V_1), NULL);
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_7 = __this->___data;
|
|
NullCheck(L_7);
|
|
V_2 = ((int32_t)(((RuntimeArray*)L_7)->max_length));
|
|
RuntimeObject* L_8 = ___0_key;
|
|
int32_t L_9;
|
|
L_9 = RuntimeHelpers_GetHashCode_m7B5D57E1EE2A59EDFA1BD237E9B37C6C836D774B(L_8, NULL);
|
|
int32_t L_10 = V_2;
|
|
int32_t L_11 = ((int32_t)(((int32_t)(L_9&((int32_t)2147483647LL)))%L_10));
|
|
V_4 = L_11;
|
|
V_3 = L_11;
|
|
}
|
|
|
|
IL_0050_1:
|
|
{
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_12 = __this->___data;
|
|
int32_t L_13 = V_3;
|
|
NullCheck(L_12);
|
|
RuntimeObject* L_14 = ((L_12)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_13)))->___key;
|
|
V_5 = L_14;
|
|
RuntimeObject* L_15 = V_5;
|
|
RuntimeObject* L_16 = ___0_key;
|
|
if ((!(((RuntimeObject*)(RuntimeObject*)L_15) == ((RuntimeObject*)(RuntimeObject*)L_16))))
|
|
{
|
|
goto IL_008e_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject** L_17 = ___1_value;
|
|
EphemeronU5BU5D_t4F80428A1142C3102C946127F8190063001742E8* L_18 = __this->___data;
|
|
int32_t L_19 = V_3;
|
|
NullCheck(L_18);
|
|
RuntimeObject* L_20 = ((L_18)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_19)))->___value;
|
|
*(RuntimeObject**)L_17 = ((RuntimeObject*)Castclass((RuntimeObject*)L_20, il2cpp_rgctx_data(method->klass->rgctx_data, 5)));
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_17, (void*)((RuntimeObject*)Castclass((RuntimeObject*)L_20, il2cpp_rgctx_data(method->klass->rgctx_data, 5))));
|
|
V_6 = (bool)1;
|
|
goto IL_00b1;
|
|
}
|
|
|
|
IL_008e_1:
|
|
{
|
|
RuntimeObject* L_21 = V_5;
|
|
if (L_21)
|
|
{
|
|
goto IL_0094_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00af;
|
|
}
|
|
|
|
IL_0094_1:
|
|
{
|
|
int32_t L_22 = V_3;
|
|
int32_t L_23 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
V_3 = L_23;
|
|
int32_t L_24 = V_2;
|
|
if ((!(((uint32_t)L_23) == ((uint32_t)L_24))))
|
|
{
|
|
goto IL_009e_1;
|
|
}
|
|
}
|
|
{
|
|
V_3 = 0;
|
|
}
|
|
|
|
IL_009e_1:
|
|
{
|
|
int32_t L_25 = V_3;
|
|
int32_t L_26 = V_4;
|
|
if ((!(((uint32_t)L_25) == ((uint32_t)L_26))))
|
|
{
|
|
goto IL_0050_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00af;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00af:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
|
|
IL_00b1:
|
|
{
|
|
bool L_27 = V_6;
|
|
return L_27;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConditionalWeakTable_2_GetValue_mD02297B46B37D3AF2884B5BD1B6A74C563F0DC42_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, RuntimeObject* ___0_key, CreateValueCallback_t85D075DDCAD202B428EC47723590605681FE2BD1* ___1_createValueCallback, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
RuntimeObject* V_3 = NULL;
|
|
{
|
|
CreateValueCallback_t85D075DDCAD202B428EC47723590605681FE2BD1* L_0 = ___1_createValueCallback;
|
|
if (L_0)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
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_m6D9C7B47EA708382838B264BA02EBB7576DFA155(L_1, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralEE87639B3A491E0E26BF98722E7EF266338FFC27)), ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral5B752FEA6C79E292F7975C9C7E92D2B4616F6B66)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
RuntimeObject* L_2 = __this->____lock;
|
|
V_1 = L_2;
|
|
V_2 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0045:
|
|
{
|
|
{
|
|
bool L_3 = V_2;
|
|
if (!L_3)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4 = V_1;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_4, NULL);
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_5 = V_1;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_5, (&V_2), NULL);
|
|
RuntimeObject* L_6 = ___0_key;
|
|
bool L_7;
|
|
L_7 = ConditionalWeakTable_2_TryGetValue_mA6697354DA1D2A76999FFDCC072C62AC5C364124(__this, L_6, (&V_0), il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
if (!L_7)
|
|
{
|
|
goto IL_0033_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_8 = V_0;
|
|
V_3 = L_8;
|
|
goto IL_0051;
|
|
}
|
|
|
|
IL_0033_1:
|
|
{
|
|
CreateValueCallback_t85D075DDCAD202B428EC47723590605681FE2BD1* L_9 = ___1_createValueCallback;
|
|
RuntimeObject* L_10 = ___0_key;
|
|
NullCheck(L_9);
|
|
RuntimeObject* L_11;
|
|
L_11 = CreateValueCallback_Invoke_mDCA362F0B946C52272C5956DA35F53B8DC49BA83_inline(L_9, L_10, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
V_0 = L_11;
|
|
RuntimeObject* L_12 = ___0_key;
|
|
RuntimeObject* L_13 = V_0;
|
|
ConditionalWeakTable_2_Add_mA45BB747BEE445F5A6D5ABC32B2070CAF5E9BE44(__this, L_12, L_13, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
RuntimeObject* L_14 = V_0;
|
|
return L_14;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
RuntimeObject* L_15 = V_3;
|
|
return L_15;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConditionalWeakTable_2_System_Collections_Generic_IEnumerableU3CSystem_Collections_Generic_KeyValuePairU3CTKeyU2CTValueU3EU3E_GetEnumerator_m40B1D301A45A67C02325D5F9222D53394D0B02D0_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
bool V_1 = false;
|
|
RuntimeObject* V_2 = NULL;
|
|
RuntimeObject* G_B4_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->____lock;
|
|
V_0 = L_0;
|
|
V_1 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0030:
|
|
{
|
|
{
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
Monitor_Exit_m05B2CF037E2214B3208198C282490A2A475653FA(L_2, NULL);
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
Monitor_Enter_m3CDB589DA1300B513D55FDCFB52B63E879794149(L_3, (&V_1), NULL);
|
|
int32_t L_4 = __this->___size;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0023_1;
|
|
}
|
|
}
|
|
{
|
|
Enumerator_t94AEE59300B379FF13424743ADEE68A3E360D190* L_5 = (Enumerator_t94AEE59300B379FF13424743ADEE68A3E360D190*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 11));
|
|
Enumerator__ctor_m84587408157BE80BC6CBBB684C38AC913FB6FDE6(L_5, __this, il2cpp_rgctx_method(method->klass->rgctx_data, 12));
|
|
V_2 = (RuntimeObject*)L_5;
|
|
RuntimeObject* L_6 = V_2;
|
|
G_B4_0 = L_6;
|
|
goto IL_002d_1;
|
|
}
|
|
|
|
IL_0023_1:
|
|
{
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_7;
|
|
L_7 = Array_Empty_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_m2D55A4A51DA7B1571C2722D1B9ADDBBA8C6EC441_inline(il2cpp_rgctx_method(method->klass->rgctx_data, 13));
|
|
NullCheck((RuntimeObject*)L_7);
|
|
RuntimeObject* L_8;
|
|
L_8 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 15), (RuntimeObject*)L_7);
|
|
G_B4_0 = L_8;
|
|
}
|
|
|
|
IL_002d_1:
|
|
{
|
|
V_2 = G_B4_0;
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
RuntimeObject* L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConditionalWeakTable_2_System_Collections_IEnumerable_GetEnumerator_m35FE9B769F25C04571C2CAAD8D406B7448246A20_gshared (ConditionalWeakTable_2_t87BE12792DC61EC9AE17609EC1ACA0671B3F5605* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
NullCheck((RuntimeObject*)__this);
|
|
RuntimeObject* L_0;
|
|
L_0 = InterfaceFuncInvoker0< RuntimeObject* >::Invoke(0, il2cpp_rgctx_data(method->klass->rgctx_data, 15), (RuntimeObject*)__this);
|
|
return (RuntimeObject*)L_0;
|
|
}
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m8B9FF6EA3E63C25A4B1FC8327AEF894C73B573E6_gshared (ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71* __this, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_0 = ___0_task;
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ConfiguredTaskAwaiter__ctor_m77CE68352881C1970E69FB343827A974C75CB8A6((&L_2), L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
__this->___m_configuredTaskAwaiter = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_configuredTaskAwaiter))->___m_task), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_m8B9FF6EA3E63C25A4B1FC8327AEF894C73B573E6_AdjustorThunk (RuntimeObject* __this, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71*>(__this + _offset);
|
|
ConfiguredTaskAwaitable_1__ctor_m8B9FF6EA3E63C25A4B1FC8327AEF894C73B573E6(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_gshared (ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 _returnValue;
|
|
_returnValue = ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m4F26D0F1036C76A4B6833A1BFF9A0613B5FAE968_gshared (ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029* __this, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* L_0 = ___0_task;
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ConfiguredTaskAwaiter__ctor_m810950E3F6481AF44D66A5F789EE04CCA7BE86F4((&L_2), L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
__this->___m_configuredTaskAwaiter = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_configuredTaskAwaiter))->___m_task), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_m4F26D0F1036C76A4B6833A1BFF9A0613B5FAE968_AdjustorThunk (RuntimeObject* __this, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029*>(__this + _offset);
|
|
ConfiguredTaskAwaitable_1__ctor_m4F26D0F1036C76A4B6833A1BFF9A0613B5FAE968(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719 ConfiguredTaskAwaitable_1_GetAwaiter_m63812BEACBC9720D9E9860A508588B1DE0F34C66_gshared (ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719 L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719 ConfiguredTaskAwaitable_1_GetAwaiter_m63812BEACBC9720D9E9860A508588B1DE0F34C66_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719 _returnValue;
|
|
_returnValue = ConfiguredTaskAwaitable_1_GetAwaiter_m63812BEACBC9720D9E9860A508588B1DE0F34C66_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mC58338FE54F7CA15B1C73A6FD96FEC36F1A24C2F_gshared (ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A* __this, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* L_0 = ___0_task;
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ConfiguredTaskAwaiter__ctor_m63FAB9FCE0BDDF0AB1A4838521963EDC84000CD9((&L_2), L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
__this->___m_configuredTaskAwaiter = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_configuredTaskAwaiter))->___m_task), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_mC58338FE54F7CA15B1C73A6FD96FEC36F1A24C2F_AdjustorThunk (RuntimeObject* __this, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A*>(__this + _offset);
|
|
ConfiguredTaskAwaitable_1__ctor_mC58338FE54F7CA15B1C73A6FD96FEC36F1A24C2F(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9 ConfiguredTaskAwaitable_1_GetAwaiter_mE947EA14D65DCF41B2988D73580C1886D1FC836B_gshared (ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9 L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9 ConfiguredTaskAwaitable_1_GetAwaiter_mE947EA14D65DCF41B2988D73580C1886D1FC836B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9 _returnValue;
|
|
_returnValue = ConfiguredTaskAwaitable_1_GetAwaiter_mE947EA14D65DCF41B2988D73580C1886D1FC836B_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m74B21033ECFC6456863C285996272E5845ED34A3_gshared (ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49* __this, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* L_0 = ___0_task;
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ConfiguredTaskAwaiter__ctor_m08995B8DCA78C52E51E6793CEBBD3F63E992B847((&L_2), L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
__this->___m_configuredTaskAwaiter = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_configuredTaskAwaiter))->___m_task), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_m74B21033ECFC6456863C285996272E5845ED34A3_AdjustorThunk (RuntimeObject* __this, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49*>(__this + _offset);
|
|
ConfiguredTaskAwaitable_1__ctor_m74B21033ECFC6456863C285996272E5845ED34A3(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC ConfiguredTaskAwaitable_1_GetAwaiter_m6B1B72AC1AA4F779C7CADC540F89E33ECCBF93CC_gshared (ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC ConfiguredTaskAwaitable_1_GetAwaiter_m6B1B72AC1AA4F779C7CADC540F89E33ECCBF93CC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC _returnValue;
|
|
_returnValue = ConfiguredTaskAwaitable_1_GetAwaiter_m6B1B72AC1AA4F779C7CADC540F89E33ECCBF93CC_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m4250D7AC55939EE7E067CB43F1EA9205ADCF5BB9_gshared (ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C* __this, Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_0 = ___0_task;
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ConfiguredTaskAwaiter__ctor_mF2DCDA01D85EF264E6894FAD5145629A90444BF6((&L_2), L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
__this->___m_configuredTaskAwaiter = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_configuredTaskAwaiter))->___m_task), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_m4250D7AC55939EE7E067CB43F1EA9205ADCF5BB9_AdjustorThunk (RuntimeObject* __this, Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C*>(__this + _offset);
|
|
ConfiguredTaskAwaitable_1__ctor_m4250D7AC55939EE7E067CB43F1EA9205ADCF5BB9(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4 ConfiguredTaskAwaitable_1_GetAwaiter_m3D8C463996184A1FE94D1B59A379F3ACB425C7CF_gshared (ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4 L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4 ConfiguredTaskAwaitable_1_GetAwaiter_m3D8C463996184A1FE94D1B59A379F3ACB425C7CF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4 _returnValue;
|
|
_returnValue = ConfiguredTaskAwaitable_1_GetAwaiter_m3D8C463996184A1FE94D1B59A379F3ACB425C7CF_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mE710DDACEA51B67F609363489CA86CAB560D7097_gshared (ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_0 = ___0_task;
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ConfiguredTaskAwaiter__ctor_m81EA182AFEBA13DB3FBEBD681D641477D6CDD7E5((&L_2), L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
__this->___m_configuredTaskAwaiter = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_configuredTaskAwaiter))->___m_task), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_mE710DDACEA51B67F609363489CA86CAB560D7097_AdjustorThunk (RuntimeObject* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A*>(__this + _offset);
|
|
ConfiguredTaskAwaitable_1__ctor_mE710DDACEA51B67F609363489CA86CAB560D7097(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_gshared (ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 _returnValue;
|
|
_returnValue = ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mF6F327D56C404722F1A1274ACDA0B194ABDC7947_gshared (ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_0 = ___0_task;
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ConfiguredTaskAwaiter__ctor_m46556B7AD9DF2E22AEDC1162D6129412ED37B288((&L_2), L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
__this->___m_configuredTaskAwaiter = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_configuredTaskAwaiter))->___m_task), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_mF6F327D56C404722F1A1274ACDA0B194ABDC7947_AdjustorThunk (RuntimeObject* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8*>(__this + _offset);
|
|
ConfiguredTaskAwaitable_1__ctor_mF6F327D56C404722F1A1274ACDA0B194ABDC7947(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B ConfiguredTaskAwaitable_1_GetAwaiter_m447B2323EADC587DE0ABFEA2FEF3AF3342F75186_gshared (ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B ConfiguredTaskAwaitable_1_GetAwaiter_m447B2323EADC587DE0ABFEA2FEF3AF3342F75186_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B _returnValue;
|
|
_returnValue = ConfiguredTaskAwaitable_1_GetAwaiter_m447B2323EADC587DE0ABFEA2FEF3AF3342F75186_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mF5604B9DC5F681A54B406BAF635C17A7B6E9388F_gshared (ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3* __this, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* L_0 = ___0_task;
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ConfiguredTaskAwaiter__ctor_mE9DAAA97DD3A60C1E8D3B30BD4F54654FA00FE3D((&L_2), L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
__this->___m_configuredTaskAwaiter = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_configuredTaskAwaiter))->___m_task), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_mF5604B9DC5F681A54B406BAF635C17A7B6E9388F_AdjustorThunk (RuntimeObject* __this, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3*>(__this + _offset);
|
|
ConfiguredTaskAwaitable_1__ctor_mF5604B9DC5F681A54B406BAF635C17A7B6E9388F(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C ConfiguredTaskAwaitable_1_GetAwaiter_mFF4EF7AEFA89C01BCDFD3309A0B610F65F81E9DD_gshared (ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C ConfiguredTaskAwaitable_1_GetAwaiter_mFF4EF7AEFA89C01BCDFD3309A0B610F65F81E9DD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C _returnValue;
|
|
_returnValue = ConfiguredTaskAwaitable_1_GetAwaiter_mFF4EF7AEFA89C01BCDFD3309A0B610F65F81E9DD_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m4246B1C32D9D68C5805B05C21DC58DA9C8201586_gshared (ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = ___0_task;
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ConfiguredTaskAwaiter__ctor_mE5C7A10A9927C38D268B75D38ED6087280CB4951((&L_2), L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
__this->___m_configuredTaskAwaiter = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_configuredTaskAwaiter))->___m_task), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_m4246B1C32D9D68C5805B05C21DC58DA9C8201586_AdjustorThunk (RuntimeObject* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8*>(__this + _offset);
|
|
ConfiguredTaskAwaitable_1__ctor_m4246B1C32D9D68C5805B05C21DC58DA9C8201586(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 ConfiguredTaskAwaitable_1_GetAwaiter_m10364C3B0A904803E890B2D75674665F986BDAB2_gshared (ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 ConfiguredTaskAwaitable_1_GetAwaiter_m10364C3B0A904803E890B2D75674665F986BDAB2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 _returnValue;
|
|
_returnValue = ConfiguredTaskAwaitable_1_GetAwaiter_m10364C3B0A904803E890B2D75674665F986BDAB2_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mBE5D98F1161AD728FC0C2E60FA50C721BCD3122E_gshared (ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904* __this, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* L_0 = ___0_task;
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ConfiguredTaskAwaiter__ctor_m3416F16B5D17AF6DE83C1657DF1DEF4EC56E23D3((&L_2), L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
__this->___m_configuredTaskAwaiter = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_configuredTaskAwaiter))->___m_task), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_mBE5D98F1161AD728FC0C2E60FA50C721BCD3122E_AdjustorThunk (RuntimeObject* __this, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904*>(__this + _offset);
|
|
ConfiguredTaskAwaitable_1__ctor_mBE5D98F1161AD728FC0C2E60FA50C721BCD3122E(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC ConfiguredTaskAwaitable_1_GetAwaiter_m76195C44489DF59E908A90F3370693A6905CFDF5_gshared (ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC ConfiguredTaskAwaitable_1_GetAwaiter_m76195C44489DF59E908A90F3370693A6905CFDF5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC _returnValue;
|
|
_returnValue = ConfiguredTaskAwaitable_1_GetAwaiter_m76195C44489DF59E908A90F3370693A6905CFDF5_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_m45A6EB8D4B86D340F98CC2778C02F4ABAB41A56D_gshared (ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF* __this, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_0 = ___0_task;
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ConfiguredTaskAwaiter__ctor_mEB65866BA2A952D268F73A5B0B3C5F0C44ED52D4((&L_2), L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
__this->___m_configuredTaskAwaiter = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_configuredTaskAwaiter))->___m_task), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_m45A6EB8D4B86D340F98CC2778C02F4ABAB41A56D_AdjustorThunk (RuntimeObject* __this, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF*>(__this + _offset);
|
|
ConfiguredTaskAwaitable_1__ctor_m45A6EB8D4B86D340F98CC2778C02F4ABAB41A56D(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A ConfiguredTaskAwaitable_1_GetAwaiter_mF6A0C005CBE0A04B0342E47C626854C4364ADDB6_gshared (ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A ConfiguredTaskAwaitable_1_GetAwaiter_mF6A0C005CBE0A04B0342E47C626854C4364ADDB6_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A _returnValue;
|
|
_returnValue = ConfiguredTaskAwaitable_1_GetAwaiter_mF6A0C005CBE0A04B0342E47C626854C4364ADDB6_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaitable_1__ctor_mCF681CB4825E085E3ED42B9E990609C36F282536_gshared (ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922* __this, Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_0 = ___0_task;
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A L_2;
|
|
memset((&L_2), 0, sizeof(L_2));
|
|
ConfiguredTaskAwaiter__ctor_m5B53A410AE8900B3D565ED7C7FE9DAB92B2ECEC9((&L_2), L_0, L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
__this->___m_configuredTaskAwaiter = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_configuredTaskAwaiter))->___m_task), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaitable_1__ctor_mCF681CB4825E085E3ED42B9E990609C36F282536_AdjustorThunk (RuntimeObject* __this, Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922*>(__this + _offset);
|
|
ConfiguredTaskAwaitable_1__ctor_mCF681CB4825E085E3ED42B9E990609C36F282536(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A ConfiguredTaskAwaitable_1_GetAwaiter_mA5D8A0E225B9D580F1FC5216C47A0B828B033390_gshared (ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A ConfiguredTaskAwaitable_1_GetAwaiter_mA5D8A0E225B9D580F1FC5216C47A0B828B033390_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A _returnValue;
|
|
_returnValue = ConfiguredTaskAwaitable_1_GetAwaiter_mA5D8A0E225B9D580F1FC5216C47A0B828B033390_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m77CE68352881C1970E69FB343827A974C75CB8A6_gshared (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_0 = ___0_task;
|
|
__this->___m_task = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_task), (void*)L_0);
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
__this->___m_continueOnCapturedContext = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_m77CE68352881C1970E69FB343827A974C75CB8A6_AdjustorThunk (RuntimeObject* __this, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5*>(__this + _offset);
|
|
ConfiguredTaskAwaiter__ctor_m77CE68352881C1970E69FB343827A974C75CB8A6(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m943014E2A3A7AEEF6B38F9DA31887B07DC417131_gshared (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_0 = __this->___m_task;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0);
|
|
bool L_1;
|
|
L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_m943014E2A3A7AEEF6B38F9DA31887B07DC417131_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_get_IsCompleted_m943014E2A3A7AEEF6B38F9DA31887B07DC417131(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m2315CEBAE2124E81337575D4A8E42DFFDD28BB60_gshared (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_OnCompleted_m2315CEBAE2124E81337575D4A8E42DFFDD28BB60_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_OnCompleted_m2315CEBAE2124E81337575D4A8E42DFFDD28BB60(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m085AD3A95FDB707E9DE9F4B6A66DCB7D60B5372A_gshared (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_m085AD3A95FDB707E9DE9F4B6A66DCB7D60B5372A_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m085AD3A95FDB707E9DE9F4B6A66DCB7D60B5372A(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ConfiguredTaskAwaiter_GetResult_mE648AD496FFAD4F2E5CFFA8DA38B365FDD634EFD_gshared (ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_0 = __this->___m_task;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_1 = __this->___m_task;
|
|
NullCheck(L_1);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_2;
|
|
L_2 = Task_1_get_ResultOnSuccess_mCE17C784EC8A76A7A669ADA89953086B95DEA9E2_inline(L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 ConfiguredTaskAwaiter_GetResult_mE648AD496FFAD4F2E5CFFA8DA38B365FDD634EFD_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5*>(__this + _offset);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_GetResult_mE648AD496FFAD4F2E5CFFA8DA38B365FDD634EFD(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m810950E3F6481AF44D66A5F789EE04CCA7BE86F4_gshared (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* L_0 = ___0_task;
|
|
__this->___m_task = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_task), (void*)L_0);
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
__this->___m_continueOnCapturedContext = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_m810950E3F6481AF44D66A5F789EE04CCA7BE86F4_AdjustorThunk (RuntimeObject* __this, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719*>(__this + _offset);
|
|
ConfiguredTaskAwaiter__ctor_m810950E3F6481AF44D66A5F789EE04CCA7BE86F4(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m267BA39F4AC0C8E837F1AAD93740DEF1EF90D8DC_gshared (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* L_0 = __this->___m_task;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0);
|
|
bool L_1;
|
|
L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_m267BA39F4AC0C8E837F1AAD93740DEF1EF90D8DC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_get_IsCompleted_m267BA39F4AC0C8E837F1AAD93740DEF1EF90D8DC(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m79AE842BC3870C51BAA95A89FD3ACE0ACE5A829A_gshared (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_OnCompleted_m79AE842BC3870C51BAA95A89FD3ACE0ACE5A829A_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_OnCompleted_m79AE842BC3870C51BAA95A89FD3ACE0ACE5A829A(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_mC4C4D701AC1683EFC6F0C4B1D2133ECED4748E3E_gshared (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_mC4C4D701AC1683EFC6F0C4B1D2133ECED4748E3E_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_mC4C4D701AC1683EFC6F0C4B1D2133ECED4748E3E(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 ConfiguredTaskAwaiter_GetResult_m347EABFF757C87ACE59FACB17CA0E1F9EC759FF4_gshared (ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* L_0 = __this->___m_task;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* L_1 = __this->___m_task;
|
|
NullCheck(L_1);
|
|
ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 L_2;
|
|
L_2 = Task_1_get_ResultOnSuccess_mF3C0355E532212C56EB03CA82EB918C582829907_inline(L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 ConfiguredTaskAwaiter_GetResult_m347EABFF757C87ACE59FACB17CA0E1F9EC759FF4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719*>(__this + _offset);
|
|
ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_GetResult_m347EABFF757C87ACE59FACB17CA0E1F9EC759FF4(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m63FAB9FCE0BDDF0AB1A4838521963EDC84000CD9_gshared (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* L_0 = ___0_task;
|
|
__this->___m_task = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_task), (void*)L_0);
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
__this->___m_continueOnCapturedContext = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_m63FAB9FCE0BDDF0AB1A4838521963EDC84000CD9_AdjustorThunk (RuntimeObject* __this, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9*>(__this + _offset);
|
|
ConfiguredTaskAwaiter__ctor_m63FAB9FCE0BDDF0AB1A4838521963EDC84000CD9(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m7A303575FA10A44B6EA4D4E1E17BC6B138258BF7_gshared (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* L_0 = __this->___m_task;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0);
|
|
bool L_1;
|
|
L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_m7A303575FA10A44B6EA4D4E1E17BC6B138258BF7_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_get_IsCompleted_m7A303575FA10A44B6EA4D4E1E17BC6B138258BF7(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_mDCDA64598B3552449AFE549B815ED896A2051E74_gshared (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_OnCompleted_mDCDA64598B3552449AFE549B815ED896A2051E74_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_OnCompleted_mDCDA64598B3552449AFE549B815ED896A2051E74(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m428A965216C2ECF7652F8EB6076C379E6CFB84B3_gshared (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_m428A965216C2ECF7652F8EB6076C379E6CFB84B3_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m428A965216C2ECF7652F8EB6076C379E6CFB84B3(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F ConfiguredTaskAwaiter_GetResult_m1DA7AAAC696746E7848FBB001810FB78D141DFE4_gshared (ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* L_0 = __this->___m_task;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* L_1 = __this->___m_task;
|
|
NullCheck(L_1);
|
|
ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F L_2;
|
|
L_2 = Task_1_get_ResultOnSuccess_m6D499E3CAECD874138D8268859F1C5ADB6BFB541_inline(L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F ConfiguredTaskAwaiter_GetResult_m1DA7AAAC696746E7848FBB001810FB78D141DFE4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9*>(__this + _offset);
|
|
ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_GetResult_m1DA7AAAC696746E7848FBB001810FB78D141DFE4(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m08995B8DCA78C52E51E6793CEBBD3F63E992B847_gshared (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* L_0 = ___0_task;
|
|
__this->___m_task = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_task), (void*)L_0);
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
__this->___m_continueOnCapturedContext = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_m08995B8DCA78C52E51E6793CEBBD3F63E992B847_AdjustorThunk (RuntimeObject* __this, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC*>(__this + _offset);
|
|
ConfiguredTaskAwaiter__ctor_m08995B8DCA78C52E51E6793CEBBD3F63E992B847(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mD77F71A816384AC7132A1371B9054E2B16CA7463_gshared (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* L_0 = __this->___m_task;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0);
|
|
bool L_1;
|
|
L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_mD77F71A816384AC7132A1371B9054E2B16CA7463_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_get_IsCompleted_mD77F71A816384AC7132A1371B9054E2B16CA7463(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_mD89C6F15B540252DA24A815627E0ED8E4B0B0ABA_gshared (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_OnCompleted_mD89C6F15B540252DA24A815627E0ED8E4B0B0ABA_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_OnCompleted_mD89C6F15B540252DA24A815627E0ED8E4B0B0ABA(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_mB6816BBBE292CB88E72D47F4A8F50F095FC880CF_gshared (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_mB6816BBBE292CB88E72D47F4A8F50F095FC880CF_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_mB6816BBBE292CB88E72D47F4A8F50F095FC880CF(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 ConfiguredTaskAwaiter_GetResult_m7B3942036E2A45F9A64916D1966F06DA950C1334_gshared (ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* L_0 = __this->___m_task;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* L_1 = __this->___m_task;
|
|
NullCheck(L_1);
|
|
ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 L_2;
|
|
L_2 = Task_1_get_ResultOnSuccess_m214E858FC526E07DBB763D5E8823E3E541228015_inline(L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 ConfiguredTaskAwaiter_GetResult_m7B3942036E2A45F9A64916D1966F06DA950C1334_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC*>(__this + _offset);
|
|
ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_GetResult_m7B3942036E2A45F9A64916D1966F06DA950C1334(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mF2DCDA01D85EF264E6894FAD5145629A90444BF6_gshared (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_0 = ___0_task;
|
|
__this->___m_task = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_task), (void*)L_0);
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
__this->___m_continueOnCapturedContext = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_mF2DCDA01D85EF264E6894FAD5145629A90444BF6_AdjustorThunk (RuntimeObject* __this, Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4*>(__this + _offset);
|
|
ConfiguredTaskAwaiter__ctor_mF2DCDA01D85EF264E6894FAD5145629A90444BF6(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mC2024766896945A56978CF121456A78A6F054190_gshared (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_0 = __this->___m_task;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0);
|
|
bool L_1;
|
|
L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_mC2024766896945A56978CF121456A78A6F054190_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_get_IsCompleted_mC2024766896945A56978CF121456A78A6F054190(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m7122579D9E3F23FF47037CE5B977673902632BED_gshared (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_OnCompleted_m7122579D9E3F23FF47037CE5B977673902632BED_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_OnCompleted_m7122579D9E3F23FF47037CE5B977673902632BED(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m56C37FD43DAF113A7BF8ED335649D7EC1C37450F_gshared (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_m56C37FD43DAF113A7BF8ED335649D7EC1C37450F_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m56C37FD43DAF113A7BF8ED335649D7EC1C37450F(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_GetResult_mA0D0419EF40E9DF864B87B495FFE05C08475C00B_gshared (ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_0 = __this->___m_task;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_1 = __this->___m_task;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Task_1_get_ResultOnSuccess_m15F655DF9F8EE6F8388A9432454900F07EFC57BB_inline(L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_GetResult_mA0D0419EF40E9DF864B87B495FFE05C08475C00B_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_GetResult_mA0D0419EF40E9DF864B87B495FFE05C08475C00B(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m81EA182AFEBA13DB3FBEBD681D641477D6CDD7E5_gshared (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_0 = ___0_task;
|
|
__this->___m_task = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_task), (void*)L_0);
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
__this->___m_continueOnCapturedContext = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_m81EA182AFEBA13DB3FBEBD681D641477D6CDD7E5_AdjustorThunk (RuntimeObject* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*>(__this + _offset);
|
|
ConfiguredTaskAwaiter__ctor_m81EA182AFEBA13DB3FBEBD681D641477D6CDD7E5(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3_gshared (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_0 = __this->___m_task;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0);
|
|
bool L_1;
|
|
L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_get_IsCompleted_mD70263ED42C8E379EE20DBC2F218C3E629B4B4D3(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m15282EE71D354E5E6DD4952FD8283E52D253EF1E_gshared (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_OnCompleted_m15282EE71D354E5E6DD4952FD8283E52D253EF1E_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_OnCompleted_m15282EE71D354E5E6DD4952FD8283E52D253EF1E(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m9BBAE6AEBDEFAC8BDBBAC1792B91C838A8328166_gshared (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_m9BBAE6AEBDEFAC8BDBBAC1792B91C838A8328166_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m9BBAE6AEBDEFAC8BDBBAC1792B91C838A8328166(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC_gshared (ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_0 = __this->___m_task;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_1 = __this->___m_task;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = Task_1_get_ResultOnSuccess_mF098AC108FFA2E0D992306C6D956BA37874FAC77_inline(L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_GetResult_mF1FF6CBD66A3F581D413793BA8C2AF58B707D9CC(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m46556B7AD9DF2E22AEDC1162D6129412ED37B288_gshared (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_0 = ___0_task;
|
|
__this->___m_task = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_task), (void*)L_0);
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
__this->___m_continueOnCapturedContext = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_m46556B7AD9DF2E22AEDC1162D6129412ED37B288_AdjustorThunk (RuntimeObject* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B*>(__this + _offset);
|
|
ConfiguredTaskAwaiter__ctor_m46556B7AD9DF2E22AEDC1162D6129412ED37B288(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m6658F40E7404D6C45086F4151F673A3E831A0517_gshared (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_0 = __this->___m_task;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0);
|
|
bool L_1;
|
|
L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_m6658F40E7404D6C45086F4151F673A3E831A0517_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_get_IsCompleted_m6658F40E7404D6C45086F4151F673A3E831A0517(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_mF6FD9054C0CAEC1D89DEFD0417C91D6103DAF562_gshared (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_OnCompleted_mF6FD9054C0CAEC1D89DEFD0417C91D6103DAF562_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_OnCompleted_mF6FD9054C0CAEC1D89DEFD0417C91D6103DAF562(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m771321F48189B5C1005DF8D2F004A9D6C9FEFE05_gshared (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_m771321F48189B5C1005DF8D2F004A9D6C9FEFE05_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m771321F48189B5C1005DF8D2F004A9D6C9FEFE05(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConfiguredTaskAwaiter_GetResult_mF8CBBA5B63DB7FC72FA27688B4CBA3A556F128B0_gshared (ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_0 = __this->___m_task;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_1 = __this->___m_task;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = Task_1_get_ResultOnSuccess_m17F426484CA5CE14DB7E1495B6883B542D46BFA4_inline(L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ConfiguredTaskAwaiter_GetResult_mF8CBBA5B63DB7FC72FA27688B4CBA3A556F128B0_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_GetResult_mF8CBBA5B63DB7FC72FA27688B4CBA3A556F128B0(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mE9DAAA97DD3A60C1E8D3B30BD4F54654FA00FE3D_gshared (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* L_0 = ___0_task;
|
|
__this->___m_task = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_task), (void*)L_0);
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
__this->___m_continueOnCapturedContext = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_mE9DAAA97DD3A60C1E8D3B30BD4F54654FA00FE3D_AdjustorThunk (RuntimeObject* __this, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C*>(__this + _offset);
|
|
ConfiguredTaskAwaiter__ctor_mE9DAAA97DD3A60C1E8D3B30BD4F54654FA00FE3D(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mD3ADBF1AB3796F39FAEF1A35ED17FB6C37DDC468_gshared (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* L_0 = __this->___m_task;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0);
|
|
bool L_1;
|
|
L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_mD3ADBF1AB3796F39FAEF1A35ED17FB6C37DDC468_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_get_IsCompleted_mD3ADBF1AB3796F39FAEF1A35ED17FB6C37DDC468(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m6D17EA2A6E0A62EB2A7158425A71D71471FF0816_gshared (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_OnCompleted_m6D17EA2A6E0A62EB2A7158425A71D71471FF0816_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_OnCompleted_m6D17EA2A6E0A62EB2A7158425A71D71471FF0816(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m34F7D3F5D72E39E23835CFCAA6EA1157DDE51B0D_gshared (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_m34F7D3F5D72E39E23835CFCAA6EA1157DDE51B0D_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m34F7D3F5D72E39E23835CFCAA6EA1157DDE51B0D(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ConfiguredTaskAwaiter_GetResult_m74960640D8A39D3212F1B6A9380A04BE034278F7_gshared (ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* L_0 = __this->___m_task;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* L_1 = __this->___m_task;
|
|
NullCheck(L_1);
|
|
int64_t L_2;
|
|
L_2 = Task_1_get_ResultOnSuccess_m017840A0E0E0A7BD35D651A69351C4E0CE25F56F_inline(L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int64_t ConfiguredTaskAwaiter_GetResult_m74960640D8A39D3212F1B6A9380A04BE034278F7_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C*>(__this + _offset);
|
|
int64_t _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_GetResult_m74960640D8A39D3212F1B6A9380A04BE034278F7(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mE5C7A10A9927C38D268B75D38ED6087280CB4951_gshared (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = ___0_task;
|
|
__this->___m_task = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_task), (void*)L_0);
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
__this->___m_continueOnCapturedContext = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_mE5C7A10A9927C38D268B75D38ED6087280CB4951_AdjustorThunk (RuntimeObject* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2*>(__this + _offset);
|
|
ConfiguredTaskAwaiter__ctor_mE5C7A10A9927C38D268B75D38ED6087280CB4951(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mD6243A7544181F96816A5F81459F4B66908ADB5E_gshared (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_task;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0);
|
|
bool L_1;
|
|
L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_mD6243A7544181F96816A5F81459F4B66908ADB5E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_get_IsCompleted_mD6243A7544181F96816A5F81459F4B66908ADB5E(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m7829943710018CAC10D1B5F4890FA27BC8AD9CFC_gshared (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_OnCompleted_m7829943710018CAC10D1B5F4890FA27BC8AD9CFC_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_OnCompleted_m7829943710018CAC10D1B5F4890FA27BC8AD9CFC(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m6A8431DA20DEFD849C4EAC7C7A50B556DD97FDBC_gshared (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_m6A8431DA20DEFD849C4EAC7C7A50B556DD97FDBC_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m6A8431DA20DEFD849C4EAC7C7A50B556DD97FDBC(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConfiguredTaskAwaiter_GetResult_m00ABE5C46A983C38086438B7A7CB2C62296B3383_gshared (ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_task;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_1 = __this->___m_task;
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_2;
|
|
L_2 = Task_1_get_ResultOnSuccess_m747DDF25AF20D348F75409600C9943ED5ED92BA0_inline(L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* ConfiguredTaskAwaiter_GetResult_m00ABE5C46A983C38086438B7A7CB2C62296B3383_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_GetResult_m00ABE5C46A983C38086438B7A7CB2C62296B3383(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m3416F16B5D17AF6DE83C1657DF1DEF4EC56E23D3_gshared (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* L_0 = ___0_task;
|
|
__this->___m_task = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_task), (void*)L_0);
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
__this->___m_continueOnCapturedContext = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_m3416F16B5D17AF6DE83C1657DF1DEF4EC56E23D3_AdjustorThunk (RuntimeObject* __this, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC*>(__this + _offset);
|
|
ConfiguredTaskAwaiter__ctor_m3416F16B5D17AF6DE83C1657DF1DEF4EC56E23D3(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m3258297C115BFA2F561ED50AF14721C1C6B6C8B8_gshared (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* L_0 = __this->___m_task;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0);
|
|
bool L_1;
|
|
L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_m3258297C115BFA2F561ED50AF14721C1C6B6C8B8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_get_IsCompleted_m3258297C115BFA2F561ED50AF14721C1C6B6C8B8(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m99C79C357B2805E7814B01B2EAFC8D59A368BE9B_gshared (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_OnCompleted_m99C79C357B2805E7814B01B2EAFC8D59A368BE9B_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_OnCompleted_m99C79C357B2805E7814B01B2EAFC8D59A368BE9B(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m8D143EF19A23A497822B0C06791724F97CBFEB74_gshared (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_m8D143EF19A23A497822B0C06791724F97CBFEB74_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m8D143EF19A23A497822B0C06791724F97CBFEB74(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A ConfiguredTaskAwaiter_GetResult_m82AD3149723B89AA4D9718934779689FC95044F5_gshared (ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* L_0 = __this->___m_task;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* L_1 = __this->___m_task;
|
|
NullCheck(L_1);
|
|
SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A L_2;
|
|
L_2 = Task_1_get_ResultOnSuccess_m604CAB5861502951B55B242E5D417FB4AC185DA0_inline(L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A ConfiguredTaskAwaiter_GetResult_m82AD3149723B89AA4D9718934779689FC95044F5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC*>(__this + _offset);
|
|
SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_GetResult_m82AD3149723B89AA4D9718934779689FC95044F5(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_mEB65866BA2A952D268F73A5B0B3C5F0C44ED52D4_gshared (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_0 = ___0_task;
|
|
__this->___m_task = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_task), (void*)L_0);
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
__this->___m_continueOnCapturedContext = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_mEB65866BA2A952D268F73A5B0B3C5F0C44ED52D4_AdjustorThunk (RuntimeObject* __this, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A*>(__this + _offset);
|
|
ConfiguredTaskAwaiter__ctor_mEB65866BA2A952D268F73A5B0B3C5F0C44ED52D4(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_m39888D5D6655CC50DF6E925252A5232FD43CD4AB_gshared (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_0 = __this->___m_task;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0);
|
|
bool L_1;
|
|
L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_m39888D5D6655CC50DF6E925252A5232FD43CD4AB_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_get_IsCompleted_m39888D5D6655CC50DF6E925252A5232FD43CD4AB(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_mFF52588CEF8834BA9D6562D1DDBD7CB0FC238761_gshared (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_OnCompleted_mFF52588CEF8834BA9D6562D1DDBD7CB0FC238761_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_OnCompleted_mFF52588CEF8834BA9D6562D1DDBD7CB0FC238761(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m49909F7C7467C68FF43DAB744ADF0417F622B869_gshared (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_m49909F7C7467C68FF43DAB744ADF0417F622B869_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m49909F7C7467C68FF43DAB744ADF0417F622B869(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC ConfiguredTaskAwaiter_GetResult_m916ADADCB83D00E93327439DF6E90E45D1919574_gshared (ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_0 = __this->___m_task;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_1 = __this->___m_task;
|
|
NullCheck(L_1);
|
|
VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC L_2;
|
|
L_2 = Task_1_get_ResultOnSuccess_mF2B4314A2FC0448358439C96FC6217501A2ACFE0_inline(L_1, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC ConfiguredTaskAwaiter_GetResult_m916ADADCB83D00E93327439DF6E90E45D1919574_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A*>(__this + _offset);
|
|
VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_GetResult_m916ADADCB83D00E93327439DF6E90E45D1919574(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter__ctor_m5B53A410AE8900B3D565ED7C7FE9DAB92B2ECEC9_gshared (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_0 = ___0_task;
|
|
__this->___m_task = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_task), (void*)L_0);
|
|
bool L_1 = ___1_continueOnCapturedContext;
|
|
__this->___m_continueOnCapturedContext = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter__ctor_m5B53A410AE8900B3D565ED7C7FE9DAB92B2ECEC9_AdjustorThunk (RuntimeObject* __this, Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* ___0_task, bool ___1_continueOnCapturedContext, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A*>(__this + _offset);
|
|
ConfiguredTaskAwaiter__ctor_m5B53A410AE8900B3D565ED7C7FE9DAB92B2ECEC9(_thisAdjusted, ___0_task, ___1_continueOnCapturedContext, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredTaskAwaiter_get_IsCompleted_mAEF99891A1B576254827D55C54C6E0E1787AA7EF_gshared (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_0 = __this->___m_task;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0);
|
|
bool L_1;
|
|
L_1 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredTaskAwaiter_get_IsCompleted_mAEF99891A1B576254827D55C54C6E0E1787AA7EF_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredTaskAwaiter_get_IsCompleted_mAEF99891A1B576254827D55C54C6E0E1787AA7EF(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_OnCompleted_m58DB8E06D138B417E71AFA489D1EB64ECED63284_gshared (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_OnCompleted_m58DB8E06D138B417E71AFA489D1EB64ECED63284_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_OnCompleted_m58DB8E06D138B417E71AFA489D1EB64ECED63284(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_UnsafeOnCompleted_m2EFFC8EFEDD85479876580D8FDEF045B2DCA2D66_gshared (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_0 = __this->___m_task;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_continuation;
|
|
bool L_2 = __this->___m_continueOnCapturedContext;
|
|
TaskAwaiter_OnCompletedInternal_m8017DEDF7A41F58AFB178F31D417F47D3F83D5D4((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, L_1, L_2, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_UnsafeOnCompleted_m2EFFC8EFEDD85479876580D8FDEF045B2DCA2D66_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m2EFFC8EFEDD85479876580D8FDEF045B2DCA2D66(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredTaskAwaiter_GetResult_m14D32632322F465B16F5EB858BFE5886B7217701_gshared (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TResult_t1D607D10F13D62BB25C2A0394C5E034AC2ADAD2E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_TResult_t1D607D10F13D62BB25C2A0394C5E034AC2ADAD2E);
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_0 = __this->___m_task;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_0, NULL);
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_1 = __this->___m_task;
|
|
NullCheck(L_1);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2), L_1, (Il2CppFullySharedGenericAny*)L_2);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_2, SizeOf_TResult_t1D607D10F13D62BB25C2A0394C5E034AC2ADAD2E);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredTaskAwaiter_GetResult_m14D32632322F465B16F5EB858BFE5886B7217701_AdjustorThunk (RuntimeObject* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A*>(__this + _offset);
|
|
ConfiguredTaskAwaiter_GetResult_m14D32632322F465B16F5EB858BFE5886B7217701(_thisAdjusted, il2cppRetVal, method);
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaitable_1__ctor_m508597503A661BAE9FEB5315DC97BCD99E4BDCB7_gshared (ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043* __this, ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 L_0 = ___0_value;
|
|
__this->____value = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value))->____obj), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaitable_1__ctor_m508597503A661BAE9FEB5315DC97BCD99E4BDCB7_AdjustorThunk (RuntimeObject* __this, ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043*>(__this + _offset);
|
|
ConfiguredValueTaskAwaitable_1__ctor_m508597503A661BAE9FEB5315DC97BCD99E4BDCB7_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5 ConfiguredValueTaskAwaitable_1_GetAwaiter_m94C14DDAC561363EFCF143293D1E2E5CE74522E3_gshared (ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 L_0 = __this->____value;
|
|
ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
ConfiguredValueTaskAwaiter__ctor_m1FA5EBCEDA701BBF0893ECF2665D06B4CA2D97B9_inline((&L_1), L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5 ConfiguredValueTaskAwaitable_1_GetAwaiter_m94C14DDAC561363EFCF143293D1E2E5CE74522E3_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043*>(__this + _offset);
|
|
ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5 _returnValue;
|
|
_returnValue = ConfiguredValueTaskAwaitable_1_GetAwaiter_m94C14DDAC561363EFCF143293D1E2E5CE74522E3_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaitable_1__ctor_mEAA2416875911A8D049C7F0FB4477D6AE4BC124B_gshared (ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98* __this, ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 L_0 = ___0_value;
|
|
__this->____value = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value))->____obj), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value))->____result), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaitable_1__ctor_mEAA2416875911A8D049C7F0FB4477D6AE4BC124B_AdjustorThunk (RuntimeObject* __this, ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98*>(__this + _offset);
|
|
ConfiguredValueTaskAwaitable_1__ctor_mEAA2416875911A8D049C7F0FB4477D6AE4BC124B_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99 ConfiguredValueTaskAwaitable_1_GetAwaiter_m7BECD774F029605B45F919BF7DEEC348B2B499B8_gshared (ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 L_0 = __this->____value;
|
|
ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
ConfiguredValueTaskAwaiter__ctor_m2119C5D2703D1D7748F0D5DAB18AA40C883229CF_inline((&L_1), L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99 ConfiguredValueTaskAwaitable_1_GetAwaiter_m7BECD774F029605B45F919BF7DEEC348B2B499B8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98*>(__this + _offset);
|
|
ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99 _returnValue;
|
|
_returnValue = ConfiguredValueTaskAwaitable_1_GetAwaiter_m7BECD774F029605B45F919BF7DEEC348B2B499B8_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaitable_1__ctor_m50F71CECBEA21581E8170F4CDFE15E0182FE41D0_gshared (ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E* __this, ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
const ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 L_0 = alloca(SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, ___0_value, SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D);
|
|
il2cpp_codegen_write_instance_field_data(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0), L_0, SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaitable_1__ctor_m50F71CECBEA21581E8170F4CDFE15E0182FE41D0_AdjustorThunk (RuntimeObject* __this, ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E*>(__this + _offset);
|
|
ConfiguredValueTaskAwaitable_1__ctor_m50F71CECBEA21581E8170F4CDFE15E0182FE41D0_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaitable_1_GetAwaiter_m44A568FC09F949B84CD6F0F09E907A2A04E2EF46_gshared (ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E* __this, ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
const uint32_t SizeOf_ConfiguredValueTaskAwaiter_t65BFC62646A30F976AA86ECBC7549B7FFFA89017 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
const ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2 L_2 = alloca(SizeOf_ConfiguredValueTaskAwaiter_t65BFC62646A30F976AA86ECBC7549B7FFFA89017);
|
|
const ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 L_0 = alloca(SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D);
|
|
const ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 L_1 = alloca(SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)), SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D);
|
|
memset(L_2, 0, SizeOf_ConfiguredValueTaskAwaiter_t65BFC62646A30F976AA86ECBC7549B7FFFA89017);
|
|
ConfiguredValueTaskAwaiter__ctor_m3DE02ADEF13DE18D55B4E303EBB2BA001A30DE09_inline((ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*)L_2, il2cpp_codegen_memcpy(L_1, L_0, SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_2, SizeOf_ConfiguredValueTaskAwaiter_t65BFC62646A30F976AA86ECBC7549B7FFFA89017);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaitable_1_GetAwaiter_m44A568FC09F949B84CD6F0F09E907A2A04E2EF46_AdjustorThunk (RuntimeObject* __this, ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E*>(__this + _offset);
|
|
ConfiguredValueTaskAwaitable_1_GetAwaiter_m44A568FC09F949B84CD6F0F09E907A2A04E2EF46_inline(_thisAdjusted, il2cppRetVal, method);
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter__ctor_m1FA5EBCEDA701BBF0893ECF2665D06B4CA2D97B9_gshared (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 L_0 = ___0_value;
|
|
__this->____value = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value))->____obj), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaiter__ctor_m1FA5EBCEDA701BBF0893ECF2665D06B4CA2D97B9_AdjustorThunk (RuntimeObject* __this, ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5*>(__this + _offset);
|
|
ConfiguredValueTaskAwaiter__ctor_m1FA5EBCEDA701BBF0893ECF2665D06B4CA2D97B9_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredValueTaskAwaiter_get_IsCompleted_mB0B5FC0CD4E3282961DCA3F5B5C24260680B7461_gshared (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_0 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
bool L_1;
|
|
L_1 = ValueTask_1_get_IsCompleted_m327391A8FC9F06A07DC95CBC77756BA963EC42A2_inline(L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredValueTaskAwaiter_get_IsCompleted_mB0B5FC0CD4E3282961DCA3F5B5C24260680B7461_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredValueTaskAwaiter_get_IsCompleted_mB0B5FC0CD4E3282961DCA3F5B5C24260680B7461_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ConfiguredValueTaskAwaiter_GetResult_mB250A2B7423863EC0EF64C56F679FBA4FD674021_gshared (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_0 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
int32_t L_1;
|
|
L_1 = ValueTask_1_get_Result_m272AA34FF8C511DECB3E35C6C0A1039F0723F960_inline(L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ConfiguredValueTaskAwaiter_GetResult_mB250A2B7423863EC0EF64C56F679FBA4FD674021_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ConfiguredValueTaskAwaiter_GetResult_mB250A2B7423863EC0EF64C56F679FBA4FD674021_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_OnCompleted_m54151496E9D086C12B909258785D21E0EFF93C0E_gshared (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* V_1 = NULL;
|
|
ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
int32_t G_B5_0 = 0;
|
|
int16_t G_B5_1 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B5_2 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B5_3 = NULL;
|
|
RuntimeObject* G_B5_4 = NULL;
|
|
int32_t G_B4_0 = 0;
|
|
int16_t G_B4_1 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B4_2 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B4_3 = NULL;
|
|
RuntimeObject* G_B4_4 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B6_1 = 0;
|
|
int16_t G_B6_2 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B6_3 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B6_4 = NULL;
|
|
RuntimeObject* G_B6_5 = NULL;
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_0 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
RuntimeObject* L_1 = L_0->____obj;
|
|
V_0 = L_1;
|
|
RuntimeObject* L_2 = V_0;
|
|
V_1 = ((Task_1_t4C228DE57804012969575431CFF12D57C875552D*)IsInstClass((RuntimeObject*)L_2, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 6)));
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_4 = V_1;
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_5 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
bool L_6 = L_5->____continueOnCapturedContext;
|
|
NullCheck(L_4);
|
|
ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A L_7;
|
|
L_7 = Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209(L_4, L_6, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
V_2 = L_7;
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 L_8;
|
|
L_8 = ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_inline((&V_2), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
V_3 = L_8;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = ___0_continuation;
|
|
ConfiguredTaskAwaiter_OnCompleted_m15282EE71D354E5E6DD4952FD8283E52D253EF1E((&V_3), L_9, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
RuntimeObject* L_10 = V_0;
|
|
if (!L_10)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_11 = V_0;
|
|
RuntimeObject* L_12;
|
|
L_12 = il2cpp_unsafe_as<RuntimeObject*>(L_11);
|
|
il2cpp_codegen_runtime_class_init_inline(ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_13 = ((ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_StaticFields*)il2cpp_codegen_static_fields_for(ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var))->___s_invokeActionDelegate;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_14 = ___0_continuation;
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_15 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
int16_t L_16 = L_15->____token;
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_17 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
bool L_18 = L_17->____continueOnCapturedContext;
|
|
if (L_18)
|
|
{
|
|
G_B5_0 = 2;
|
|
G_B5_1 = L_16;
|
|
G_B5_2 = L_14;
|
|
G_B5_3 = L_13;
|
|
G_B5_4 = L_12;
|
|
goto IL_0064;
|
|
}
|
|
G_B4_0 = 2;
|
|
G_B4_1 = L_16;
|
|
G_B4_2 = L_14;
|
|
G_B4_3 = L_13;
|
|
G_B4_4 = L_12;
|
|
}
|
|
{
|
|
G_B6_0 = 0;
|
|
G_B6_1 = G_B4_0;
|
|
G_B6_2 = G_B4_1;
|
|
G_B6_3 = G_B4_2;
|
|
G_B6_4 = G_B4_3;
|
|
G_B6_5 = G_B4_4;
|
|
goto IL_0065;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
G_B6_0 = 1;
|
|
G_B6_1 = G_B5_0;
|
|
G_B6_2 = G_B5_1;
|
|
G_B6_3 = G_B5_2;
|
|
G_B6_4 = G_B5_3;
|
|
G_B6_5 = G_B5_4;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
NullCheck(G_B6_5);
|
|
InterfaceActionInvoker4< Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*, RuntimeObject*, int16_t, int32_t >::Invoke(1, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 14), G_B6_5, G_B6_4, (RuntimeObject*)G_B6_3, G_B6_2, (int32_t)((int32_t)(G_B6_1|G_B6_0)));
|
|
return;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_19;
|
|
L_19 = ValueTask_get_CompletedTask_m420F6BE3426808DE6345091B4A871BFABD0354DD(NULL);
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_20 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
bool L_21 = L_20->____continueOnCapturedContext;
|
|
NullCheck(L_19);
|
|
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_22;
|
|
L_22 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_19, L_21, NULL);
|
|
V_4 = L_22;
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_23;
|
|
L_23 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_4), NULL);
|
|
V_5 = L_23;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_24 = ___0_continuation;
|
|
ConfiguredTaskAwaiter_OnCompleted_mB6A56C98F368A70EC9FC750C492A08F62DD7EEA5((&V_5), L_24, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaiter_OnCompleted_m54151496E9D086C12B909258785D21E0EFF93C0E_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5*>(__this + _offset);
|
|
ConfiguredValueTaskAwaiter_OnCompleted_m54151496E9D086C12B909258785D21E0EFF93C0E(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m234E75BAEA47B62ACD63096F80F18A285A0A1A45_gshared (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* V_1 = NULL;
|
|
ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
int16_t G_B5_0 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B5_1 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B5_2 = NULL;
|
|
RuntimeObject* G_B5_3 = NULL;
|
|
int16_t G_B4_0 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B4_1 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B4_2 = NULL;
|
|
RuntimeObject* G_B4_3 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
int16_t G_B6_1 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B6_2 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B6_3 = NULL;
|
|
RuntimeObject* G_B6_4 = NULL;
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_0 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
RuntimeObject* L_1 = L_0->____obj;
|
|
V_0 = L_1;
|
|
RuntimeObject* L_2 = V_0;
|
|
V_1 = ((Task_1_t4C228DE57804012969575431CFF12D57C875552D*)IsInstClass((RuntimeObject*)L_2, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 6)));
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_4 = V_1;
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_5 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
bool L_6 = L_5->____continueOnCapturedContext;
|
|
NullCheck(L_4);
|
|
ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A L_7;
|
|
L_7 = Task_1_ConfigureAwait_m8203F4D13209C12845066A383E5B850D0486B209(L_4, L_6, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
V_2 = L_7;
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 L_8;
|
|
L_8 = ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_inline((&V_2), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
V_3 = L_8;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = ___0_continuation;
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m9BBAE6AEBDEFAC8BDBBAC1792B91C838A8328166((&V_3), L_9, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 16));
|
|
return;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
RuntimeObject* L_10 = V_0;
|
|
if (!L_10)
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_11 = V_0;
|
|
RuntimeObject* L_12;
|
|
L_12 = il2cpp_unsafe_as<RuntimeObject*>(L_11);
|
|
il2cpp_codegen_runtime_class_init_inline(ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_13 = ((ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_StaticFields*)il2cpp_codegen_static_fields_for(ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var))->___s_invokeActionDelegate;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_14 = ___0_continuation;
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_15 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
int16_t L_16 = L_15->____token;
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_17 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
bool L_18 = L_17->____continueOnCapturedContext;
|
|
if (L_18)
|
|
{
|
|
G_B5_0 = L_16;
|
|
G_B5_1 = L_14;
|
|
G_B5_2 = L_13;
|
|
G_B5_3 = L_12;
|
|
goto IL_0063;
|
|
}
|
|
G_B4_0 = L_16;
|
|
G_B4_1 = L_14;
|
|
G_B4_2 = L_13;
|
|
G_B4_3 = L_12;
|
|
}
|
|
{
|
|
G_B6_0 = 0;
|
|
G_B6_1 = G_B4_0;
|
|
G_B6_2 = G_B4_1;
|
|
G_B6_3 = G_B4_2;
|
|
G_B6_4 = G_B4_3;
|
|
goto IL_0064;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
G_B6_0 = 1;
|
|
G_B6_1 = G_B5_0;
|
|
G_B6_2 = G_B5_1;
|
|
G_B6_3 = G_B5_2;
|
|
G_B6_4 = G_B5_3;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
NullCheck(G_B6_4);
|
|
InterfaceActionInvoker4< Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*, RuntimeObject*, int16_t, int32_t >::Invoke(1, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 14), G_B6_4, G_B6_3, (RuntimeObject*)G_B6_2, G_B6_1, (int32_t)G_B6_0);
|
|
return;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_19;
|
|
L_19 = ValueTask_get_CompletedTask_m420F6BE3426808DE6345091B4A871BFABD0354DD(NULL);
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_20 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
bool L_21 = L_20->____continueOnCapturedContext;
|
|
NullCheck(L_19);
|
|
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_22;
|
|
L_22 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_19, L_21, NULL);
|
|
V_4 = L_22;
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_23;
|
|
L_23 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_4), NULL);
|
|
V_5 = L_23;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_24 = ___0_continuation;
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m4D9FAB57031DB65424E4AACFB07EFF773CAC4618((&V_5), L_24, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m234E75BAEA47B62ACD63096F80F18A285A0A1A45_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5*>(__this + _offset);
|
|
ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m234E75BAEA47B62ACD63096F80F18A285A0A1A45(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter__ctor_m2119C5D2703D1D7748F0D5DAB18AA40C883229CF_gshared (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 L_0 = ___0_value;
|
|
__this->____value = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value))->____obj), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value))->____result), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaiter__ctor_m2119C5D2703D1D7748F0D5DAB18AA40C883229CF_AdjustorThunk (RuntimeObject* __this, ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99*>(__this + _offset);
|
|
ConfiguredValueTaskAwaiter__ctor_m2119C5D2703D1D7748F0D5DAB18AA40C883229CF_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredValueTaskAwaiter_get_IsCompleted_mA7BC89851224972805007D736DB02E2B7D4700F2_gshared (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_0 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
bool L_1;
|
|
L_1 = ValueTask_1_get_IsCompleted_mB5FE6398DBC9CBAECABB6AFC1B3F3A1F51D1479F_inline(L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredValueTaskAwaiter_get_IsCompleted_mA7BC89851224972805007D736DB02E2B7D4700F2_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredValueTaskAwaiter_get_IsCompleted_mA7BC89851224972805007D736DB02E2B7D4700F2_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ConfiguredValueTaskAwaiter_GetResult_mBB2D627DF9F38F1113F367FF1ACE907F0A82D494_gshared (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_0 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
RuntimeObject* L_1;
|
|
L_1 = ValueTask_1_get_Result_m3035DEA69E68AD985EDB5285416C94558C72B23D_inline(L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C RuntimeObject* ConfiguredValueTaskAwaiter_GetResult_mBB2D627DF9F38F1113F367FF1ACE907F0A82D494_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99*>(__this + _offset);
|
|
RuntimeObject* _returnValue;
|
|
_returnValue = ConfiguredValueTaskAwaiter_GetResult_mBB2D627DF9F38F1113F367FF1ACE907F0A82D494_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_OnCompleted_m3589A6D670BE42D9B0A8A68433BE33C450103F38_gshared (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_1 = NULL;
|
|
ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
int32_t G_B5_0 = 0;
|
|
int16_t G_B5_1 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B5_2 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B5_3 = NULL;
|
|
RuntimeObject* G_B5_4 = NULL;
|
|
int32_t G_B4_0 = 0;
|
|
int16_t G_B4_1 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B4_2 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B4_3 = NULL;
|
|
RuntimeObject* G_B4_4 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B6_1 = 0;
|
|
int16_t G_B6_2 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B6_3 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B6_4 = NULL;
|
|
RuntimeObject* G_B6_5 = NULL;
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_0 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
RuntimeObject* L_1 = L_0->____obj;
|
|
V_0 = L_1;
|
|
RuntimeObject* L_2 = V_0;
|
|
V_1 = ((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)IsInstClass((RuntimeObject*)L_2, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 6)));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_4 = V_1;
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_5 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
bool L_6 = L_5->____continueOnCapturedContext;
|
|
NullCheck(L_4);
|
|
ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8 L_7;
|
|
L_7 = Task_1_ConfigureAwait_m9D6420C859925B7C250DED7586DD770C91632070(L_4, L_6, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
V_2 = L_7;
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 L_8;
|
|
L_8 = ConfiguredTaskAwaitable_1_GetAwaiter_m10364C3B0A904803E890B2D75674665F986BDAB2_inline((&V_2), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
V_3 = L_8;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = ___0_continuation;
|
|
ConfiguredTaskAwaiter_OnCompleted_m7829943710018CAC10D1B5F4890FA27BC8AD9CFC((&V_3), L_9, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
RuntimeObject* L_10 = V_0;
|
|
if (!L_10)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_11 = V_0;
|
|
RuntimeObject* L_12;
|
|
L_12 = il2cpp_unsafe_as<RuntimeObject*>(L_11);
|
|
il2cpp_codegen_runtime_class_init_inline(ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_13 = ((ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_StaticFields*)il2cpp_codegen_static_fields_for(ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var))->___s_invokeActionDelegate;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_14 = ___0_continuation;
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_15 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
int16_t L_16 = L_15->____token;
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_17 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
bool L_18 = L_17->____continueOnCapturedContext;
|
|
if (L_18)
|
|
{
|
|
G_B5_0 = 2;
|
|
G_B5_1 = L_16;
|
|
G_B5_2 = L_14;
|
|
G_B5_3 = L_13;
|
|
G_B5_4 = L_12;
|
|
goto IL_0064;
|
|
}
|
|
G_B4_0 = 2;
|
|
G_B4_1 = L_16;
|
|
G_B4_2 = L_14;
|
|
G_B4_3 = L_13;
|
|
G_B4_4 = L_12;
|
|
}
|
|
{
|
|
G_B6_0 = 0;
|
|
G_B6_1 = G_B4_0;
|
|
G_B6_2 = G_B4_1;
|
|
G_B6_3 = G_B4_2;
|
|
G_B6_4 = G_B4_3;
|
|
G_B6_5 = G_B4_4;
|
|
goto IL_0065;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
G_B6_0 = 1;
|
|
G_B6_1 = G_B5_0;
|
|
G_B6_2 = G_B5_1;
|
|
G_B6_3 = G_B5_2;
|
|
G_B6_4 = G_B5_3;
|
|
G_B6_5 = G_B5_4;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
NullCheck(G_B6_5);
|
|
InterfaceActionInvoker4< Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*, RuntimeObject*, int16_t, int32_t >::Invoke(1, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 14), G_B6_5, G_B6_4, (RuntimeObject*)G_B6_3, G_B6_2, (int32_t)((int32_t)(G_B6_1|G_B6_0)));
|
|
return;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_19;
|
|
L_19 = ValueTask_get_CompletedTask_m420F6BE3426808DE6345091B4A871BFABD0354DD(NULL);
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_20 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
bool L_21 = L_20->____continueOnCapturedContext;
|
|
NullCheck(L_19);
|
|
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_22;
|
|
L_22 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_19, L_21, NULL);
|
|
V_4 = L_22;
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_23;
|
|
L_23 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_4), NULL);
|
|
V_5 = L_23;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_24 = ___0_continuation;
|
|
ConfiguredTaskAwaiter_OnCompleted_mB6A56C98F368A70EC9FC750C492A08F62DD7EEA5((&V_5), L_24, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaiter_OnCompleted_m3589A6D670BE42D9B0A8A68433BE33C450103F38_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99*>(__this + _offset);
|
|
ConfiguredValueTaskAwaiter_OnCompleted_m3589A6D670BE42D9B0A8A68433BE33C450103F38(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m8412DD1E4BA01EE0FA199061CB05AFF9E1D061E9_gshared (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_1 = NULL;
|
|
ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
int16_t G_B5_0 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B5_1 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B5_2 = NULL;
|
|
RuntimeObject* G_B5_3 = NULL;
|
|
int16_t G_B4_0 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B4_1 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B4_2 = NULL;
|
|
RuntimeObject* G_B4_3 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
int16_t G_B6_1 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B6_2 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B6_3 = NULL;
|
|
RuntimeObject* G_B6_4 = NULL;
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_0 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
RuntimeObject* L_1 = L_0->____obj;
|
|
V_0 = L_1;
|
|
RuntimeObject* L_2 = V_0;
|
|
V_1 = ((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)IsInstClass((RuntimeObject*)L_2, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 6)));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_4 = V_1;
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_5 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
bool L_6 = L_5->____continueOnCapturedContext;
|
|
NullCheck(L_4);
|
|
ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8 L_7;
|
|
L_7 = Task_1_ConfigureAwait_m9D6420C859925B7C250DED7586DD770C91632070(L_4, L_6, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
V_2 = L_7;
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 L_8;
|
|
L_8 = ConfiguredTaskAwaitable_1_GetAwaiter_m10364C3B0A904803E890B2D75674665F986BDAB2_inline((&V_2), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
V_3 = L_8;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_9 = ___0_continuation;
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m6A8431DA20DEFD849C4EAC7C7A50B556DD97FDBC((&V_3), L_9, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 16));
|
|
return;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
RuntimeObject* L_10 = V_0;
|
|
if (!L_10)
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_11 = V_0;
|
|
RuntimeObject* L_12;
|
|
L_12 = il2cpp_unsafe_as<RuntimeObject*>(L_11);
|
|
il2cpp_codegen_runtime_class_init_inline(ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_13 = ((ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_StaticFields*)il2cpp_codegen_static_fields_for(ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var))->___s_invokeActionDelegate;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_14 = ___0_continuation;
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_15 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
int16_t L_16 = L_15->____token;
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_17 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
bool L_18 = L_17->____continueOnCapturedContext;
|
|
if (L_18)
|
|
{
|
|
G_B5_0 = L_16;
|
|
G_B5_1 = L_14;
|
|
G_B5_2 = L_13;
|
|
G_B5_3 = L_12;
|
|
goto IL_0063;
|
|
}
|
|
G_B4_0 = L_16;
|
|
G_B4_1 = L_14;
|
|
G_B4_2 = L_13;
|
|
G_B4_3 = L_12;
|
|
}
|
|
{
|
|
G_B6_0 = 0;
|
|
G_B6_1 = G_B4_0;
|
|
G_B6_2 = G_B4_1;
|
|
G_B6_3 = G_B4_2;
|
|
G_B6_4 = G_B4_3;
|
|
goto IL_0064;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
G_B6_0 = 1;
|
|
G_B6_1 = G_B5_0;
|
|
G_B6_2 = G_B5_1;
|
|
G_B6_3 = G_B5_2;
|
|
G_B6_4 = G_B5_3;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
NullCheck(G_B6_4);
|
|
InterfaceActionInvoker4< Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*, RuntimeObject*, int16_t, int32_t >::Invoke(1, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 14), G_B6_4, G_B6_3, (RuntimeObject*)G_B6_2, G_B6_1, (int32_t)G_B6_0);
|
|
return;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_19;
|
|
L_19 = ValueTask_get_CompletedTask_m420F6BE3426808DE6345091B4A871BFABD0354DD(NULL);
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_20 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
bool L_21 = L_20->____continueOnCapturedContext;
|
|
NullCheck(L_19);
|
|
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_22;
|
|
L_22 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_19, L_21, NULL);
|
|
V_4 = L_22;
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_23;
|
|
L_23 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_4), NULL);
|
|
V_5 = L_23;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_24 = ___0_continuation;
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m4D9FAB57031DB65424E4AACFB07EFF773CAC4618((&V_5), L_24, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m8412DD1E4BA01EE0FA199061CB05AFF9E1D061E9_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99*>(__this + _offset);
|
|
ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m8412DD1E4BA01EE0FA199061CB05AFF9E1D061E9(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter__ctor_m3DE02ADEF13DE18D55B4E303EBB2BA001A30DE09_gshared (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_ValueTask_1_t01874A5993CF7B4E4B9DFA1E83392D9E1AB90D4D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
const ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 L_0 = alloca(SizeOf_ValueTask_1_t01874A5993CF7B4E4B9DFA1E83392D9E1AB90D4D);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, ___0_value, SizeOf_ValueTask_1_t01874A5993CF7B4E4B9DFA1E83392D9E1AB90D4D);
|
|
il2cpp_codegen_write_instance_field_data(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0), L_0, SizeOf_ValueTask_1_t01874A5993CF7B4E4B9DFA1E83392D9E1AB90D4D);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaiter__ctor_m3DE02ADEF13DE18D55B4E303EBB2BA001A30DE09_AdjustorThunk (RuntimeObject* __this, ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*>(__this + _offset);
|
|
ConfiguredValueTaskAwaiter__ctor_m3DE02ADEF13DE18D55B4E303EBB2BA001A30DE09_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ConfiguredValueTaskAwaiter_get_IsCompleted_m900B802370ACB3E11F808026A4BEE1183E91507A_gshared (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0;
|
|
L_0 = (( bool (*) (ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2)))((((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ConfiguredValueTaskAwaiter_get_IsCompleted_m900B802370ACB3E11F808026A4BEE1183E91507A_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ConfiguredValueTaskAwaiter_get_IsCompleted_m900B802370ACB3E11F808026A4BEE1183E91507A_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_GetResult_mCF267B69492EBE1F642327D1A858EF350DEBC19E_gshared (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TResult_tE5707140DBDCD73DB507DB54BE9E7D08A71C42C7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TResult_tE5707140DBDCD73DB507DB54BE9E7D08A71C42C7);
|
|
{
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4), (((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), (Il2CppFullySharedGenericAny*)L_0);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_0, SizeOf_TResult_tE5707140DBDCD73DB507DB54BE9E7D08A71C42C7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaiter_GetResult_mCF267B69492EBE1F642327D1A858EF350DEBC19E_AdjustorThunk (RuntimeObject* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*>(__this + _offset);
|
|
ConfiguredValueTaskAwaiter_GetResult_mCF267B69492EBE1F642327D1A858EF350DEBC19E_inline(_thisAdjusted, il2cppRetVal, method);
|
|
return;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_OnCompleted_mEEFFB5D64C428B1FFCBC4AE5742DD594C2887DB3_gshared (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* V_1 = NULL;
|
|
ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
int32_t G_B5_0 = 0;
|
|
int16_t G_B5_1 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B5_2 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B5_3 = NULL;
|
|
RuntimeObject* G_B5_4 = NULL;
|
|
int32_t G_B4_0 = 0;
|
|
int16_t G_B4_1 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B4_2 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B4_3 = NULL;
|
|
RuntimeObject* G_B4_4 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B6_1 = 0;
|
|
int16_t G_B6_2 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B6_3 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B6_4 = NULL;
|
|
RuntimeObject* G_B6_5 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = *(RuntimeObject**)il2cpp_codegen_get_instance_field_data_pointer((((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0),1));
|
|
V_0 = L_0;
|
|
RuntimeObject* L_1 = V_0;
|
|
V_1 = ((Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*)IsInstClass((RuntimeObject*)L_1, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 6)));
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_3 = V_1;
|
|
bool L_4 = *(bool*)il2cpp_codegen_get_instance_field_data_pointer((((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0),4));
|
|
NullCheck(L_3);
|
|
ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922 L_5;
|
|
L_5 = (( ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922 (*) (Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*, bool, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7)))(L_3, L_4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
V_2 = L_5;
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A L_6;
|
|
L_6 = (( ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A (*) (ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9)))((&V_2), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
V_3 = L_6;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7 = ___0_continuation;
|
|
(( void (*) (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12)))((&V_3), L_7, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 12));
|
|
return;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
RuntimeObject* L_8 = V_0;
|
|
if (!L_8)
|
|
{
|
|
goto IL_006c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_9 = V_0;
|
|
RuntimeObject* L_10;
|
|
L_10 = il2cpp_unsafe_as<RuntimeObject*>(L_9);
|
|
il2cpp_codegen_runtime_class_init_inline(ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_11 = ((ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_StaticFields*)il2cpp_codegen_static_fields_for(ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var))->___s_invokeActionDelegate;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_12 = ___0_continuation;
|
|
int16_t L_13 = *(int16_t*)il2cpp_codegen_get_instance_field_data_pointer((((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0),3));
|
|
bool L_14 = *(bool*)il2cpp_codegen_get_instance_field_data_pointer((((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0),4));
|
|
if (L_14)
|
|
{
|
|
G_B5_0 = 2;
|
|
G_B5_1 = L_13;
|
|
G_B5_2 = L_12;
|
|
G_B5_3 = L_11;
|
|
G_B5_4 = L_10;
|
|
goto IL_0064;
|
|
}
|
|
G_B4_0 = 2;
|
|
G_B4_1 = L_13;
|
|
G_B4_2 = L_12;
|
|
G_B4_3 = L_11;
|
|
G_B4_4 = L_10;
|
|
}
|
|
{
|
|
G_B6_0 = 0;
|
|
G_B6_1 = G_B4_0;
|
|
G_B6_2 = G_B4_1;
|
|
G_B6_3 = G_B4_2;
|
|
G_B6_4 = G_B4_3;
|
|
G_B6_5 = G_B4_4;
|
|
goto IL_0065;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
G_B6_0 = 1;
|
|
G_B6_1 = G_B5_0;
|
|
G_B6_2 = G_B5_1;
|
|
G_B6_3 = G_B5_2;
|
|
G_B6_4 = G_B5_3;
|
|
G_B6_5 = G_B5_4;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
NullCheck(G_B6_5);
|
|
InterfaceActionInvoker4< Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*, RuntimeObject*, int16_t, int32_t >::Invoke(1, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 14), G_B6_5, G_B6_4, (RuntimeObject*)G_B6_3, G_B6_2, (int32_t)((int32_t)(G_B6_1|G_B6_0)));
|
|
return;
|
|
}
|
|
|
|
IL_006c:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_15;
|
|
L_15 = ValueTask_get_CompletedTask_m420F6BE3426808DE6345091B4A871BFABD0354DD(NULL);
|
|
bool L_16 = *(bool*)il2cpp_codegen_get_instance_field_data_pointer((((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0),4));
|
|
NullCheck(L_15);
|
|
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_17;
|
|
L_17 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_15, L_16, NULL);
|
|
V_4 = L_17;
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_18;
|
|
L_18 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_4), NULL);
|
|
V_5 = L_18;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_19 = ___0_continuation;
|
|
ConfiguredTaskAwaiter_OnCompleted_mB6A56C98F368A70EC9FC750C492A08F62DD7EEA5((&V_5), L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaiter_OnCompleted_mEEFFB5D64C428B1FFCBC4AE5742DD594C2887DB3_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*>(__this + _offset);
|
|
ConfiguredValueTaskAwaiter_OnCompleted_mEEFFB5D64C428B1FFCBC4AE5742DD594C2887DB3(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m562052388D99EC0C34D5412AE114E2DF90358BFA_gshared (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* V_1 = NULL;
|
|
ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
int16_t G_B5_0 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B5_1 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B5_2 = NULL;
|
|
RuntimeObject* G_B5_3 = NULL;
|
|
int16_t G_B4_0 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B4_1 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B4_2 = NULL;
|
|
RuntimeObject* G_B4_3 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
int16_t G_B6_1 = 0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B6_2 = NULL;
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* G_B6_3 = NULL;
|
|
RuntimeObject* G_B6_4 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = *(RuntimeObject**)il2cpp_codegen_get_instance_field_data_pointer((((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0),1));
|
|
V_0 = L_0;
|
|
RuntimeObject* L_1 = V_0;
|
|
V_1 = ((Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*)IsInstClass((RuntimeObject*)L_1, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 6)));
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_3 = V_1;
|
|
bool L_4 = *(bool*)il2cpp_codegen_get_instance_field_data_pointer((((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0),4));
|
|
NullCheck(L_3);
|
|
ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922 L_5;
|
|
L_5 = (( ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922 (*) (Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*, bool, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7)))(L_3, L_4, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 7));
|
|
V_2 = L_5;
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A L_6;
|
|
L_6 = (( ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A (*) (ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9)))((&V_2), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 9));
|
|
V_3 = L_6;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_7 = ___0_continuation;
|
|
(( void (*) (ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 16)))((&V_3), L_7, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 16));
|
|
return;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
RuntimeObject* L_8 = V_0;
|
|
if (!L_8)
|
|
{
|
|
goto IL_006a;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_9 = V_0;
|
|
RuntimeObject* L_10;
|
|
L_10 = il2cpp_unsafe_as<RuntimeObject*>(L_9);
|
|
il2cpp_codegen_runtime_class_init_inline(ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var);
|
|
Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* L_11 = ((ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_StaticFields*)il2cpp_codegen_static_fields_for(ValueTaskAwaiter_t8A53759F995F1786E132CA010D1D215B55F3101A_il2cpp_TypeInfo_var))->___s_invokeActionDelegate;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_12 = ___0_continuation;
|
|
int16_t L_13 = *(int16_t*)il2cpp_codegen_get_instance_field_data_pointer((((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0),3));
|
|
bool L_14 = *(bool*)il2cpp_codegen_get_instance_field_data_pointer((((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0),4));
|
|
if (L_14)
|
|
{
|
|
G_B5_0 = L_13;
|
|
G_B5_1 = L_12;
|
|
G_B5_2 = L_11;
|
|
G_B5_3 = L_10;
|
|
goto IL_0063;
|
|
}
|
|
G_B4_0 = L_13;
|
|
G_B4_1 = L_12;
|
|
G_B4_2 = L_11;
|
|
G_B4_3 = L_10;
|
|
}
|
|
{
|
|
G_B6_0 = 0;
|
|
G_B6_1 = G_B4_0;
|
|
G_B6_2 = G_B4_1;
|
|
G_B6_3 = G_B4_2;
|
|
G_B6_4 = G_B4_3;
|
|
goto IL_0064;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
G_B6_0 = 1;
|
|
G_B6_1 = G_B5_0;
|
|
G_B6_2 = G_B5_1;
|
|
G_B6_3 = G_B5_2;
|
|
G_B6_4 = G_B5_3;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
NullCheck(G_B6_4);
|
|
InterfaceActionInvoker4< Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87*, RuntimeObject*, int16_t, int32_t >::Invoke(1, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 14), G_B6_4, G_B6_3, (RuntimeObject*)G_B6_2, G_B6_1, (int32_t)G_B6_0);
|
|
return;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ValueTask_t10B4B5DDF5C582607D0E634FA912F8CB94FCD49F_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_15;
|
|
L_15 = ValueTask_get_CompletedTask_m420F6BE3426808DE6345091B4A871BFABD0354DD(NULL);
|
|
bool L_16 = *(bool*)il2cpp_codegen_get_instance_field_data_pointer((((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0),4));
|
|
NullCheck(L_15);
|
|
ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C L_17;
|
|
L_17 = Task_ConfigureAwait_m0DD682B1D29B85067C993734C12E26554D6CBFF4(L_15, L_16, NULL);
|
|
V_4 = L_17;
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_18;
|
|
L_18 = ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline((&V_4), NULL);
|
|
V_5 = L_18;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_19 = ___0_continuation;
|
|
ConfiguredTaskAwaiter_UnsafeOnCompleted_m4D9FAB57031DB65424E4AACFB07EFF773CAC4618((&V_5), L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m562052388D99EC0C34D5412AE114E2DF90358BFA_AdjustorThunk (RuntimeObject* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_continuation, const RuntimeMethod* method)
|
|
{
|
|
ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*>(__this + _offset);
|
|
ConfiguredValueTaskAwaiter_UnsafeOnCompleted_m562052388D99EC0C34D5412AE114E2DF90358BFA(_thisAdjusted, ___0_continuation, method);
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__cctor_m3A8BC78663E0DD0D86011EB45D5CFCAFE054F122_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = TypeTraits_IsContainer_m46D04F3E3219371CC5F133E2CC54BCA46FD72505(L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBFD0F59F9F38A92660652CA5BE172EFCA8501E47)), (RuntimeObject*)L_5, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContainerPropertyBag_1_TryGetProperty_m237C85B83F0BDA7194380DD0FC7BA7DDBE3B6E54_gshared (ContainerPropertyBag_1_t2279C723A3D81E0BE90A787349C987FC490033EF* __this, Bounds_t367E830C64BBF235ED8C3B2F8CF6254FDCAD39C3* ___0_container, String_t* ___1_name, RuntimeObject** ___2_property, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_t4DFECF621C500453991651A5A026D9FCC484C340* L_0 = __this->___m_PropertiesHash;
|
|
String_t* L_1 = ___1_name;
|
|
RuntimeObject** L_2 = ___2_property;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = Dictionary_2_TryGetValue_m522F6200C80B048140765E8FDDC35163B8C5B983(L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__ctor_m0B3C26C575C4406E1478D8D4FFB946522E95F740_gshared (ContainerPropertyBag_1_t2279C723A3D81E0BE90A787349C987FC490033EF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_tE031E2B1B3599B1B808F7E565E285D0265829963* L_0 = (List_1_tE031E2B1B3599B1B808F7E565E285D0265829963*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
List_1__ctor_m57D8371DCB7C28F480CAF18E51D1B04EA3A3DB91(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
__this->___m_PropertiesList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesList), (void*)L_0);
|
|
Dictionary_2_t4DFECF621C500453991651A5A026D9FCC484C340* L_1 = (Dictionary_2_t4DFECF621C500453991651A5A026D9FCC484C340*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 5));
|
|
Dictionary_2__ctor_m449C17EEFEEA3A55E5EF321DD63ABD514BB3AE6D(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___m_PropertiesHash = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesHash), (void*)L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
PropertyBag_1__ctor_mB8004D0AD96FE582C9E03BD628D5C1BCBAAED691((PropertyBag_1_tD413081183D831D5FD1DB047C6388E9EA8522318*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__cctor_m7F7D1B028C0CC82BCC9A421ED9824C752CCB16CC_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = TypeTraits_IsContainer_m46D04F3E3219371CC5F133E2CC54BCA46FD72505(L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBFD0F59F9F38A92660652CA5BE172EFCA8501E47)), (RuntimeObject*)L_5, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContainerPropertyBag_1_TryGetProperty_m5D9A2260145CC7397D0487F321197D38395A7661_gshared (ContainerPropertyBag_1_t3A0DBCD09BBF64291800B0275CC7E1F2EECA0FEF* __this, BoundsInt_t4E757DE5EFF9FCB42000F173360DDC63B5585485* ___0_container, String_t* ___1_name, RuntimeObject** ___2_property, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_tBCB806C16A2ADAA77600E3249746F7B6CB638FB1* L_0 = __this->___m_PropertiesHash;
|
|
String_t* L_1 = ___1_name;
|
|
RuntimeObject** L_2 = ___2_property;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = Dictionary_2_TryGetValue_mEA00F2AB0AEFDC61A917C116709E02251542BC7E(L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__ctor_mDF062EDE672E0636FD2510B7574F918A7924BAE1_gshared (ContainerPropertyBag_1_t3A0DBCD09BBF64291800B0275CC7E1F2EECA0FEF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_tB0305892E26D0C482A75FD711E7CF6277D867EAA* L_0 = (List_1_tB0305892E26D0C482A75FD711E7CF6277D867EAA*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
List_1__ctor_m61582885FE798C86CB9D58B0F55CE26D5AFBF049(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
__this->___m_PropertiesList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesList), (void*)L_0);
|
|
Dictionary_2_tBCB806C16A2ADAA77600E3249746F7B6CB638FB1* L_1 = (Dictionary_2_tBCB806C16A2ADAA77600E3249746F7B6CB638FB1*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 5));
|
|
Dictionary_2__ctor_m8899907CC9958E266E7973BF9C4BDBFF0A8C6963(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___m_PropertiesHash = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesHash), (void*)L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
PropertyBag_1__ctor_mED3A84C21BDE201E5AD050889E215EF25E6BB4DE((PropertyBag_1_tFA4D14E31A2A501D102D88481DCBC9501A6EF390*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__cctor_m263604F9B4CFCE16C360AA21DAB09C304CDA6275_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = TypeTraits_IsContainer_m46D04F3E3219371CC5F133E2CC54BCA46FD72505(L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBFD0F59F9F38A92660652CA5BE172EFCA8501E47)), (RuntimeObject*)L_5, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContainerPropertyBag_1_TryGetProperty_mF6B2C6CAAD7D343D8CD74A88221D420CDDE5ADE2_gshared (ContainerPropertyBag_1_t4B3135B801859CF3F6877AEC19D1DA289FFC301D* __this, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* ___0_container, String_t* ___1_name, RuntimeObject** ___2_property, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_tF0CBEE260E4459BD7FBD88642D10D13072A1733B* L_0 = __this->___m_PropertiesHash;
|
|
String_t* L_1 = ___1_name;
|
|
RuntimeObject** L_2 = ___2_property;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = Dictionary_2_TryGetValue_mEAEA64971DBFD9BF2B74962BE03DADB2A6E46990(L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__ctor_m664143BCBE736CBB716E37C4DC7CFEC21BB17D92_gshared (ContainerPropertyBag_1_t4B3135B801859CF3F6877AEC19D1DA289FFC301D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t514193F05FE01729A5ADF1CBD11F2A3282FEA464* L_0 = (List_1_t514193F05FE01729A5ADF1CBD11F2A3282FEA464*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
List_1__ctor_mDBE66BC49CFDC5057EAFD460E79D974E38E7E331(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
__this->___m_PropertiesList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesList), (void*)L_0);
|
|
Dictionary_2_tF0CBEE260E4459BD7FBD88642D10D13072A1733B* L_1 = (Dictionary_2_tF0CBEE260E4459BD7FBD88642D10D13072A1733B*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 5));
|
|
Dictionary_2__ctor_m60FF7F62FD19585DA0F4A01C46F9542AB59AF25E(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___m_PropertiesHash = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesHash), (void*)L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
PropertyBag_1__ctor_mE5031AC7F881DD8EC6FCCD8BFA1B2B36A7C5E6DE((PropertyBag_1_t0967321B2D6F146150A7805676EB01A1FD0E97B6*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__cctor_m62A3999B69852A0F63058595A6B07ED9277E2CC8_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = TypeTraits_IsContainer_m46D04F3E3219371CC5F133E2CC54BCA46FD72505(L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBFD0F59F9F38A92660652CA5BE172EFCA8501E47)), (RuntimeObject*)L_5, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContainerPropertyBag_1_TryGetProperty_m00318B749834EC80FDE21AC11873B3E35D133A70_gshared (ContainerPropertyBag_1_tA2A29BDB4DB4DD00EDAB85E6154345DEEC0BF63B* __this, RuntimeObject** ___0_container, String_t* ___1_name, RuntimeObject** ___2_property, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_tD654CA36EB61C368D46FEE82344A2850BBD293DC* L_0 = __this->___m_PropertiesHash;
|
|
String_t* L_1 = ___1_name;
|
|
RuntimeObject** L_2 = ___2_property;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = Dictionary_2_TryGetValue_mDFB16269445CB4F3A94F898E69BBDEB6FD95BD17(L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__ctor_m3377C4A2AFE52C17B429C1A35C2F2C9E953455AA_gshared (ContainerPropertyBag_1_tA2A29BDB4DB4DD00EDAB85E6154345DEEC0BF63B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t395DB400634B381F180F661D6F23047177C54A41* L_0 = (List_1_t395DB400634B381F180F661D6F23047177C54A41*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
List_1__ctor_mCE306BD23E19D2FF7F020FC38DC65439DF124DE2(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
__this->___m_PropertiesList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesList), (void*)L_0);
|
|
Dictionary_2_tD654CA36EB61C368D46FEE82344A2850BBD293DC* L_1 = (Dictionary_2_tD654CA36EB61C368D46FEE82344A2850BBD293DC*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 5));
|
|
Dictionary_2__ctor_m6CD99A454EA949E383DDF4EE0DDB5C785ACEE53F(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___m_PropertiesHash = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesHash), (void*)L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
PropertyBag_1__ctor_m608955616512B610EA4B2C927CAA4171BB5A33A2((PropertyBag_1_tE522EC0E4E4C916EBF192933D686DEFDD27B9474*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__cctor_m1A4899B3026AF2033A6FAFCED18D86F91C7610C4_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = TypeTraits_IsContainer_m46D04F3E3219371CC5F133E2CC54BCA46FD72505(L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBFD0F59F9F38A92660652CA5BE172EFCA8501E47)), (RuntimeObject*)L_5, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContainerPropertyBag_1_TryGetProperty_mECAE003330317A1393DBBEBE55AE826038A711DA_gshared (ContainerPropertyBag_1_t2A9DE8C991C6C2537259B466807EEEFC4B68B0E6* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* ___0_container, String_t* ___1_name, RuntimeObject** ___2_property, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_t493CD60A61DC7E34769F611A3B574105A00F7C8E* L_0 = __this->___m_PropertiesHash;
|
|
String_t* L_1 = ___1_name;
|
|
RuntimeObject** L_2 = ___2_property;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = Dictionary_2_TryGetValue_mF94B5FC48E46CA428793D23B166648548F877592(L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__ctor_m002B18E65D2DE825AC92248D478593AD1A3F524F_gshared (ContainerPropertyBag_1_t2A9DE8C991C6C2537259B466807EEEFC4B68B0E6* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_tF5A67096A0D68151D8E28B9AC51E2BEBA8BA6488* L_0 = (List_1_tF5A67096A0D68151D8E28B9AC51E2BEBA8BA6488*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
List_1__ctor_m0AC71C49E8DA47E34C175D32A2094779A7C22F81(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
__this->___m_PropertiesList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesList), (void*)L_0);
|
|
Dictionary_2_t493CD60A61DC7E34769F611A3B574105A00F7C8E* L_1 = (Dictionary_2_t493CD60A61DC7E34769F611A3B574105A00F7C8E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 5));
|
|
Dictionary_2__ctor_mB5F3C4E9EAC8145CDE8309911AF73572066BEC6F(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___m_PropertiesHash = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesHash), (void*)L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
PropertyBag_1__ctor_m4C94BDC6615CF3024236DCDC4B90837C6FC6714B((PropertyBag_1_t2F1387D95A1E9B93E66C397645BFB8BCD265219B*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__cctor_m89E97F62DD9B68DD806692C6081C59C15FF0E16E_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = TypeTraits_IsContainer_m46D04F3E3219371CC5F133E2CC54BCA46FD72505(L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBFD0F59F9F38A92660652CA5BE172EFCA8501E47)), (RuntimeObject*)L_5, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContainerPropertyBag_1_TryGetProperty_mCFA9B5D1F0C41B77FBFAC81C70362ED592FE3BC5_gshared (ContainerPropertyBag_1_t34F580FC14E2EF6488F9B8CEE5D00BE38DBC2496* __this, RectInt_t1744D10E1063135DA9D574F95205B98DAC600CB8* ___0_container, String_t* ___1_name, RuntimeObject** ___2_property, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_tB38AB04EAE4BF1A8AB4F3EB5C6D61C0BA1C63485* L_0 = __this->___m_PropertiesHash;
|
|
String_t* L_1 = ___1_name;
|
|
RuntimeObject** L_2 = ___2_property;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = Dictionary_2_TryGetValue_m3D3388DDE5287E71E1CE3601EF2DB32756F5A222(L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__ctor_mFDAE4DA91A1BCD387794384FABBE63CD54647DFB_gshared (ContainerPropertyBag_1_t34F580FC14E2EF6488F9B8CEE5D00BE38DBC2496* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t02FDA4992BFC534B37236850E63707788E0AE2AE* L_0 = (List_1_t02FDA4992BFC534B37236850E63707788E0AE2AE*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
List_1__ctor_m33B09E2B0D5F361C8213E5FB0D121A19AD7B5DE4(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
__this->___m_PropertiesList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesList), (void*)L_0);
|
|
Dictionary_2_tB38AB04EAE4BF1A8AB4F3EB5C6D61C0BA1C63485* L_1 = (Dictionary_2_tB38AB04EAE4BF1A8AB4F3EB5C6D61C0BA1C63485*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 5));
|
|
Dictionary_2__ctor_m530B9014AC61228DD2B5B29A6A29125C8216499A(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___m_PropertiesHash = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesHash), (void*)L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
PropertyBag_1__ctor_m3F999AFEEFD9FD5AE95D3BC287DEB25DC4AAF592((PropertyBag_1_tC24A0A7B21F69286D618A79A4F7CD6F8E9E64E46*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__cctor_m87EBB1E4369F528B03A95D09CDDD4748615ED9AE_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = TypeTraits_IsContainer_m46D04F3E3219371CC5F133E2CC54BCA46FD72505(L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBFD0F59F9F38A92660652CA5BE172EFCA8501E47)), (RuntimeObject*)L_5, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContainerPropertyBag_1_TryGetProperty_mF7AB9FB404AD7D1C99A618BEB41D9C5F6B3697F4_gshared (ContainerPropertyBag_1_tFC736A3382282864C67252047BC56B960AD3C486* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* ___0_container, String_t* ___1_name, RuntimeObject** ___2_property, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_tE037C9F1FF6B6E97DF0AE5A0BE4042375C5D9D8C* L_0 = __this->___m_PropertiesHash;
|
|
String_t* L_1 = ___1_name;
|
|
RuntimeObject** L_2 = ___2_property;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = Dictionary_2_TryGetValue_m36BF608F84557D9EB3E37C5BA9E8ABC3A453F221(L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__ctor_m48D10232A046CC68EF83CE5D3B5454C195078055_gshared (ContainerPropertyBag_1_tFC736A3382282864C67252047BC56B960AD3C486* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t5D909E7F131356377BE392FFE312172FA301EB67* L_0 = (List_1_t5D909E7F131356377BE392FFE312172FA301EB67*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
List_1__ctor_m511AAB7A5556C9351081708B257D32B8DF56C813(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
__this->___m_PropertiesList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesList), (void*)L_0);
|
|
Dictionary_2_tE037C9F1FF6B6E97DF0AE5A0BE4042375C5D9D8C* L_1 = (Dictionary_2_tE037C9F1FF6B6E97DF0AE5A0BE4042375C5D9D8C*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 5));
|
|
Dictionary_2__ctor_m1D4C6D51942DFF650A5B73371C3595CBEF1EA2F8(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___m_PropertiesHash = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesHash), (void*)L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
PropertyBag_1__ctor_m072C76EB04E5541CBEE68850C9E6156B54A106CC((PropertyBag_1_t1E23861777A25A773264A698434477DCE18B34CF*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__cctor_mFD0B0B16363700EB81551D8A5BD6E2CA8226CC1B_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = TypeTraits_IsContainer_m46D04F3E3219371CC5F133E2CC54BCA46FD72505(L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBFD0F59F9F38A92660652CA5BE172EFCA8501E47)), (RuntimeObject*)L_5, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContainerPropertyBag_1_TryGetProperty_mCFADDD2B47DD6AFC9DCD1EB177CD660E50346AC7_gshared (ContainerPropertyBag_1_t5E98E44A087C66C99B6B48FE49F35A9460817892* __this, Vector2Int_t69B2886EBAB732D9B880565E18E7568F3DE0CE6A* ___0_container, String_t* ___1_name, RuntimeObject** ___2_property, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_t4A4C489FCB5A50BCD97D454B320936FFB26B6259* L_0 = __this->___m_PropertiesHash;
|
|
String_t* L_1 = ___1_name;
|
|
RuntimeObject** L_2 = ___2_property;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = Dictionary_2_TryGetValue_m509508824AF3839BCD463D58FA0377C96458FD06(L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__ctor_m0D4393716F0234CD9550422C6CB0FCDAEE0376E4_gshared (ContainerPropertyBag_1_t5E98E44A087C66C99B6B48FE49F35A9460817892* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_tF7ED81D8CAE526E27D4579AA1E0D00A211BAE4FE* L_0 = (List_1_tF7ED81D8CAE526E27D4579AA1E0D00A211BAE4FE*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
List_1__ctor_m0E6487BF4CA4AC6A65BC5D3613BD0ADE34B733B5(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
__this->___m_PropertiesList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesList), (void*)L_0);
|
|
Dictionary_2_t4A4C489FCB5A50BCD97D454B320936FFB26B6259* L_1 = (Dictionary_2_t4A4C489FCB5A50BCD97D454B320936FFB26B6259*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 5));
|
|
Dictionary_2__ctor_m0DE9983A579D8D986E0284E05C8A97D89BCEC41B(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___m_PropertiesHash = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesHash), (void*)L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
PropertyBag_1__ctor_mAA213442673F9B9A5948AD7385D832A08475D93B((PropertyBag_1_tA16FBB091D74A21AC539D829F65E5E8FAF2DB075*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__cctor_mD27694102FE745E8F7862664DFFF7C1AD11D378F_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = TypeTraits_IsContainer_m46D04F3E3219371CC5F133E2CC54BCA46FD72505(L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBFD0F59F9F38A92660652CA5BE172EFCA8501E47)), (RuntimeObject*)L_5, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContainerPropertyBag_1_TryGetProperty_m09B90D6AD1887C2F21020F572201C9F079DE4FED_gshared (ContainerPropertyBag_1_tA7C51CF32C3F7B0B198B114B368B2E5BA498D33E* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* ___0_container, String_t* ___1_name, RuntimeObject** ___2_property, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_tAFF77A63BAC70A823CF7D433372A35F9A9FA53F9* L_0 = __this->___m_PropertiesHash;
|
|
String_t* L_1 = ___1_name;
|
|
RuntimeObject** L_2 = ___2_property;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = Dictionary_2_TryGetValue_m35330545804127349712DBF97F7E1B07E4500480(L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__ctor_mED3672BE63BBCAE82B5E328167D256B540E9C287_gshared (ContainerPropertyBag_1_tA7C51CF32C3F7B0B198B114B368B2E5BA498D33E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t097837D1E5E15D037E5CC2958A380C5BB39F6B54* L_0 = (List_1_t097837D1E5E15D037E5CC2958A380C5BB39F6B54*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
List_1__ctor_m252A7F64A1966550F6BD7E5A4DB8FA94339CC7DA(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
__this->___m_PropertiesList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesList), (void*)L_0);
|
|
Dictionary_2_tAFF77A63BAC70A823CF7D433372A35F9A9FA53F9* L_1 = (Dictionary_2_tAFF77A63BAC70A823CF7D433372A35F9A9FA53F9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 5));
|
|
Dictionary_2__ctor_m0C79D717773CD8AE25D6628CC683D56FFA1E9606(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___m_PropertiesHash = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesHash), (void*)L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
PropertyBag_1__ctor_mF2FC0A3F27C3D8D1F403D7433F4782CB01E4E6D4((PropertyBag_1_t91378217184AE0BD640D9A003EF2CB208071D593*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__cctor_mEE17B810616726BF0CC28108E4AAF4A20E6E2A2E_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = TypeTraits_IsContainer_m46D04F3E3219371CC5F133E2CC54BCA46FD72505(L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBFD0F59F9F38A92660652CA5BE172EFCA8501E47)), (RuntimeObject*)L_5, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContainerPropertyBag_1_TryGetProperty_mB09F0E37EC4B1A62AB81E7CBC06DEF9F87C61397_gshared (ContainerPropertyBag_1_tC5EF4ED9E953B090F0F1A7314A738165FB6277B8* __this, Vector3Int_t65CB06F557251D18A37BD71F3655BA836A357376* ___0_container, String_t* ___1_name, RuntimeObject** ___2_property, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_tF48CBAD539B087D7950015E9ACC37504C4F7F095* L_0 = __this->___m_PropertiesHash;
|
|
String_t* L_1 = ___1_name;
|
|
RuntimeObject** L_2 = ___2_property;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = Dictionary_2_TryGetValue_m20B8BF4BA904E10FB4272A01F7437412C13D4E46(L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__ctor_mB9D6850E283177CAED47EE19A760C168ADCCF35C_gshared (ContainerPropertyBag_1_tC5EF4ED9E953B090F0F1A7314A738165FB6277B8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t061B25A9A84AEF321FDDB1F001818B7F63981724* L_0 = (List_1_t061B25A9A84AEF321FDDB1F001818B7F63981724*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
List_1__ctor_mD109B5C7939A6327470D2893F6B8E788CFE99D32(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
__this->___m_PropertiesList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesList), (void*)L_0);
|
|
Dictionary_2_tF48CBAD539B087D7950015E9ACC37504C4F7F095* L_1 = (Dictionary_2_tF48CBAD539B087D7950015E9ACC37504C4F7F095*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 5));
|
|
Dictionary_2__ctor_mBF44F0A2F72B1C865BFE2E037BFCB7C1B10EFE99(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___m_PropertiesHash = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesHash), (void*)L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
PropertyBag_1__ctor_mD0545EB6A8F30FF94E8C8CE7AD6A4F0DF32CBE7C((PropertyBag_1_tDA117C10FEABA385803A90E976050FB2D270FAD2*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__cctor_mF32B98FF4DDB659506230EDB1395535DE7083E81_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = TypeTraits_IsContainer_m46D04F3E3219371CC5F133E2CC54BCA46FD72505(L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBFD0F59F9F38A92660652CA5BE172EFCA8501E47)), (RuntimeObject*)L_5, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContainerPropertyBag_1_TryGetProperty_m6DD6A9EE8935880BA0138FC2960B071108C556A4_gshared (ContainerPropertyBag_1_t827E6E22E54C7702E357022F57F04833A6FAF09E* __this, Vector4_t58B63D32F48C0DBF50DE2C60794C4676C80EDBE3* ___0_container, String_t* ___1_name, RuntimeObject** ___2_property, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_t4C7611B1B9A7003542D940F8505DCFF0186D9648* L_0 = __this->___m_PropertiesHash;
|
|
String_t* L_1 = ___1_name;
|
|
RuntimeObject** L_2 = ___2_property;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = Dictionary_2_TryGetValue_mCB142B637C6BA4EC38158CCAB573111F0F926FAF(L_0, L_1, L_2, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__ctor_mD88378C16AD1F8C2A20F3521D02DA3B6811B1FB5_gshared (ContainerPropertyBag_1_t827E6E22E54C7702E357022F57F04833A6FAF09E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t9F62F67493B4FDE523DD405881E159817B80CAC2* L_0 = (List_1_t9F62F67493B4FDE523DD405881E159817B80CAC2*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
List_1__ctor_mCF0315031D745EBA7C0CDEFDC3A6BC278B13D44B(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
__this->___m_PropertiesList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesList), (void*)L_0);
|
|
Dictionary_2_t4C7611B1B9A7003542D940F8505DCFF0186D9648* L_1 = (Dictionary_2_t4C7611B1B9A7003542D940F8505DCFF0186D9648*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 5));
|
|
Dictionary_2__ctor_m126690CDD3B2B23C96B1A67847ED1940DD64A010(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___m_PropertiesHash = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesHash), (void*)L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
PropertyBag_1__ctor_mB6FF3A98CDA8C851BC0FC108F95BF41644471439((PropertyBag_1_tD11940BE9DAD74F61B141A397F3D5722E7FF2601*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__cctor_m758379090941AC0A87C3AF46102D70E9ACEC0C1D_gshared (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Type_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(Type_t_il2cpp_TypeInfo_var);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
bool L_2;
|
|
L_2 = TypeTraits_IsContainer_m46D04F3E3219371CC5F133E2CC54BCA46FD72505(L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(InitializedTypeInfo(method->klass)->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Type_t_il2cpp_TypeInfo_var)));
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
String_t* L_6;
|
|
L_6 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBFD0F59F9F38A92660652CA5BE172EFCA8501E47)), (RuntimeObject*)L_5, NULL);
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_7 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_7, L_6, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, method);
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ContainerPropertyBag_1_TryGetProperty_m5717B2C61E21A1C4663B2FEDED95CEF8FEAC3C07_gshared (ContainerPropertyBag_1_t47684299E462BBF7DC930C28B27E8A8008478424* __this, Il2CppFullySharedGenericAny* ___0_container, String_t* ___1_name, RuntimeObject** ___2_property, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_t5FB44F403798E1529E205CBF14632F00AAC18879* L_0 = __this->___m_PropertiesHash;
|
|
String_t* L_1 = ___1_name;
|
|
RuntimeObject** L_2 = ___2_property;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = InvokerFuncInvoker2< bool, String_t*, RuntimeObject** >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)), il2cpp_rgctx_method(method->klass->rgctx_data, 8), L_0, L_1, L_2);
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContainerPropertyBag_1__ctor_m71147701A7053D1EECFB4581A7119F26B3822E14_gshared (ContainerPropertyBag_1_t47684299E462BBF7DC930C28B27E8A8008478424* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t8C03D59AE9CBDEDECDE563570171B47DCB063CF4* L_0 = (List_1_t8C03D59AE9CBDEDECDE563570171B47DCB063CF4*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 2));
|
|
(( void (*) (List_1_t8C03D59AE9CBDEDECDE563570171B47DCB063CF4*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 9)))(L_0, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
__this->___m_PropertiesList = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesList), (void*)L_0);
|
|
Dictionary_2_t5FB44F403798E1529E205CBF14632F00AAC18879* L_1 = (Dictionary_2_t5FB44F403798E1529E205CBF14632F00AAC18879*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->klass->rgctx_data, 5));
|
|
(( void (*) (Dictionary_2_t5FB44F403798E1529E205CBF14632F00AAC18879*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 10)))(L_1, il2cpp_rgctx_method(method->klass->rgctx_data, 10));
|
|
__this->___m_PropertiesHash = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertiesHash), (void*)L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->klass->rgctx_data, 12));
|
|
(( void (*) (PropertyBag_1_t74F4963AD6B656900B7CACFC37AC3CDDDF818409*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 11)))((PropertyBag_1_t74F4963AD6B656900B7CACFC37AC3CDDDF818409*)__this, il2cpp_rgctx_method(method->klass->rgctx_data, 11));
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContentHeightCacheInfo__ctor_mF2BB6598B1FEDCE079C61DBE32A2CCA1000648F2_gshared (ContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC* __this, float ___0_sum, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_sum;
|
|
__this->___sum = L_0;
|
|
int32_t L_1 = ___1_count;
|
|
__this->___count = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ContentHeightCacheInfo__ctor_mF2BB6598B1FEDCE079C61DBE32A2CCA1000648F2_AdjustorThunk (RuntimeObject* __this, float ___0_sum, int32_t ___1_count, const RuntimeMethod* method)
|
|
{
|
|
ContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ContentHeightCacheInfo_tA616347D46981FC5684B6268FC7035C431E99FBC*>(__this + _offset);
|
|
ContentHeightCacheInfo__ctor_mF2BB6598B1FEDCE079C61DBE32A2CCA1000648F2(_thisAdjusted, ___0_sum, ___1_count, method);
|
|
}
|
|
#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
|
|
void ContextCallback_1_Invoke_m45B0F1D7ED06A5423F2FE649CF9807A35E4CCFAC_Multicast(ContextCallback_1_t641F0181553019D1F6BFEAE7F9789631588EF81D* __this, Il2CppFullySharedGenericAny* ___0_state, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_array_size_t length = __this->___delegates->max_length;
|
|
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
ContextCallback_1_t641F0181553019D1F6BFEAE7F9789631588EF81D* currentDelegate = reinterpret_cast<ContextCallback_1_t641F0181553019D1F6BFEAE7F9789631588EF81D*>(delegatesToInvoke[i]);
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, Il2CppFullySharedGenericAny*, const RuntimeMethod*);
|
|
((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_state, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
|
|
}
|
|
}
|
|
void ContextCallback_1_Invoke_m45B0F1D7ED06A5423F2FE649CF9807A35E4CCFAC_OpenInst(ContextCallback_1_t641F0181553019D1F6BFEAE7F9789631588EF81D* __this, Il2CppFullySharedGenericAny* ___0_state, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_state);
|
|
typedef void (*FunctionPointerType) (Il2CppFullySharedGenericAny*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___method_ptr)(___0_state, method);
|
|
}
|
|
void ContextCallback_1_Invoke_m45B0F1D7ED06A5423F2FE649CF9807A35E4CCFAC_OpenStatic(ContextCallback_1_t641F0181553019D1F6BFEAE7F9789631588EF81D* __this, Il2CppFullySharedGenericAny* ___0_state, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (Il2CppFullySharedGenericAny*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___method_ptr)(___0_state, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextCallback_1__ctor_m14830D26CA54327F03918494C463D0CC2C5EB6A3_gshared (ContextCallback_1_t641F0181553019D1F6BFEAE7F9789631588EF81D* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
__this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
|
|
__this->___method = ___1_method;
|
|
__this->___m_target = ___0_object;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
|
|
int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
|
|
__this->___method_code = (intptr_t)__this;
|
|
if (MethodIsStatic((RuntimeMethod*)___1_method))
|
|
{
|
|
bool isOpen = parameterCount == 1;
|
|
if (isOpen)
|
|
__this->___invoke_impl = (intptr_t)&ContextCallback_1_Invoke_m45B0F1D7ED06A5423F2FE649CF9807A35E4CCFAC_OpenStatic;
|
|
else
|
|
{
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool isOpen = parameterCount == 0;
|
|
if (isOpen)
|
|
{
|
|
__this->___invoke_impl = (intptr_t)&ContextCallback_1_Invoke_m45B0F1D7ED06A5423F2FE649CF9807A35E4CCFAC_OpenInst;
|
|
}
|
|
else
|
|
{
|
|
if (___0_object == NULL)
|
|
il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
__this->___extra_arg = (intptr_t)&ContextCallback_1_Invoke_m45B0F1D7ED06A5423F2FE649CF9807A35E4CCFAC_Multicast;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContextCallback_1_Invoke_m45B0F1D7ED06A5423F2FE649CF9807A35E4CCFAC_gshared (ContextCallback_1_t641F0181553019D1F6BFEAE7F9789631588EF81D* __this, Il2CppFullySharedGenericAny* ___0_state, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, Il2CppFullySharedGenericAny*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_state, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
#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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_m373282F76A4588C44B069041ACF914E4141996BF_gshared (ContinuationResultTaskFromResultTask_2_t53DAF1E386BB83E85FBFA8178C1128E87C8BD88E* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_m4EA33CE4D77D99270E40B283265634B631FE2D82((Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_m59A18AD41CD509D63C08CFB6B0B2C74DBBE3CA1A_gshared (ContinuationResultTaskFromResultTask_2_t53DAF1E386BB83E85FBFA8178C1128E87C8BD88E* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* V_0 = NULL;
|
|
Func_2_t53C16EDB9A3E0F3470F3AFDC2589E59CC5AF63D5* V_1 = NULL;
|
|
Func_3_t741E34C10F6FE17B3BA3853E4763638628690208* V_2 = NULL;
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t4C228DE57804012969575431CFF12D57C875552D*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t4C228DE57804012969575431CFF12D57C875552D*)NULL);
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_t53C16EDB9A3E0F3470F3AFDC2589E59CC5AF63D5*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_t53C16EDB9A3E0F3470F3AFDC2589E59CC5AF63D5* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t53C16EDB9A3E0F3470F3AFDC2589E59CC5AF63D5* L_5 = V_1;
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_7;
|
|
L_7 = Func_2_Invoke_m0EF04754D1F37AD0EA83DD573E016B6F59E58E39_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
((Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*)__this)->___m_result = L_7;
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_t741E34C10F6FE17B3BA3853E4763638628690208*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_t741E34C10F6FE17B3BA3853E4763638628690208* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t741E34C10F6FE17B3BA3853E4763638628690208* L_10 = V_2;
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_13;
|
|
L_13 = Func_3_Invoke_mD7C77190AB6BFA9C12A606A23776E53DCD0A87EB_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
((Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*)__this)->___m_result = L_13;
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_m2C915D8D5F3E1548E3C1B4EC68C805DF46A56E48_gshared (ContinuationResultTaskFromResultTask_2_tADFF403C7660C29F8F9E43FCC385E4F673E3F888* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_m91C2EA31AA8F95E641D6F2CD69E69F40EE195620((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_m1497460F2BF294194F6959A98AA932D6805AB579_gshared (ContinuationResultTaskFromResultTask_2_tADFF403C7660C29F8F9E43FCC385E4F673E3F888* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* V_0 = NULL;
|
|
Func_2_tCAA612459A254A772A62B258A3DEF8F628BFFA14* V_1 = NULL;
|
|
Func_3_tF1E460056412D39AFBCC5042F0EA0552F8B64345* V_2 = NULL;
|
|
{
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*)NULL);
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_tCAA612459A254A772A62B258A3DEF8F628BFFA14*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_tCAA612459A254A772A62B258A3DEF8F628BFFA14* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tCAA612459A254A772A62B258A3DEF8F628BFFA14* L_5 = V_1;
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
RuntimeObject* L_7;
|
|
L_7 = Func_2_Invoke_mDF4D003FD6659916C80E93EC84573FF9114D3F88_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this)->___m_result = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this)->___m_result), (void*)L_7);
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_tF1E460056412D39AFBCC5042F0EA0552F8B64345*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_tF1E460056412D39AFBCC5042F0EA0552F8B64345* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_tF1E460056412D39AFBCC5042F0EA0552F8B64345* L_10 = V_2;
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_13;
|
|
L_13 = Func_3_Invoke_m9A18F216198A9686AD2C88A55F1CDCF13843AF26_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this)->___m_result = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this)->___m_result), (void*)L_13);
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_m0D736DC6A9F4525F3F85B36375CBACF72A75C375_gshared (ContinuationResultTaskFromResultTask_2_t17224214B46D78ABCBC46FD6BCD37FA917551637* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_m4EA33CE4D77D99270E40B283265634B631FE2D82((Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_mECDD96D861620AB892FFCAAFAD883D51433DBE10_gshared (ContinuationResultTaskFromResultTask_2_t17224214B46D78ABCBC46FD6BCD37FA917551637* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_0 = NULL;
|
|
Func_2_tD4DDFE1683E01166E2F8934282DC94BBDCD37DED* V_1 = NULL;
|
|
Func_3_t3C035C4481D7553088B1824393D0A937F0B017AB* V_2 = NULL;
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_tD4DDFE1683E01166E2F8934282DC94BBDCD37DED*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_tD4DDFE1683E01166E2F8934282DC94BBDCD37DED* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tD4DDFE1683E01166E2F8934282DC94BBDCD37DED* L_5 = V_1;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_7;
|
|
L_7 = Func_2_Invoke_mC310726FC26460E0A1DD3E5102309EE28245F1B7_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
((Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*)__this)->___m_result = L_7;
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_t3C035C4481D7553088B1824393D0A937F0B017AB*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_t3C035C4481D7553088B1824393D0A937F0B017AB* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t3C035C4481D7553088B1824393D0A937F0B017AB* L_10 = V_2;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_13;
|
|
L_13 = Func_3_Invoke_mBEBEF72C6C7D7F2EBD475E072E450D2FACBE8A88_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
((Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*)__this)->___m_result = L_13;
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_m46B5DA20F0E5DBE461879CBB74A894F9DFCE3FC3_gshared (ContinuationResultTaskFromResultTask_2_tB17BCD7CE5BA4BC24F46DCD294B05DA1BC0E17FB* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_m6027E209041DB4AF1EFA8C4E8CA5FF48E1860AB4((Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_m834CEDA752060115C44E6405F21768E2D5192271_gshared (ContinuationResultTaskFromResultTask_2_tB17BCD7CE5BA4BC24F46DCD294B05DA1BC0E17FB* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_0 = NULL;
|
|
Func_2_t710C9443E65A47F34F20273E119C67F86A4F6618* V_1 = NULL;
|
|
Func_3_t67613617ED6D0678EC039E4D97DC38B8049B72E4* V_2 = NULL;
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_t710C9443E65A47F34F20273E119C67F86A4F6618*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_t710C9443E65A47F34F20273E119C67F86A4F6618* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t710C9443E65A47F34F20273E119C67F86A4F6618* L_5 = V_1;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 L_7;
|
|
L_7 = Func_2_Invoke_mA769C11B612C91B80CEB20ECBA4DEDA8C4B7DCE0_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
((Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D*)__this)->___m_result = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D*)__this)->___m_result))->___Item2), (void*)NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_t67613617ED6D0678EC039E4D97DC38B8049B72E4*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_t67613617ED6D0678EC039E4D97DC38B8049B72E4* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t67613617ED6D0678EC039E4D97DC38B8049B72E4* L_10 = V_2;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 L_13;
|
|
L_13 = Func_3_Invoke_m946F1D94787430669A8051B17ABD0BA49E5CED0A_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
((Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D*)__this)->___m_result = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D*)__this)->___m_result))->___Item2), (void*)NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_m5A737C5C9CBF384C01D62FEC6008983DEB3049A8_gshared (ContinuationResultTaskFromResultTask_2_t52C3F61A352BB09AE509E43C63290A435C93C2C9* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_mA627F1796D0CC5F094107EE5561F7CAD50115378((Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_mD84BC177962928F9EA67FA7A54ACDE50B3ED537D_gshared (ContinuationResultTaskFromResultTask_2_t52C3F61A352BB09AE509E43C63290A435C93C2C9* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_0 = NULL;
|
|
Func_2_tF3F851D4A7EE63295D4A27756EE77F24346954BA* V_1 = NULL;
|
|
Func_3_tCB81839DD3418F2A0788EB43DA278B7D6693BEA7* V_2 = NULL;
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_tF3F851D4A7EE63295D4A27756EE77F24346954BA*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_tF3F851D4A7EE63295D4A27756EE77F24346954BA* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tF3F851D4A7EE63295D4A27756EE77F24346954BA* L_5 = V_1;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F L_7;
|
|
L_7 = Func_2_Invoke_mB1405D1F40473D3BCA7EBB04C4F6ED03E6E4C94D_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
((Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*)__this)->___m_result = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*)__this)->___m_result))->___Item1), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*)__this)->___m_result))->___Item2), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_tCB81839DD3418F2A0788EB43DA278B7D6693BEA7*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_tCB81839DD3418F2A0788EB43DA278B7D6693BEA7* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_tCB81839DD3418F2A0788EB43DA278B7D6693BEA7* L_10 = V_2;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F L_13;
|
|
L_13 = Func_3_Invoke_m73D63ABC4B0BEB920F269E09618E58742F83C8B2_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
((Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*)__this)->___m_result = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*)__this)->___m_result))->___Item1), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*)__this)->___m_result))->___Item2), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_mAF89494C1047FDACDC535DC256FA75C7CE1FA9BF_gshared (ContinuationResultTaskFromResultTask_2_t9B45F04B9CD22006B41DA806CDB29C6A534DB167* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_mF07DC249811270AA9A25EA15DC2DB5E73996F8E4((Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_m07C19EF6B318EE2860685278FD0A6B6A5D949428_gshared (ContinuationResultTaskFromResultTask_2_t9B45F04B9CD22006B41DA806CDB29C6A534DB167* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_0 = NULL;
|
|
Func_2_t9217EFFDF0F926C559DEA0624F254D87134FC073* V_1 = NULL;
|
|
Func_3_tC0A2388D48F4EB5BDED4835CBEA96A87B3D62D71* V_2 = NULL;
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_t9217EFFDF0F926C559DEA0624F254D87134FC073*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_t9217EFFDF0F926C559DEA0624F254D87134FC073* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t9217EFFDF0F926C559DEA0624F254D87134FC073* L_5 = V_1;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 L_7;
|
|
L_7 = Func_2_Invoke_mB1BC66FC59FB922A0F0256530681D400DE9F09DA_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
((Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*)__this)->___m_result = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*)__this)->___m_result))->___Item1), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*)__this)->___m_result))->___Item4), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*)__this)->___m_result))->___Item5), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_tC0A2388D48F4EB5BDED4835CBEA96A87B3D62D71*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_tC0A2388D48F4EB5BDED4835CBEA96A87B3D62D71* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_tC0A2388D48F4EB5BDED4835CBEA96A87B3D62D71* L_10 = V_2;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 L_13;
|
|
L_13 = Func_3_Invoke_mD2F735593002C1F9AD9F30836379F9F37AF6B862_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
((Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*)__this)->___m_result = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*)__this)->___m_result))->___Item1), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*)__this)->___m_result))->___Item4), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*)__this)->___m_result))->___Item5), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_m1FD0508ABB3FDC2A436161BF0DFF0435AB52D453_gshared (ContinuationResultTaskFromResultTask_2_t652B5F2AECBB5D4A5D91AE84280AA35C5C3B9AF3* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_mEBA33EAA50213858C739AEE13CB028F6563A585A((Task_1_t824317F4B958F7512E8F7300511752937A6C6043*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_m15D76A70C91FAA5B09E1EDE429A5D92AFA7EFA59_gshared (ContinuationResultTaskFromResultTask_2_t652B5F2AECBB5D4A5D91AE84280AA35C5C3B9AF3* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_0 = NULL;
|
|
Func_2_tC4EF69AA76D73F932F643A1A2F61B8E102C1E756* V_1 = NULL;
|
|
Func_3_tB0721508F3796CC22DD7A5D2D9D9697DC1E974D0* V_2 = NULL;
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_tC4EF69AA76D73F932F643A1A2F61B8E102C1E756*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_tC4EF69AA76D73F932F643A1A2F61B8E102C1E756* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tC4EF69AA76D73F932F643A1A2F61B8E102C1E756* L_5 = V_1;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = Func_2_Invoke_mF4D6E81932BC2F6FAE1777A07870466BF51519FA_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
((Task_1_t824317F4B958F7512E8F7300511752937A6C6043*)__this)->___m_result = L_7;
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_tB0721508F3796CC22DD7A5D2D9D9697DC1E974D0*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_tB0721508F3796CC22DD7A5D2D9D9697DC1E974D0* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_tB0721508F3796CC22DD7A5D2D9D9697DC1E974D0* L_10 = V_2;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
bool L_13;
|
|
L_13 = Func_3_Invoke_mAFD212C8BF2E79A8D9EFB92FA437978D10BA69CA_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
((Task_1_t824317F4B958F7512E8F7300511752937A6C6043*)__this)->___m_result = L_13;
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_mCC919E546A725DD964AE9299B09656D3C875CE8D_gshared (ContinuationResultTaskFromResultTask_2_tFE6AD08AC874472862D080DC4BA28201D1E54D17* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_m0BAB0D8F99D9B20D3AAA80352297D4E3D1A17287((Task_1_t4C228DE57804012969575431CFF12D57C875552D*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_m23AC2258FD3579413D7B2DB68C2E71F2EB2CD6F4_gshared (ContinuationResultTaskFromResultTask_2_tFE6AD08AC874472862D080DC4BA28201D1E54D17* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_0 = NULL;
|
|
Func_2_t4A7100D6CA55E0D5E840D600DD4C004E374EA0C4* V_1 = NULL;
|
|
Func_3_t7318E37306A270D9D4368630319FB5EAE41EE343* V_2 = NULL;
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_t4A7100D6CA55E0D5E840D600DD4C004E374EA0C4*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_t4A7100D6CA55E0D5E840D600DD4C004E374EA0C4* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t4A7100D6CA55E0D5E840D600DD4C004E374EA0C4* L_5 = V_1;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_7;
|
|
L_7 = Func_2_Invoke_mF9F470D68052113F127AD6AD8747CA732838D1E4_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
((Task_1_t4C228DE57804012969575431CFF12D57C875552D*)__this)->___m_result = L_7;
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_t7318E37306A270D9D4368630319FB5EAE41EE343*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_t7318E37306A270D9D4368630319FB5EAE41EE343* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t7318E37306A270D9D4368630319FB5EAE41EE343* L_10 = V_2;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
int32_t L_13;
|
|
L_13 = Func_3_Invoke_m6F05546FEABBA1BA8135AE536796E06B3C88A797_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
((Task_1_t4C228DE57804012969575431CFF12D57C875552D*)__this)->___m_result = L_13;
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_m089EF8A4DAF82C8337348FDA3B406B90165601B7_gshared (ContinuationResultTaskFromResultTask_2_tB0B2799B9613DDD6F77B6B5890525D78B07E6534* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_m4FD9E652E6AD25DE324F1D25484F2791ED1396D5((Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_m307238C841924E0880D5CAF4BC2034E8081F1FB8_gshared (ContinuationResultTaskFromResultTask_2_tB0B2799B9613DDD6F77B6B5890525D78B07E6534* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_0 = NULL;
|
|
Func_2_tF55433C2E934D2C7FCCC31245AE7E2731A7C04DA* V_1 = NULL;
|
|
Func_3_t4944E5E5F13CAC7D326C07B48FC1CB2E02818679* V_2 = NULL;
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_tF55433C2E934D2C7FCCC31245AE7E2731A7C04DA*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_tF55433C2E934D2C7FCCC31245AE7E2731A7C04DA* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tF55433C2E934D2C7FCCC31245AE7E2731A7C04DA* L_5 = V_1;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
int32_t L_7;
|
|
L_7 = Func_2_Invoke_m0BA4EB7177382E2E3D6170F97635C3260FA14313_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
((Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*)__this)->___m_result = L_7;
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_t4944E5E5F13CAC7D326C07B48FC1CB2E02818679*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_t4944E5E5F13CAC7D326C07B48FC1CB2E02818679* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t4944E5E5F13CAC7D326C07B48FC1CB2E02818679* L_10 = V_2;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
int32_t L_13;
|
|
L_13 = Func_3_Invoke_m2066573F1AEBEA7DDD98F13C01A7B7E9B2DCFDED_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
((Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*)__this)->___m_result = L_13;
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_m5DF220241EAC9FBFE099AFDEF663D7998B943F5D_gshared (ContinuationResultTaskFromResultTask_2_tFD8B2EC4EB768D499DCB7A56A0CC8BEBB09E030C* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_m7038457A44B6D3E9B5205B8FFC6AB4F469B476E9((Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_m60D4BC9E984BC49177FC245548849FB60EBA492E_gshared (ContinuationResultTaskFromResultTask_2_tFD8B2EC4EB768D499DCB7A56A0CC8BEBB09E030C* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_0 = NULL;
|
|
Func_2_t14F0C1442EA414868F293290E263005881E270CD* V_1 = NULL;
|
|
Func_3_t6BFD0508E30AF0D3CFA47658967899EDB15F686B* V_2 = NULL;
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_t14F0C1442EA414868F293290E263005881E270CD*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_t14F0C1442EA414868F293290E263005881E270CD* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t14F0C1442EA414868F293290E263005881E270CD* L_5 = V_1;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
int64_t L_7;
|
|
L_7 = Func_2_Invoke_m119EA919E4FDAE96EC0AC475685A7DE38A1218A3_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
((Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F*)__this)->___m_result = L_7;
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_t6BFD0508E30AF0D3CFA47658967899EDB15F686B*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_t6BFD0508E30AF0D3CFA47658967899EDB15F686B* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t6BFD0508E30AF0D3CFA47658967899EDB15F686B* L_10 = V_2;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
int64_t L_13;
|
|
L_13 = Func_3_Invoke_mE3B76087ED5100E50F342BC476E508D80F675B69_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
((Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F*)__this)->___m_result = L_13;
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_m8AAFAF50172852D0184F66CD79A359F4C0232681_gshared (ContinuationResultTaskFromResultTask_2_tE241885AF8BB892C4B06A3EFCF4380AAACE17582* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_m91C2EA31AA8F95E641D6F2CD69E69F40EE195620((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_m4C7D548E304D858FD9ED65D9D67C14659FF8CF1D_gshared (ContinuationResultTaskFromResultTask_2_tE241885AF8BB892C4B06A3EFCF4380AAACE17582* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_0 = NULL;
|
|
Func_2_t374ECF90050F953CFA1EB9E9CE02A9C76AC292B2* V_1 = NULL;
|
|
Func_3_t0E081CDB7B5E8262004CBC882A738B3951375D06* V_2 = NULL;
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_t374ECF90050F953CFA1EB9E9CE02A9C76AC292B2*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_t374ECF90050F953CFA1EB9E9CE02A9C76AC292B2* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t374ECF90050F953CFA1EB9E9CE02A9C76AC292B2* L_5 = V_1;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
RuntimeObject* L_7;
|
|
L_7 = Func_2_Invoke_m15FA1AB01B7C5A645157A76BD36837CC17F71461_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this)->___m_result = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this)->___m_result), (void*)L_7);
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_t0E081CDB7B5E8262004CBC882A738B3951375D06*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_t0E081CDB7B5E8262004CBC882A738B3951375D06* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t0E081CDB7B5E8262004CBC882A738B3951375D06* L_10 = V_2;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_13;
|
|
L_13 = Func_3_Invoke_m9F34FCA27280E6F6D10A501025E298C685BB4200_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this)->___m_result = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this)->___m_result), (void*)L_13);
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_mAAB32FE7D8389632E677799E406A1808B2D4A5B5_gshared (ContinuationResultTaskFromResultTask_2_t6EC4E1B1A38AA828A716EBE2ACA0DAD4D4620740* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_m5CFF1880591CBC0CB4FB6791AD761CF233512B78((Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_m29B7A327E44119BE0C0A986C6F05DE18F160EC8F_gshared (ContinuationResultTaskFromResultTask_2_t6EC4E1B1A38AA828A716EBE2ACA0DAD4D4620740* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_0 = NULL;
|
|
Func_2_t1AD23BAD40F98053E72168B8ECBE30D235D80AA7* V_1 = NULL;
|
|
Func_3_tD95F3399CA13499EB2DAC0BFE6F4632D70E79620* V_2 = NULL;
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_t1AD23BAD40F98053E72168B8ECBE30D235D80AA7*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_t1AD23BAD40F98053E72168B8ECBE30D235D80AA7* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t1AD23BAD40F98053E72168B8ECBE30D235D80AA7* L_5 = V_1;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A L_7;
|
|
L_7 = Func_2_Invoke_m7982523179341751777995833964B1DC094896CB_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
((Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F*)__this)->___m_result = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F*)__this)->___m_result))->___m_Operation), (void*)NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_tD95F3399CA13499EB2DAC0BFE6F4632D70E79620*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_tD95F3399CA13499EB2DAC0BFE6F4632D70E79620* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_tD95F3399CA13499EB2DAC0BFE6F4632D70E79620* L_10 = V_2;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A L_13;
|
|
L_13 = Func_3_Invoke_m859DB37968A0CDDCDD9FDEEAF56BF9A3563449C5_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
((Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F*)__this)->___m_result = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&((Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F*)__this)->___m_result))->___m_Operation), (void*)NULL);
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_m9D4E806FF011840137764294A6681D03115B1034_gshared (ContinuationResultTaskFromResultTask_2_t34E6D9F8AC9E351A8A1C38A6FB53DE6A2C0EC13D* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_m8D5C7467696747206A78F279D69BF1A8A1EA1BD8((Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_mA3D4FE6617B55F3A2E87B17653371712501D3FA5_gshared (ContinuationResultTaskFromResultTask_2_t34E6D9F8AC9E351A8A1C38A6FB53DE6A2C0EC13D* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_0 = NULL;
|
|
Func_2_t79586ED298818483600EFEA82001DCE9C509204B* V_1 = NULL;
|
|
Func_3_t22D2883D2955083AC7B0ACF58C1BFCF6C149341D* V_2 = NULL;
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_t79586ED298818483600EFEA82001DCE9C509204B*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_t79586ED298818483600EFEA82001DCE9C509204B* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t79586ED298818483600EFEA82001DCE9C509204B* L_5 = V_1;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC L_7;
|
|
L_7 = Func_2_Invoke_m995C346676D556F0214ADC09A7D85B65843A0603_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
((Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*)__this)->___m_result = L_7;
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_t22D2883D2955083AC7B0ACF58C1BFCF6C149341D*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_t22D2883D2955083AC7B0ACF58C1BFCF6C149341D* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t22D2883D2955083AC7B0ACF58C1BFCF6C149341D* L_10 = V_2;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC L_13;
|
|
L_13 = Func_3_Invoke_mC3A71B687F078A0C67FE4CDD47D99250208DC4DF_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 9));
|
|
((Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*)__this)->___m_result = L_13;
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2__ctor_m2EC964803376352722195A0445FC215E7D1AE01C_gshared (ContinuationResultTaskFromResultTask_2_t3FDCFF62536C178D13893343B38422469380A832* __this, Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
(( void (*) (Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*, Delegate_t*, RuntimeObject*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, int32_t, int32_t, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_7 = ___0_antecedent;
|
|
il2cpp_codegen_write_instance_field_data<Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*>(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 3),0), L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromResultTask_2_InnerInvoke_m79A16999D3F67AFB9EFC2220DEC1FF4A5B682236_gshared (ContinuationResultTaskFromResultTask_2_t3FDCFF62536C178D13893343B38422469380A832* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TResult_tA5BAC7DE6F01FF56A5FE61253F9D049B24FEF025 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6));
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_TResult_tA5BAC7DE6F01FF56A5FE61253F9D049B24FEF025);
|
|
const Il2CppFullySharedGenericAny L_13 = L_7;
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* V_0 = NULL;
|
|
Func_2_tCEEA1029036C146011A9093868E254F314AB661E* V_1 = NULL;
|
|
Func_3_tB5711B7F2A432B77A744459F7B51F7535CEEC8F9* V_2 = NULL;
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_0 = *(Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 3),0));
|
|
V_0 = L_0;
|
|
il2cpp_codegen_write_instance_field_data<Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*>(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 3),0), (Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*)NULL);
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_tCEEA1029036C146011A9093868E254F314AB661E*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Func_2_tCEEA1029036C146011A9093868E254F314AB661E* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tCEEA1029036C146011A9093868E254F314AB661E* L_5 = V_1;
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
InvokerActionInvoker2< Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)), il2cpp_rgctx_method(method->klass->rgctx_data, 5), L_5, L_6, (Il2CppFullySharedGenericAny*)L_7);
|
|
il2cpp_codegen_write_instance_field_data(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 7),0), L_7, SizeOf_TResult_tA5BAC7DE6F01FF56A5FE61253F9D049B24FEF025);
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_tB5711B7F2A432B77A744459F7B51F7535CEEC8F9*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 8)));
|
|
Func_3_tB5711B7F2A432B77A744459F7B51F7535CEEC8F9* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_tB5711B7F2A432B77A744459F7B51F7535CEEC8F9* L_10 = V_2;
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
InvokerActionInvoker3< Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*, RuntimeObject*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 9)), il2cpp_rgctx_method(method->klass->rgctx_data, 9), L_10, L_11, L_12, (Il2CppFullySharedGenericAny*)L_13);
|
|
il2cpp_codegen_write_instance_field_data(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 7),0), L_13, SizeOf_TResult_tA5BAC7DE6F01FF56A5FE61253F9D049B24FEF025);
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromTask_1__ctor_m826403F61C0A479D12E8507A3868F99AF373A193_gshared (ContinuationResultTaskFromTask_1_t218AAB2C3D3EBC8D3DCD7D59E15B9144ACF5CDB4* __this, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task_1__ctor_m91C2EA31AA8F95E641D6F2CD69E69F40EE195620((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromTask_1_InnerInvoke_m792BA9D3764B8C783E1E87BD9D2AF39B5F78DABC_gshared (ContinuationResultTaskFromTask_1_t218AAB2C3D3EBC8D3DCD7D59E15B9144ACF5CDB4* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* V_0 = NULL;
|
|
Func_2_t771FE8EE731C9D8BA2456DA5169FA459ED5D38D3* V_1 = NULL;
|
|
Func_3_tF6961E555C9FB4ED507E9C2DBFF6165C17476260* V_2 = NULL;
|
|
{
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)NULL);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_1 = V_0;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE(L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_t771FE8EE731C9D8BA2456DA5169FA459ED5D38D3*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 3)));
|
|
Func_2_t771FE8EE731C9D8BA2456DA5169FA459ED5D38D3* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_t771FE8EE731C9D8BA2456DA5169FA459ED5D38D3* L_5 = V_1;
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
RuntimeObject* L_7;
|
|
L_7 = Func_2_Invoke_mC6F99B45D651B6D87983D4476DBDDCD2F5B01FDC_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 4));
|
|
((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this)->___m_result = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this)->___m_result), (void*)L_7);
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_tF6961E555C9FB4ED507E9C2DBFF6165C17476260*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 7)));
|
|
Func_3_tF6961E555C9FB4ED507E9C2DBFF6165C17476260* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_tF6961E555C9FB4ED507E9C2DBFF6165C17476260* L_10 = V_2;
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_13;
|
|
L_13 = Func_3_Invoke_mAC123F7F500646692FA0BAFAC59729A0C3058820_inline(L_10, L_11, L_12, il2cpp_rgctx_method(method->klass->rgctx_data, 8));
|
|
((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this)->___m_result = L_13;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)__this)->___m_result), (void*)L_13);
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromTask_1__ctor_mD05B109C6A1A02C9282FA6AD12598CC22046E2AC_gshared (ContinuationResultTaskFromTask_1_t1976F69FEC571EFB163944A4437C69446E2BECB3* __this, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* ___0_antecedent, Delegate_t* ___1_function, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_function;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
(( void (*) (Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*, Delegate_t*, RuntimeObject*, Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED, int32_t, int32_t, TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 0)))((Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, il2cpp_rgctx_method(method->klass->rgctx_data, 0));
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_7 = ___0_antecedent;
|
|
il2cpp_codegen_write_instance_field_data<Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*>(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2),0), L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationResultTaskFromTask_1_InnerInvoke_mBF8191ACF40C39DF129907F7CF32DF2CAE7FD73E_gshared (ContinuationResultTaskFromTask_1_t1976F69FEC571EFB163944A4437C69446E2BECB3* __this, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TResult_tC98C8D3AE8AA736AE7B5B115C68224015B33973B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_TResult_tC98C8D3AE8AA736AE7B5B115C68224015B33973B);
|
|
const Il2CppFullySharedGenericAny L_13 = L_7;
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* V_0 = NULL;
|
|
Func_2_tC80EBD402669FA7B2BD1805B8BCE9575CFCA7E22* V_1 = NULL;
|
|
Func_3_t01CB5BB0F8B9B9E6887C0D062E05CA499BA73A3B* V_2 = NULL;
|
|
{
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_0 = *(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572**)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2),0));
|
|
V_0 = L_0;
|
|
il2cpp_codegen_write_instance_field_data<Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*>(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 2),0), (Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)NULL);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_1 = V_0;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE(L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Func_2_tC80EBD402669FA7B2BD1805B8BCE9575CFCA7E22*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 3)));
|
|
Func_2_tC80EBD402669FA7B2BD1805B8BCE9575CFCA7E22* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
Func_2_tC80EBD402669FA7B2BD1805B8BCE9575CFCA7E22* L_5 = V_1;
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
InvokerActionInvoker2< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 4)), il2cpp_rgctx_method(method->klass->rgctx_data, 4), L_5, L_6, (Il2CppFullySharedGenericAny*)L_7);
|
|
il2cpp_codegen_write_instance_field_data(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6),0), L_7, SizeOf_TResult_tC98C8D3AE8AA736AE7B5B115C68224015B33973B);
|
|
return;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Delegate_t* L_8 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Func_3_t01CB5BB0F8B9B9E6887C0D062E05CA499BA73A3B*)IsInst((RuntimeObject*)L_8, il2cpp_rgctx_data(method->klass->rgctx_data, 7)));
|
|
Func_3_t01CB5BB0F8B9B9E6887C0D062E05CA499BA73A3B* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0055;
|
|
}
|
|
}
|
|
{
|
|
Func_3_t01CB5BB0F8B9B9E6887C0D062E05CA499BA73A3B* L_10 = V_2;
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_11 = V_0;
|
|
RuntimeObject* L_12 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_10);
|
|
InvokerActionInvoker3< Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*, RuntimeObject*, Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 8)), il2cpp_rgctx_method(method->klass->rgctx_data, 8), L_10, L_11, L_12, (Il2CppFullySharedGenericAny*)L_13);
|
|
il2cpp_codegen_write_instance_field_data(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(method->klass->rgctx_data, 6),0), L_13, SizeOf_TResult_tC98C8D3AE8AA736AE7B5B115C68224015B33973B);
|
|
return;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1__ctor_mA9E582D8C2CBAF92EC3F33877BC7C9DBFB66AE35_gshared (ContinuationTaskFromResultTask_1_t21D717C4A94ED8DF069846D2343999C1C95F9849* __this, Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* ___0_antecedent, Delegate_t* ___1_action, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_action;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task__ctor_m5B0CC976AA85C96DBBDBFCE32829D1A2DC66941D((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, NULL);
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1_InnerInvoke_m5CBBAB803698BCC06D7751E49FEE2149AAE85AEE_gshared (ContinuationTaskFromResultTask_1_t21D717C4A94ED8DF069846D2343999C1C95F9849* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* V_0 = NULL;
|
|
Action_1_tE7E60800BAB8D8D90AE806130B19787F3CD867DC* V_1 = NULL;
|
|
Action_2_t12B97C2411B381417D267317B83796945763B77F* V_2 = NULL;
|
|
{
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7*)NULL);
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Action_1_tE7E60800BAB8D8D90AE806130B19787F3CD867DC*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 2)));
|
|
Action_1_tE7E60800BAB8D8D90AE806130B19787F3CD867DC* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Action_1_tE7E60800BAB8D8D90AE806130B19787F3CD867DC* L_5 = V_1;
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_m712357D4D07C4936EACDE8DCEF8D1DB9E80800AF_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Delegate_t* L_7 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Action_2_t12B97C2411B381417D267317B83796945763B77F*)IsInst((RuntimeObject*)L_7, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Action_2_t12B97C2411B381417D267317B83796945763B77F* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Action_2_t12B97C2411B381417D267317B83796945763B77F* L_9 = V_2;
|
|
Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* L_10 = V_0;
|
|
RuntimeObject* L_11 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_9);
|
|
Action_2_Invoke_mFCB257D834D427F72703896580AC92E727ACF512_inline(L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1__ctor_m725C3D4E7A9D7339A003CB8D80704BC5F0506F41_gshared (ContinuationTaskFromResultTask_1_tC87576577E47D9155E48550F3FF98B7BE4578ABF* __this, Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* ___0_antecedent, Delegate_t* ___1_action, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_action;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task__ctor_m5B0CC976AA85C96DBBDBFCE32829D1A2DC66941D((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, NULL);
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1_InnerInvoke_m424C675092981E21636747B6674988443E802D4B_gshared (ContinuationTaskFromResultTask_1_tC87576577E47D9155E48550F3FF98B7BE4578ABF* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* V_0 = NULL;
|
|
Action_1_tCC3B5679C4B7925785C6055A266DE1D9E1220607* V_1 = NULL;
|
|
Action_2_tB323E678D9134E8D74D87649A85A082FF718934E* V_2 = NULL;
|
|
{
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D*)NULL);
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Action_1_tCC3B5679C4B7925785C6055A266DE1D9E1220607*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 2)));
|
|
Action_1_tCC3B5679C4B7925785C6055A266DE1D9E1220607* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Action_1_tCC3B5679C4B7925785C6055A266DE1D9E1220607* L_5 = V_1;
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_m0C5A865E0D664E4E2FAB1498B4103EA11F63FE15_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Delegate_t* L_7 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Action_2_tB323E678D9134E8D74D87649A85A082FF718934E*)IsInst((RuntimeObject*)L_7, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Action_2_tB323E678D9134E8D74D87649A85A082FF718934E* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Action_2_tB323E678D9134E8D74D87649A85A082FF718934E* L_9 = V_2;
|
|
Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* L_10 = V_0;
|
|
RuntimeObject* L_11 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_9);
|
|
Action_2_Invoke_m33BB24AD90037EE07C4FE528898BD9C308CB7A2A_inline(L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1__ctor_m7A918B4405E7CEA4839F664B054515D7AACCFD7C_gshared (ContinuationTaskFromResultTask_1_t9E3D090DA14C151A2E9ADE43FB29EC11D4FAF37E* __this, Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* ___0_antecedent, Delegate_t* ___1_action, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_action;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task__ctor_m5B0CC976AA85C96DBBDBFCE32829D1A2DC66941D((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, NULL);
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1_InnerInvoke_mA43E3F65960824EAB463E38AE721683CE8506DB6_gshared (ContinuationTaskFromResultTask_1_t9E3D090DA14C151A2E9ADE43FB29EC11D4FAF37E* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* V_0 = NULL;
|
|
Action_1_t55BF2E340CAEB91E47B90E3EFF59120EDBDCC98D* V_1 = NULL;
|
|
Action_2_t58329FB9FD988D2BA8B903095C0571509D45FDBF* V_2 = NULL;
|
|
{
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C*)NULL);
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Action_1_t55BF2E340CAEB91E47B90E3EFF59120EDBDCC98D*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 2)));
|
|
Action_1_t55BF2E340CAEB91E47B90E3EFF59120EDBDCC98D* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Action_1_t55BF2E340CAEB91E47B90E3EFF59120EDBDCC98D* L_5 = V_1;
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_mAAA17B09BEC7461D75C6E7B5955972F7579E8381_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Delegate_t* L_7 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Action_2_t58329FB9FD988D2BA8B903095C0571509D45FDBF*)IsInst((RuntimeObject*)L_7, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Action_2_t58329FB9FD988D2BA8B903095C0571509D45FDBF* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Action_2_t58329FB9FD988D2BA8B903095C0571509D45FDBF* L_9 = V_2;
|
|
Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* L_10 = V_0;
|
|
RuntimeObject* L_11 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_9);
|
|
Action_2_Invoke_m6769F46067EB59472DC4EE100895A7C63016AAA7_inline(L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1__ctor_m104B389C2B0B282246B24CF89C2BB20BC2567182_gshared (ContinuationTaskFromResultTask_1_t5B4CE099E4FA2F6075C238E32EDA472394DF8366* __this, Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* ___0_antecedent, Delegate_t* ___1_action, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_action;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task__ctor_m5B0CC976AA85C96DBBDBFCE32829D1A2DC66941D((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, NULL);
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1_InnerInvoke_mDE805C6F032E7C0D53BDE4ACBF2D96A1996CADBF_gshared (ContinuationTaskFromResultTask_1_t5B4CE099E4FA2F6075C238E32EDA472394DF8366* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* V_0 = NULL;
|
|
Action_1_tC00AB03D2E40EC53D13387EBDF0DBD1FBCA6F123* V_1 = NULL;
|
|
Action_2_t0997F02B602DB9E76CB2F8B8E9962030CCE2D59C* V_2 = NULL;
|
|
{
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A*)NULL);
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Action_1_tC00AB03D2E40EC53D13387EBDF0DBD1FBCA6F123*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 2)));
|
|
Action_1_tC00AB03D2E40EC53D13387EBDF0DBD1FBCA6F123* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Action_1_tC00AB03D2E40EC53D13387EBDF0DBD1FBCA6F123* L_5 = V_1;
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_mC262011A01D46253CEDCF9E3A167F036692A53C2_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Delegate_t* L_7 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Action_2_t0997F02B602DB9E76CB2F8B8E9962030CCE2D59C*)IsInst((RuntimeObject*)L_7, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Action_2_t0997F02B602DB9E76CB2F8B8E9962030CCE2D59C* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Action_2_t0997F02B602DB9E76CB2F8B8E9962030CCE2D59C* L_9 = V_2;
|
|
Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* L_10 = V_0;
|
|
RuntimeObject* L_11 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_9);
|
|
Action_2_Invoke_m6740AD6883D3A3296F1B15F7BF50439DBB1A0ABC_inline(L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1__ctor_m7490ED4FED92C7C58EBC6BE7879772DA002C0D76_gshared (ContinuationTaskFromResultTask_1_tAE0D398C6A55EAAA6B98F6A654178EB8C7FAEC39* __this, Task_1_t824317F4B958F7512E8F7300511752937A6C6043* ___0_antecedent, Delegate_t* ___1_action, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_action;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task__ctor_m5B0CC976AA85C96DBBDBFCE32829D1A2DC66941D((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, NULL);
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1_InnerInvoke_mBF71CDCF146D9878852850F7179B77A4F6A52D63_gshared (ContinuationTaskFromResultTask_1_tAE0D398C6A55EAAA6B98F6A654178EB8C7FAEC39* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* V_0 = NULL;
|
|
Action_1_t12D515BBBDB69A29DC0C4812555D0A8A51D6B856* V_1 = NULL;
|
|
Action_2_tB24338D0D12EC5B856C3E6331A8CBF67693F2968* V_2 = NULL;
|
|
{
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t824317F4B958F7512E8F7300511752937A6C6043*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t824317F4B958F7512E8F7300511752937A6C6043*)NULL);
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Action_1_t12D515BBBDB69A29DC0C4812555D0A8A51D6B856*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 2)));
|
|
Action_1_t12D515BBBDB69A29DC0C4812555D0A8A51D6B856* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Action_1_t12D515BBBDB69A29DC0C4812555D0A8A51D6B856* L_5 = V_1;
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_m0B4352C262325B25DA496C092BDF7E43BDB71BA0_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Delegate_t* L_7 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Action_2_tB24338D0D12EC5B856C3E6331A8CBF67693F2968*)IsInst((RuntimeObject*)L_7, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Action_2_tB24338D0D12EC5B856C3E6331A8CBF67693F2968* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Action_2_tB24338D0D12EC5B856C3E6331A8CBF67693F2968* L_9 = V_2;
|
|
Task_1_t824317F4B958F7512E8F7300511752937A6C6043* L_10 = V_0;
|
|
RuntimeObject* L_11 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_9);
|
|
Action_2_Invoke_m317C459C005A786A542A8A5F643E969845472A13_inline(L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1__ctor_m9AB5C9DE7CCE9BF5454248B0945B737E518D7C26_gshared (ContinuationTaskFromResultTask_1_t3ED26B5DC64622CAD8CCE4544E6F7CE63023AA96* __this, Task_1_t4C228DE57804012969575431CFF12D57C875552D* ___0_antecedent, Delegate_t* ___1_action, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_action;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task__ctor_m5B0CC976AA85C96DBBDBFCE32829D1A2DC66941D((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, NULL);
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1_InnerInvoke_m318EC4E31E2CE5A75B7B7716576D6DC0A45177B4_gshared (ContinuationTaskFromResultTask_1_t3ED26B5DC64622CAD8CCE4544E6F7CE63023AA96* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* V_0 = NULL;
|
|
Action_1_tD921DD4207843C7FA208DF2A04B64A7EC6EE90F1* V_1 = NULL;
|
|
Action_2_tAC9CD6807BFD5D7CA53A98BD1CA72DC380606690* V_2 = NULL;
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t4C228DE57804012969575431CFF12D57C875552D*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t4C228DE57804012969575431CFF12D57C875552D*)NULL);
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Action_1_tD921DD4207843C7FA208DF2A04B64A7EC6EE90F1*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 2)));
|
|
Action_1_tD921DD4207843C7FA208DF2A04B64A7EC6EE90F1* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Action_1_tD921DD4207843C7FA208DF2A04B64A7EC6EE90F1* L_5 = V_1;
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_m30F8D4CC797DD1889B4BEAA4E825516F972174EB_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Delegate_t* L_7 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Action_2_tAC9CD6807BFD5D7CA53A98BD1CA72DC380606690*)IsInst((RuntimeObject*)L_7, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Action_2_tAC9CD6807BFD5D7CA53A98BD1CA72DC380606690* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Action_2_tAC9CD6807BFD5D7CA53A98BD1CA72DC380606690* L_9 = V_2;
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_10 = V_0;
|
|
RuntimeObject* L_11 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_9);
|
|
Action_2_Invoke_m58E8A057759E00DC7C256A81A80DB7F196A2EEB0_inline(L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1__ctor_m3C893763D3D8F9192ACE7F34D7BB75DBB90881AA_gshared (ContinuationTaskFromResultTask_1_tECDC5865BE337E90C43B9DAEC238B4AEE516C9D8* __this, Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* ___0_antecedent, Delegate_t* ___1_action, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_action;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task__ctor_m5B0CC976AA85C96DBBDBFCE32829D1A2DC66941D((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, NULL);
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1_InnerInvoke_m2AA414CA274A5407B37E48CF8E750C2E26D314CE_gshared (ContinuationTaskFromResultTask_1_tECDC5865BE337E90C43B9DAEC238B4AEE516C9D8* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* V_0 = NULL;
|
|
Action_1_tC3BD22662CBF7BCA7CF101E25DD9C3BC0C8058B4* V_1 = NULL;
|
|
Action_2_t134192076C48EB6DAB17640388597B62F563A686* V_2 = NULL;
|
|
{
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB*)NULL);
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Action_1_tC3BD22662CBF7BCA7CF101E25DD9C3BC0C8058B4*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 2)));
|
|
Action_1_tC3BD22662CBF7BCA7CF101E25DD9C3BC0C8058B4* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Action_1_tC3BD22662CBF7BCA7CF101E25DD9C3BC0C8058B4* L_5 = V_1;
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_mC826BD07A1768B3B2222D43ACC12F0BBC49ABCCD_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Delegate_t* L_7 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Action_2_t134192076C48EB6DAB17640388597B62F563A686*)IsInst((RuntimeObject*)L_7, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Action_2_t134192076C48EB6DAB17640388597B62F563A686* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Action_2_t134192076C48EB6DAB17640388597B62F563A686* L_9 = V_2;
|
|
Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* L_10 = V_0;
|
|
RuntimeObject* L_11 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_9);
|
|
Action_2_Invoke_mCE279D2999E8B43CEA23D3DE469745D5A8704296_inline(L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1__ctor_m2FAFB2A564AA8D0831322D5F32D91BC3F350C5DC_gshared (ContinuationTaskFromResultTask_1_t6FB63BAE2DF893266CE75A70BC8CF666DF2C8B99* __this, Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* ___0_antecedent, Delegate_t* ___1_action, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_action;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task__ctor_m5B0CC976AA85C96DBBDBFCE32829D1A2DC66941D((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, NULL);
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1_InnerInvoke_m9AE24401ED9147C9EDB59E3265D77D16596A3264_gshared (ContinuationTaskFromResultTask_1_t6FB63BAE2DF893266CE75A70BC8CF666DF2C8B99* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* V_0 = NULL;
|
|
Action_1_t14B26BAC2002B527764811C43BAEC429C3B25446* V_1 = NULL;
|
|
Action_2_t7599F1A874E645E7131D6D33F960155F7DBB019E* V_2 = NULL;
|
|
{
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F*)NULL);
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Action_1_t14B26BAC2002B527764811C43BAEC429C3B25446*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 2)));
|
|
Action_1_t14B26BAC2002B527764811C43BAEC429C3B25446* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Action_1_t14B26BAC2002B527764811C43BAEC429C3B25446* L_5 = V_1;
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_m532B5A9C3A0C5EC796BB502B9757B2CC42A56333_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Delegate_t* L_7 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Action_2_t7599F1A874E645E7131D6D33F960155F7DBB019E*)IsInst((RuntimeObject*)L_7, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Action_2_t7599F1A874E645E7131D6D33F960155F7DBB019E* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Action_2_t7599F1A874E645E7131D6D33F960155F7DBB019E* L_9 = V_2;
|
|
Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* L_10 = V_0;
|
|
RuntimeObject* L_11 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_9);
|
|
Action_2_Invoke_mC60F35F6E10E4A53F88D08A8FEFACDB7A0C0A2C9_inline(L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1__ctor_m3D54502839AF442D5C6B556AC709203116E58D1C_gshared (ContinuationTaskFromResultTask_1_t0D3B0C43A4B7C9E5D99AAFE95D96D4C2C83096EC* __this, Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* ___0_antecedent, Delegate_t* ___1_action, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_action;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task__ctor_m5B0CC976AA85C96DBBDBFCE32829D1A2DC66941D((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1_InnerInvoke_m321EE62626AC9F38D9D392A4EC1B0C3E85863AE5_gshared (ContinuationTaskFromResultTask_1_t0D3B0C43A4B7C9E5D99AAFE95D96D4C2C83096EC* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_0 = NULL;
|
|
Action_1_t0328A8A468C762DAECEC2BDBE23D4E47955D8678* V_1 = NULL;
|
|
Action_2_t688A348E6918A7E3E4FE534B179A3DFDCF958DED* V_2 = NULL;
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Action_1_t0328A8A468C762DAECEC2BDBE23D4E47955D8678*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 2)));
|
|
Action_1_t0328A8A468C762DAECEC2BDBE23D4E47955D8678* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Action_1_t0328A8A468C762DAECEC2BDBE23D4E47955D8678* L_5 = V_1;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_m1169A2DC53203BA573048ACBB879FA99B18917BE_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Delegate_t* L_7 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Action_2_t688A348E6918A7E3E4FE534B179A3DFDCF958DED*)IsInst((RuntimeObject*)L_7, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Action_2_t688A348E6918A7E3E4FE534B179A3DFDCF958DED* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Action_2_t688A348E6918A7E3E4FE534B179A3DFDCF958DED* L_9 = V_2;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_10 = V_0;
|
|
RuntimeObject* L_11 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_9);
|
|
Action_2_Invoke_m9130F513A7CB9C401B5E06E35023B1706DB9F0D2_inline(L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1__ctor_m95BD454B0BD76CD16185C32A5531A4FB8F2C2477_gshared (ContinuationTaskFromResultTask_1_t6C8EB0D8986768A0697C00E3990E72A52E065000* __this, Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* ___0_antecedent, Delegate_t* ___1_action, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_action;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task__ctor_m5B0CC976AA85C96DBBDBFCE32829D1A2DC66941D((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, NULL);
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1_InnerInvoke_mA158D1E77249D1CFB0A210300629F074D56E9DAE_gshared (ContinuationTaskFromResultTask_1_t6C8EB0D8986768A0697C00E3990E72A52E065000* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* V_0 = NULL;
|
|
Action_1_t839F3E949693088C3B23DB29849AC0CA1A2583BA* V_1 = NULL;
|
|
Action_2_tF48592AA21538CB1125537B525EA5254EEF3581C* V_2 = NULL;
|
|
{
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F*)NULL);
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Action_1_t839F3E949693088C3B23DB29849AC0CA1A2583BA*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 2)));
|
|
Action_1_t839F3E949693088C3B23DB29849AC0CA1A2583BA* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Action_1_t839F3E949693088C3B23DB29849AC0CA1A2583BA* L_5 = V_1;
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_mD838BCF879ED89516C546ACD12757FCD690C7D58_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Delegate_t* L_7 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Action_2_tF48592AA21538CB1125537B525EA5254EEF3581C*)IsInst((RuntimeObject*)L_7, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Action_2_tF48592AA21538CB1125537B525EA5254EEF3581C* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Action_2_tF48592AA21538CB1125537B525EA5254EEF3581C* L_9 = V_2;
|
|
Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* L_10 = V_0;
|
|
RuntimeObject* L_11 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_9);
|
|
Action_2_Invoke_mC3EBDEA90E4EB99862F59ADD9B81D57CC703D20A_inline(L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1__ctor_mE73156C36B89FF2123192106B9F4EDE93A8B1A17_gshared (ContinuationTaskFromResultTask_1_t0A8FDEA74F016A246D22E5545F9D6EA6503B4D52* __this, Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* ___0_antecedent, Delegate_t* ___1_action, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_action;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task__ctor_m5B0CC976AA85C96DBBDBFCE32829D1A2DC66941D((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, NULL);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1_InnerInvoke_m2A30E937BD9BF9614095D6900CA0E6201230BF60_gshared (ContinuationTaskFromResultTask_1_t0A8FDEA74F016A246D22E5545F9D6EA6503B4D52* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* V_0 = NULL;
|
|
Action_1_t2A5DF92F66A322B1138DECB857638383A0616590* V_1 = NULL;
|
|
Action_2_t69E25DD22422E23B12565DA2320B148058096C8E* V_2 = NULL;
|
|
{
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17*)NULL);
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Action_1_t2A5DF92F66A322B1138DECB857638383A0616590*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 2)));
|
|
Action_1_t2A5DF92F66A322B1138DECB857638383A0616590* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Action_1_t2A5DF92F66A322B1138DECB857638383A0616590* L_5 = V_1;
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
Action_1_Invoke_m50BA9D8AF39D61E89FDBCF982BCB43E4B3CB1B63_inline(L_5, L_6, il2cpp_rgctx_method(method->klass->rgctx_data, 3));
|
|
return;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Delegate_t* L_7 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Action_2_t69E25DD22422E23B12565DA2320B148058096C8E*)IsInst((RuntimeObject*)L_7, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Action_2_t69E25DD22422E23B12565DA2320B148058096C8E* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Action_2_t69E25DD22422E23B12565DA2320B148058096C8E* L_9 = V_2;
|
|
Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* L_10 = V_0;
|
|
RuntimeObject* L_11 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_9);
|
|
Action_2_Invoke_m1029EE6B9B8AF17A4E4BF52CC91A90092FD48F55_inline(L_9, L_10, L_11, il2cpp_rgctx_method(method->klass->rgctx_data, 5));
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
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
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1__ctor_mD6A0704AD92512F00B7D91F4E7E5B4895FF5CA9B_gshared (ContinuationTaskFromResultTask_1_t2E218599564ED5579F7956163E384B1E5171EF92* __this, Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* ___0_antecedent, Delegate_t* ___1_action, RuntimeObject* ___2_state, int32_t ___3_creationOptions, int32_t ___4_internalOptions, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Delegate_t* L_0 = ___1_action;
|
|
RuntimeObject* L_1 = ___2_state;
|
|
int32_t L_2 = ___3_creationOptions;
|
|
il2cpp_codegen_runtime_class_init_inline(Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572_il2cpp_TypeInfo_var);
|
|
Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572* L_3;
|
|
L_3 = Task_InternalCurrentIfAttached_mBF043F869DEB200F3129DB7CE48C64BA0A85B58C(L_2, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED));
|
|
CancellationToken_t51142D9C6D7C02D314DA34A6A7988C528992FFED L_4 = V_0;
|
|
int32_t L_5 = ___3_creationOptions;
|
|
int32_t L_6 = ___4_internalOptions;
|
|
Task__ctor_m5B0CC976AA85C96DBBDBFCE32829D1A2DC66941D((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this, L_0, L_1, L_3, L_4, L_5, L_6, (TaskScheduler_t3F0550EBEF7C41F74EC8C08FF4BED0D8CE66006E*)NULL, NULL);
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_7 = ___0_antecedent;
|
|
__this->___m_antecedent = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ContinuationTaskFromResultTask_1_InnerInvoke_m3B13A1B04A1A689260050B1E9D41328B6D60FABF_gshared (ContinuationTaskFromResultTask_1_t2E218599564ED5579F7956163E384B1E5171EF92* __this, const RuntimeMethod* method)
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* V_0 = NULL;
|
|
Action_1_tE6E50482E4ADBDF3F8AAB2E1468F55A7DF4BB182* V_1 = NULL;
|
|
Action_2_tFDA59A266B876E9846989E1EC1AC2B92BC20CEDA* V_2 = NULL;
|
|
{
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_0 = __this->___m_antecedent;
|
|
V_0 = L_0;
|
|
__this->___m_antecedent = (Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_antecedent), (void*)(Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*)NULL);
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_1 = V_0;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1);
|
|
bool L_2;
|
|
L_2 = Task_NotifyDebuggerOfWaitCompletionIfNecessary_mC72FCA6A404CB3384E9799C079299A975C9055DE((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_1, NULL);
|
|
Delegate_t* L_3 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_1 = ((Action_1_tE6E50482E4ADBDF3F8AAB2E1468F55A7DF4BB182*)IsInst((RuntimeObject*)L_3, il2cpp_rgctx_data(method->klass->rgctx_data, 2)));
|
|
Action_1_tE6E50482E4ADBDF3F8AAB2E1468F55A7DF4BB182* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
Action_1_tE6E50482E4ADBDF3F8AAB2E1468F55A7DF4BB182* L_5 = V_1;
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
InvokerActionInvoker1< Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 3)), il2cpp_rgctx_method(method->klass->rgctx_data, 3), L_5, L_6);
|
|
return;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
Delegate_t* L_7 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_action;
|
|
V_2 = ((Action_2_tFDA59A266B876E9846989E1EC1AC2B92BC20CEDA*)IsInst((RuntimeObject*)L_7, il2cpp_rgctx_data(method->klass->rgctx_data, 4)));
|
|
Action_2_tFDA59A266B876E9846989E1EC1AC2B92BC20CEDA* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0049;
|
|
}
|
|
}
|
|
{
|
|
Action_2_tFDA59A266B876E9846989E1EC1AC2B92BC20CEDA* L_9 = V_2;
|
|
Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9* L_10 = V_0;
|
|
RuntimeObject* L_11 = ((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)__this)->___m_stateObject;
|
|
NullCheck(L_9);
|
|
InvokerActionInvoker2< Task_1_tDF1FF540D7D2248A08580387A39717B7FB7A9CF9*, RuntimeObject* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->klass->rgctx_data, 5)), il2cpp_rgctx_method(method->klass->rgctx_data, 5), L_9, L_10, L_11);
|
|
return;
|
|
}
|
|
|
|
IL_0049:
|
|
{
|
|
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
|
|
RuntimeObject* Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_Multicast(Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_array_size_t length = __this->___delegates->max_length;
|
|
Delegate_t** delegatesToInvoke = reinterpret_cast<Delegate_t**>(__this->___delegates->GetAddressAtUnchecked(0));
|
|
RuntimeObject* retVal = NULL;
|
|
for (il2cpp_array_size_t i = 0; i < length; i++)
|
|
{
|
|
Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486* currentDelegate = reinterpret_cast<Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486*>(delegatesToInvoke[i]);
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
retVal = ((FunctionPointerType)currentDelegate->___invoke_impl)((Il2CppObject*)currentDelegate->___method_code, ___0_input, reinterpret_cast<RuntimeMethod*>(currentDelegate->___method));
|
|
}
|
|
return retVal;
|
|
}
|
|
RuntimeObject* Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_OpenInst(Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_input);
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr)(___0_input, method);
|
|
}
|
|
RuntimeObject* Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_OpenStatic(Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___method_ptr)(___0_input, method);
|
|
}
|
|
RuntimeObject* Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_OpenVirtual(Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_input);
|
|
return VirtualFuncInvoker0< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(method), ___0_input);
|
|
}
|
|
RuntimeObject* Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_OpenInterface(Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_input);
|
|
return InterfaceFuncInvoker0< RuntimeObject* >::Invoke(il2cpp_codegen_method_get_slot(method), il2cpp_codegen_method_get_declaring_type(method), ___0_input);
|
|
}
|
|
RuntimeObject* Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_OpenGenericVirtual(Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_input);
|
|
return GenericVirtualFuncInvoker0< RuntimeObject* >::Invoke(method, ___0_input);
|
|
}
|
|
RuntimeObject* Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_OpenGenericInterface(Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
NullCheck(___0_input);
|
|
return GenericInterfaceFuncInvoker0< RuntimeObject* >::Invoke(method, ___0_input);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Converter_2__ctor_mB107CD0E28B613EFEB2F8599A3A56AFA1C4AD1B0_gshared (Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
__this->___method_ptr = (intptr_t)il2cpp_codegen_get_method_pointer((RuntimeMethod*)___1_method);
|
|
__this->___method = ___1_method;
|
|
__this->___m_target = ___0_object;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_target), (void*)___0_object);
|
|
int parameterCount = il2cpp_codegen_method_parameter_count((RuntimeMethod*)___1_method);
|
|
__this->___method_code = (intptr_t)__this;
|
|
if (MethodIsStatic((RuntimeMethod*)___1_method))
|
|
{
|
|
bool isOpen = parameterCount == 1;
|
|
if (isOpen)
|
|
__this->___invoke_impl = (intptr_t)&Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_OpenStatic;
|
|
else
|
|
{
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
bool isOpen = parameterCount == 0;
|
|
if (isOpen)
|
|
{
|
|
if (__this->___method_is_virtual)
|
|
{
|
|
if (il2cpp_codegen_method_is_generic_instance_method((RuntimeMethod*)___1_method))
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl = (intptr_t)&Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_OpenGenericInterface;
|
|
else
|
|
__this->___invoke_impl = (intptr_t)&Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_OpenGenericVirtual;
|
|
else
|
|
if (il2cpp_codegen_method_is_interface_method((RuntimeMethod*)___1_method))
|
|
__this->___invoke_impl = (intptr_t)&Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_OpenInterface;
|
|
else
|
|
__this->___invoke_impl = (intptr_t)&Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_OpenVirtual;
|
|
}
|
|
else
|
|
{
|
|
__this->___invoke_impl = (intptr_t)&Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_OpenInst;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (___0_object == NULL)
|
|
il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL);
|
|
__this->___invoke_impl = __this->___method_ptr;
|
|
__this->___method_code = (intptr_t)__this->___m_target;
|
|
}
|
|
}
|
|
__this->___extra_arg = (intptr_t)&Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_Multicast;
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* Converter_2_Invoke_m6EBDF778C3E599A89EE2B9B6171F10F01B541939_gshared (Converter_2_tC9AFAC88B7B2F2A78BE628A4D126535F0A4A1486* __this, RuntimeObject* ___0_input, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_input, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 ConfiguredTaskAwaitable_GetAwaiter_m3F163D24211147E68FC5799A7D2D2BE7C07A60B5_inline (ConfiguredTaskAwaitable_tABE012B321A51A20F0D34F8122B9EAE3A054875C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_t6D4C5E6B82017ED33DAFA1EFC33B0EFBE3137618 L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_m94A9BD1AEA6EA0A8BEE3739A3881F479181638C4_gshared_inline (KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___key;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool KeyValuePair_2_get_Value_mC3C5F83458F19B6276D6E090A86CFDADE6EFAAD8_gshared_inline (KeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* EqualityComparer_1_get_Default_mA2AD755281D23F496A2579884B39E30C13C208B3_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* V_0 = NULL;
|
|
{
|
|
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_0 = ((EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___defaultComparer;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_2;
|
|
L_2 = EqualityComparer_1_CreateComparer_mD2FA619307513193746FBEB5AE522FB54E21B634(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
V_0 = L_2;
|
|
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_3 = V_0;
|
|
il2cpp_codegen_memory_barrier();
|
|
((EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___defaultComparer = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___defaultComparer), (void*)L_3);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
EqualityComparer_1_t92563A67F1C1ECDC3FE387C46498E2E56B59F3C2* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* EqualityComparer_1_get_Default_mBB75BC0723DFD7850F43E72E34026DD070CF5932_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* V_0 = NULL;
|
|
{
|
|
EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* L_0 = ((EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___defaultComparer;
|
|
il2cpp_codegen_memory_barrier();
|
|
V_0 = L_0;
|
|
EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* L_2;
|
|
L_2 = EqualityComparer_1_CreateComparer_m3BD7BED1F69ABEE55E320BA9CCFBB473E9F57C66(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
V_0 = L_2;
|
|
EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* L_3 = V_0;
|
|
il2cpp_codegen_memory_barrier();
|
|
((EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___defaultComparer = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)))->___defaultComparer), (void*)L_3);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
EqualityComparer_1_t97160852989689D9543E2E1EA7D7196DBEA5AEE4* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* Array_Empty_TisKeyValuePair_2_t7E5E41B933054DBF6F52C6CDF0BC2CB4B1606423_m33FD39B66E19241823DC3F53991FB83782F331C2_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
KeyValuePair_2U5BU5D_tBF6D6F778484697BCA6E3EE3B452F4A00B7117A7* L_0 = ((EmptyArray_1_t8BE059A4A7E1584B32D6FB4AA57B34CA9D83F358_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_2_Invoke_m2014423FB900F135C8FF994125604FF9E6AAE829_gshared_inline (Func_2_tE1F0D41563EE092E5E5540B061449FDE88F1DC00* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_mEBCF994CC3814631017F46A387B1A192ED6C85C7_gshared_inline (List_1_tA239CB83DE5615F348BB0507E45F490F4F7C9A8D* __this, RuntimeObject* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
RuntimeObject* L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
RuntimeObject* L_9 = ___0_item;
|
|
List_1_AddWithResize_m79A9BF770BEF9C06BE40D5401E55E375F2726CC4(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void List_1_Add_m5AAB6DCB6C30EB5769B4E8DB8170E50319F0A9ED_gshared_inline (List_1_t01207CE5982A7640E56B1F9F672A06F96B09367A* __this, bool ___0_item, const RuntimeMethod* method)
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
{
|
|
int32_t L_0 = __this->____version;
|
|
__this->____version = ((int32_t)il2cpp_codegen_add(L_0, 1));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_1 = __this->____items;
|
|
V_0 = L_1;
|
|
int32_t L_2 = __this->____size;
|
|
V_1 = L_2;
|
|
int32_t L_3 = V_1;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
if ((!(((uint32_t)L_3) < ((uint32_t)((int32_t)(((RuntimeArray*)L_4)->max_length))))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_1;
|
|
__this->____size = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_6 = V_0;
|
|
int32_t L_7 = V_1;
|
|
bool L_8 = ___0_item;
|
|
NullCheck(L_6);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (bool)L_8);
|
|
return;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
bool L_9 = ___0_item;
|
|
List_1_AddWithResize_mD783561518F916982595A58C9A148BA3AA8F9B10(__this, L_9, il2cpp_rgctx_method(method->klass->rgctx_data, 14));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Key_mBD8EA7557C27E6956F2AF29DA3F7499B2F51A282_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___key;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* KeyValuePair_2_get_Value_mC6BD8075F9C9DDEF7B4D731E5C38EC19103988E7_gshared_inline (KeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* Array_Empty_TisKeyValuePair_2_tFC32D2507216293851350D29B64D79F950B55230_m2D55A4A51DA7B1571C2722D1B9ADDBBA8C6EC441_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(method->rgctx_data, 2));
|
|
KeyValuePair_2U5BU5D_t105762EC2DE353037ECAD13437FC19081314CE67* L_0 = ((EmptyArray_1_t95DB53A55F6F271E301FFF8E7F2AB794A57CF8B3_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(method->rgctx_data, 2)))->___Value;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_2_Invoke_mDBA25DA5DA5B7E056FB9B026AF041F1385FB58A9_gshared_inline (Func_2_tACBF5A1656250800CE861707354491F0611F6624* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* CreateValueCallback_Invoke_mDCA362F0B946C52272C5956DA35F53B8DC49BA83_gshared_inline (CreateValueCallback_t85D075DDCAD202B428EC47723590605681FE2BD1* __this, RuntimeObject* ___0_key, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_key, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 ConfiguredTaskAwaitable_1_GetAwaiter_m4FE08BCFB9AA694193BDCD5B5C12F5271A1E88F5_gshared_inline (ConfiguredTaskAwaitable_1_tEC8120422100780C8C0025D1B994C33B30C4AD71* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_t55C4D50A016D191AA666134EE36747E9B51C76B5 L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719 ConfiguredTaskAwaitable_1_GetAwaiter_m63812BEACBC9720D9E9860A508588B1DE0F34C66_gshared_inline (ConfiguredTaskAwaitable_1_t3BDE5FA8F3E84010AD5A89CCC86863F36FE2F029* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_tF9E09AAA624DFAC26E447FFC011F497039500719 L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9 ConfiguredTaskAwaitable_1_GetAwaiter_mE947EA14D65DCF41B2988D73580C1886D1FC836B_gshared_inline (ConfiguredTaskAwaitable_1_t61CC6F81131B892EC5ED74B4B0F30EAA24458A2A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_t5086CFED8E3AFAC65C9ADB222B7B4B568693FCB9 L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC ConfiguredTaskAwaitable_1_GetAwaiter_m6B1B72AC1AA4F779C7CADC540F89E33ECCBF93CC_gshared_inline (ConfiguredTaskAwaitable_1_t1081EBC9AD6C9D98688BB71B0DFBF512AC1C7B49* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_tA4E12A0D799D1D2599D99BCE685DD94CBB7119FC L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4 ConfiguredTaskAwaitable_1_GetAwaiter_m3D8C463996184A1FE94D1B59A379F3ACB425C7CF_gshared_inline (ConfiguredTaskAwaitable_1_t8CD88E253ADEFD17912937E545828FCB7A2F079C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_tADFEF9AE6CB4E22E17B1DFA386EE3D86DB8955E4 L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 ConfiguredTaskAwaitable_1_GetAwaiter_m7A77B1981FEC19CC7E1570EDC3F16AC5C14B4439_gshared_inline (ConfiguredTaskAwaitable_1_t5186C81524388C1718E9AC37792D8771A443417A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_t8FC486401D1951F2426478F2050EE290197B6E80 L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B ConfiguredTaskAwaitable_1_GetAwaiter_m447B2323EADC587DE0ABFEA2FEF3AF3342F75186_gshared_inline (ConfiguredTaskAwaitable_1_tE948E6A9D82D7E1E26885E7CE5ED6256AA5BBBD8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_tDED7237EFF0427AECED9D7549E9AF9F7E568C39B L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C ConfiguredTaskAwaitable_1_GetAwaiter_mFF4EF7AEFA89C01BCDFD3309A0B610F65F81E9DD_gshared_inline (ConfiguredTaskAwaitable_1_tDCE391D27EEDEFE6017824A9F96184BED9F042E3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_t51992A1BCE5658B3F05C29334A2DA17A22B07F3C L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 ConfiguredTaskAwaitable_1_GetAwaiter_m10364C3B0A904803E890B2D75674665F986BDAB2_gshared_inline (ConfiguredTaskAwaitable_1_t97C129EA63015240E6F9E767F4A120CC9122FEF8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_t28A5A60199BBE7F1F31159301DD211EFDCF955E2 L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC ConfiguredTaskAwaitable_1_GetAwaiter_m76195C44489DF59E908A90F3370693A6905CFDF5_gshared_inline (ConfiguredTaskAwaitable_1_tE00681C78481F986EC7CC9D48528D72398370904* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_tB5F347DD81FA18B01B39CD7B4610276D46958CEC L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A ConfiguredTaskAwaitable_1_GetAwaiter_mF6A0C005CBE0A04B0342E47C626854C4364ADDB6_gshared_inline (ConfiguredTaskAwaitable_1_tE56E5FFFF24684ECCB77BA1DC390B2A255841BBF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_t10F0057B7F31913C37CBB3E2900A547A6C29CD6A L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A ConfiguredTaskAwaitable_1_GetAwaiter_mA5D8A0E225B9D580F1FC5216C47A0B828B033390_gshared_inline (ConfiguredTaskAwaitable_1_t7FFB03EADF9A67E9EE2A5DECE3FB4353344FE922* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ConfiguredTaskAwaiter_tB2708B017EE82067B2492CD61623784137A1AE0A L_0 = __this->___m_configuredTaskAwaiter;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 Task_1_get_ResultOnSuccess_mCE17C784EC8A76A7A669ADA89953086B95DEA9E2_gshared_inline (Task_1_t75694119DBB4B68675BB4BAB3E446BA4EE5C91C7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 L_0 = __this->___m_result;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 Task_1_get_ResultOnSuccess_mF3C0355E532212C56EB03CA82EB918C582829907_gshared_inline (Task_1_tFF67A2EFF1771DDAF11A06438D12EF7597D0010D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 L_0 = __this->___m_result;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F Task_1_get_ResultOnSuccess_m6D499E3CAECD874138D8268859F1C5ADB6BFB541_gshared_inline (Task_1_t0E679CF373AED311E3AE3FC87E3C59FCA835479C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F L_0 = __this->___m_result;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 Task_1_get_ResultOnSuccess_m214E858FC526E07DBB763D5E8823E3E541228015_gshared_inline (Task_1_t92877BA87ADE0900BD5EBC3E66E94C5598602A9A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 L_0 = __this->___m_result;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Task_1_get_ResultOnSuccess_m15F655DF9F8EE6F8388A9432454900F07EFC57BB_gshared_inline (Task_1_t824317F4B958F7512E8F7300511752937A6C6043* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___m_result;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Task_1_get_ResultOnSuccess_mF098AC108FFA2E0D992306C6D956BA37874FAC77_gshared_inline (Task_1_t4C228DE57804012969575431CFF12D57C875552D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___m_result;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Task_1_get_ResultOnSuccess_m17F426484CA5CE14DB7E1495B6883B542D46BFA4_gshared_inline (Task_1_t8DED34447688BFCF5112B0D05D5A80CED94E4BFB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___m_result;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Task_1_get_ResultOnSuccess_m017840A0E0E0A7BD35D651A69351C4E0CE25F56F_gshared_inline (Task_1_t1640FA195724830135E3C6FC16DBCDC579F3876F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___m_result;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Task_1_get_ResultOnSuccess_m747DDF25AF20D348F75409600C9943ED5ED92BA0_gshared_inline (Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___m_result;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A Task_1_get_ResultOnSuccess_m604CAB5861502951B55B242E5D417FB4AC185DA0_gshared_inline (Task_1_t8769AE53CCB1B54F15217D3CBAA8DB506BF7763F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A L_0 = __this->___m_result;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC Task_1_get_ResultOnSuccess_mF2B4314A2FC0448358439C96FC6217501A2ACFE0_gshared_inline (Task_1_tE41CFF640EB7C045550D9D0D92BE67533B084C17* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC L_0 = __this->___m_result;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaitable_1__ctor_m508597503A661BAE9FEB5315DC97BCD99E4BDCB7_gshared_inline (ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043* __this, ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 L_0 = ___0_value;
|
|
__this->____value = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value))->____obj), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter__ctor_m1FA5EBCEDA701BBF0893ECF2665D06B4CA2D97B9_gshared_inline (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 L_0 = ___0_value;
|
|
__this->____value = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value))->____obj), (void*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5 ConfiguredValueTaskAwaitable_1_GetAwaiter_m94C14DDAC561363EFCF143293D1E2E5CE74522E3_gshared_inline (ConfiguredValueTaskAwaitable_1_tFC447A18AC65308F7F44174D3C3422A194549043* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21 L_0 = __this->____value;
|
|
ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
ConfiguredValueTaskAwaiter__ctor_m1FA5EBCEDA701BBF0893ECF2665D06B4CA2D97B9_inline((&L_1), L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaitable_1__ctor_mEAA2416875911A8D049C7F0FB4477D6AE4BC124B_gshared_inline (ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98* __this, ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 L_0 = ___0_value;
|
|
__this->____value = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value))->____obj), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value))->____result), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter__ctor_m2119C5D2703D1D7748F0D5DAB18AA40C883229CF_gshared_inline (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 L_0 = ___0_value;
|
|
__this->____value = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value))->____obj), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->____value))->____result), (void*)NULL);
|
|
#endif
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99 ConfiguredValueTaskAwaitable_1_GetAwaiter_m7BECD774F029605B45F919BF7DEEC348B2B499B8_gshared_inline (ConfiguredValueTaskAwaitable_1_t415F5A25DDBFA0019A98D28A4E6DF1E1AE17AE98* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215 L_0 = __this->____value;
|
|
ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
ConfiguredValueTaskAwaiter__ctor_m2119C5D2703D1D7748F0D5DAB18AA40C883229CF_inline((&L_1), L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaitable_1__ctor_m50F71CECBEA21581E8170F4CDFE15E0182FE41D0_gshared_inline (ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E* __this, ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
const ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 L_0 = alloca(SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, ___0_value, SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D);
|
|
il2cpp_codegen_write_instance_field_data(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0), L_0, SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter__ctor_m3DE02ADEF13DE18D55B4E303EBB2BA001A30DE09_gshared_inline (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_ValueTask_1_t01874A5993CF7B4E4B9DFA1E83392D9E1AB90D4D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
const ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 L_0 = alloca(SizeOf_ValueTask_1_t01874A5993CF7B4E4B9DFA1E83392D9E1AB90D4D);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, ___0_value, SizeOf_ValueTask_1_t01874A5993CF7B4E4B9DFA1E83392D9E1AB90D4D);
|
|
il2cpp_codegen_write_instance_field_data(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0), L_0, SizeOf_ValueTask_1_t01874A5993CF7B4E4B9DFA1E83392D9E1AB90D4D);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaitable_1_GetAwaiter_m44A568FC09F949B84CD6F0F09E907A2A04E2EF46_gshared_inline (ConfiguredValueTaskAwaitable_1_tFEB6F151D0633BD55BE30F22BAE021A6F7A58F1E* __this, ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
const uint32_t SizeOf_ConfiguredValueTaskAwaiter_t65BFC62646A30F976AA86ECBC7549B7FFFA89017 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
const ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2 L_2 = alloca(SizeOf_ConfiguredValueTaskAwaiter_t65BFC62646A30F976AA86ECBC7549B7FFFA89017);
|
|
const ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 L_0 = alloca(SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D);
|
|
const ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7 L_1 = alloca(SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D);
|
|
{
|
|
il2cpp_codegen_memcpy(L_0, il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)), SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D);
|
|
memset(L_2, 0, SizeOf_ConfiguredValueTaskAwaiter_t65BFC62646A30F976AA86ECBC7549B7FFFA89017);
|
|
ConfiguredValueTaskAwaiter__ctor_m3DE02ADEF13DE18D55B4E303EBB2BA001A30DE09_inline((ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2*)L_2, il2cpp_codegen_memcpy(L_1, L_0, SizeOf_ValueTask_1_t20F065E55FE7862010544D156A484ED532B7C20D), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 3));
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_2, SizeOf_ConfiguredValueTaskAwaiter_t65BFC62646A30F976AA86ECBC7549B7FFFA89017);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ValueTask_1_get_IsCompleted_m327391A8FC9F06A07DC95CBC77756BA963EC42A2_gshared_inline (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->____obj;
|
|
V_0 = L_0;
|
|
RuntimeObject* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
V_1 = ((Task_1_t4C228DE57804012969575431CFF12D57C875552D*)IsInstClass((RuntimeObject*)L_2, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)));
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_4 = V_1;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_4);
|
|
bool L_5;
|
|
L_5 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_4, NULL);
|
|
return L_5;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
RuntimeObject* L_6 = V_0;
|
|
RuntimeObject* L_7;
|
|
L_7 = il2cpp_unsafe_as<RuntimeObject*>(L_6);
|
|
int16_t L_8 = __this->____token;
|
|
NullCheck(L_7);
|
|
int32_t L_9;
|
|
L_9 = InterfaceFuncInvoker1< int32_t, int16_t >::Invoke(0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), L_7, L_8);
|
|
return (bool)((!(((uint32_t)L_9) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ConfiguredValueTaskAwaiter_get_IsCompleted_mB0B5FC0CD4E3282961DCA3F5B5C24260680B7461_gshared_inline (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_0 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
bool L_1;
|
|
L_1 = ValueTask_1_get_IsCompleted_m327391A8FC9F06A07DC95CBC77756BA963EC42A2_inline(L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ValueTask_1_get_Result_m272AA34FF8C511DECB3E35C6C0A1039F0723F960_gshared_inline (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->____obj;
|
|
V_0 = L_0;
|
|
RuntimeObject* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = __this->____result;
|
|
return L_2;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
V_1 = ((Task_1_t4C228DE57804012969575431CFF12D57C875552D*)IsInstClass((RuntimeObject*)L_3, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)));
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_5 = V_1;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_5, NULL);
|
|
Task_1_t4C228DE57804012969575431CFF12D57C875552D* L_6 = V_1;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = Task_1_get_ResultOnSuccess_mF098AC108FFA2E0D992306C6D956BA37874FAC77_inline(L_6, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 23));
|
|
return L_7;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
RuntimeObject* L_8 = V_0;
|
|
RuntimeObject* L_9;
|
|
L_9 = il2cpp_unsafe_as<RuntimeObject*>(L_8);
|
|
int16_t L_10 = __this->____token;
|
|
NullCheck(L_9);
|
|
int32_t L_11;
|
|
L_11 = InterfaceFuncInvoker1< int32_t, int16_t >::Invoke(2, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), L_9, L_10);
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ConfiguredValueTaskAwaiter_GetResult_mB250A2B7423863EC0EF64C56F679FBA4FD674021_gshared_inline (ConfiguredValueTaskAwaiter_t8FE23DA54E33C0AB39F6B3C1C7932D5513330EA5* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21* L_0 = (ValueTask_1_t823DE87C36EA952D24C4E64F532E9D4425B72F21*)(&__this->____value);
|
|
int32_t L_1;
|
|
L_1 = ValueTask_1_get_Result_m272AA34FF8C511DECB3E35C6C0A1039F0723F960_inline(L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ValueTask_1_get_IsCompleted_mB5FE6398DBC9CBAECABB6AFC1B3F3A1F51D1479F_gshared_inline (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->____obj;
|
|
V_0 = L_0;
|
|
RuntimeObject* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
return (bool)1;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
RuntimeObject* L_2 = V_0;
|
|
V_1 = ((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)IsInstClass((RuntimeObject*)L_2, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_4 = V_1;
|
|
NullCheck((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_4);
|
|
bool L_5;
|
|
L_5 = Task_get_IsCompleted_m942D6D536545EF059089398B19435591561BB831((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_4, NULL);
|
|
return L_5;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
RuntimeObject* L_6 = V_0;
|
|
RuntimeObject* L_7;
|
|
L_7 = il2cpp_unsafe_as<RuntimeObject*>(L_6);
|
|
int16_t L_8 = __this->____token;
|
|
NullCheck(L_7);
|
|
int32_t L_9;
|
|
L_9 = InterfaceFuncInvoker1< int32_t, int16_t >::Invoke(0, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), L_7, L_8);
|
|
return (bool)((!(((uint32_t)L_9) <= ((uint32_t)0)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ConfiguredValueTaskAwaiter_get_IsCompleted_mA7BC89851224972805007D736DB02E2B7D4700F2_gshared_inline (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_0 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
bool L_1;
|
|
L_1 = ValueTask_1_get_IsCompleted_mB5FE6398DBC9CBAECABB6AFC1B3F3A1F51D1479F_inline(L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ValueTask_1_get_Result_m3035DEA69E68AD985EDB5285416C94558C72B23D_gshared_inline (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->____obj;
|
|
V_0 = L_0;
|
|
RuntimeObject* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = __this->____result;
|
|
return L_2;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
V_1 = ((Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2*)IsInstClass((RuntimeObject*)L_3, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2)));
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_5 = V_1;
|
|
TaskAwaiter_ValidateEnd_m6BB967A466C17A106BC547009EDE196266651751((Task_t751C4CC3ECD055BABA8A0B6A5DFBB4283DCA8572*)L_5, NULL);
|
|
Task_1_t0C4CD3A5BB93A184420D73218644C56C70FDA7E2* L_6 = V_1;
|
|
NullCheck(L_6);
|
|
RuntimeObject* L_7;
|
|
L_7 = Task_1_get_ResultOnSuccess_m747DDF25AF20D348F75409600C9943ED5ED92BA0_inline(L_6, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 23));
|
|
return L_7;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
RuntimeObject* L_8 = V_0;
|
|
RuntimeObject* L_9;
|
|
L_9 = il2cpp_unsafe_as<RuntimeObject*>(L_8);
|
|
int16_t L_10 = __this->____token;
|
|
NullCheck(L_9);
|
|
RuntimeObject* L_11;
|
|
L_11 = InterfaceFuncInvoker1< RuntimeObject*, int16_t >::Invoke(2, il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 3), L_9, L_10);
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* ConfiguredValueTaskAwaiter_GetResult_mBB2D627DF9F38F1113F367FF1ACE907F0A82D494_gshared_inline (ConfiguredValueTaskAwaiter_t216B20C47AA404057B6F0010B556BEED4ACBCD99* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215* L_0 = (ValueTask_1_t7C5C39AB5B4A0ABA07AC934800D43DED916F9215*)(&__this->____value);
|
|
RuntimeObject* L_1;
|
|
L_1 = ValueTask_1_get_Result_m3035DEA69E68AD985EDB5285416C94558C72B23D_inline(L_0, il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool ConfiguredValueTaskAwaiter_get_IsCompleted_m900B802370ACB3E11F808026A4BEE1183E91507A_gshared_inline (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0;
|
|
L_0 = (( bool (*) (ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2)))((((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ConfiguredValueTaskAwaiter_GetResult_mCF267B69492EBE1F642327D1A858EF350DEBC19E_gshared_inline (ConfiguredValueTaskAwaiter_t3F69397A80D1F1119F45E272F291E433207028E2* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
const uint32_t SizeOf_TResult_tE5707140DBDCD73DB507DB54BE9E7D08A71C42C7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_TResult_tE5707140DBDCD73DB507DB54BE9E7D08A71C42C7);
|
|
{
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4)), il2cpp_rgctx_method(InitializedTypeInfo(method->klass)->rgctx_data, 4), (((ValueTask_1_t0F0EE445D46F85FEC54EC1B5DD82D484EB19B4A7*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data_no_init(InitializedTypeInfo(method->klass)->rgctx_data, 1),0)))), (Il2CppFullySharedGenericAny*)L_0);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_0, SizeOf_TResult_tE5707140DBDCD73DB507DB54BE9E7D08A71C42C7);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 Func_2_Invoke_m3C19BD2EA00E1EF46CABE820518716B3F3F10A3C_gshared_inline (Func_2_t9BDD2E959989A0F342560C7A37F50108887A6F4F* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 Func_3_Invoke_mC8E3181B95E1536F05606B557AC4CD80AA7CD658_gshared_inline (Func_3_t38806CDE2B8FBE2C46D0183F71E027E08C5FA249* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef Nullable_1_tCF32C56A2641879C053C86F273C0C6EC1B40BC28 (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* Func_3_Invoke_m31D9E56C7CAE538FD8564F34CABA2C2A537ED393_gshared_inline (Func_3_tAB0692B406AF1455ADB5F518BF283E084B5E8566* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef RuntimeObject* (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 Func_2_Invoke_m92CDD270B86A28FBB2E8F17B1FFE06CC1AB6C8E9_gshared_inline (Func_2_tA0EEFAE7C92638659E9BB0B7413EAA91B94F9856* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 Func_3_Invoke_mCAF04CA9F03F9847EE6CBEDA4FF301AA4C9B1E7D_gshared_inline (Func_3_t79EFC91BEF9A031A23D922845DF2FE0FA0BBAB94* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef ValueTuple_2_t307FF872C9931F811F5573093B923498C2EFC798 (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F Func_2_Invoke_mE8DAAA4DEDB6E0CCDE2535CFE3B9528CF200514B_gshared_inline (Func_2_tCD5AA4A296D960BBF4C4F87A28930EAEE61EFD66* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F Func_3_Invoke_m281A6C1FA3BA480C3DC1A60A9F25C3EFE5D52FD8_gshared_inline (Func_3_t2F9CFB060EDA36879A7FAA60EC81BC7513350072* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef ValueTuple_3_tF2051B729BAC568E721EF95E4D0DDA41E7744C5F (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 Func_2_Invoke_m68B7901C1FA0392923FB23D69FBEBBEF8AED14C8_gshared_inline (Func_2_tFE7563C0628D7F87CCDC5B6B1027F20F842C6A9B* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 Func_3_Invoke_mF3F0C2FB4B606EE6E644DA314D53EBBB9AA9B6FD_gshared_inline (Func_3_t397C51E8BB1FEA88F253F683670464827DD4BDAA* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef ValueTuple_5_t0ECA92C4CF82E53BCE5CFE578708475CBA45B999 (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Func_3_Invoke_mC786FD8356E25F147BEF4CF07A587720613A2C12_gshared_inline (Func_3_tFCEB9D8CEAECBF6D0AD5440F96C6F9010270CE79* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef bool (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Func_2_Invoke_m5216F6C7BCECCCED81384876C2968E0D4358618B_gshared_inline (Func_2_t9A0D493A82DCC47C9C819A3B045E02D9B5DDCE1B* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef int32_t (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Func_3_Invoke_mFC6011BA71ECF66C0443D4075110D6020AA7FA1C_gshared_inline (Func_3_t8F3E514F3F44D98D0029402DBF664E587850807D* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef int32_t (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Func_2_Invoke_m1FDB82A936AD6A68F455DE792FD9454CE1A4FC9F_gshared_inline (Func_2_t213311159653563BDCC21CC060B449705C96791F* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef int32_t (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Func_3_Invoke_mDA55CA9B886C979A98CFB2F97AABAFCCEB781712_gshared_inline (Func_3_t28A9636B716326D9E31566B1E8ECBDEFDB0192CE* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef int32_t (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Func_2_Invoke_m58656B8EA1C7E4D386AC93694C482693052DF452_gshared_inline (Func_2_t78D13C74B0F5A1DD640F8722F0AFB5F5144EAB97* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef int64_t (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t Func_3_Invoke_mD37FF894994ED3E7C8EC9E0FBCEB2C0449AA657A_gshared_inline (Func_3_t60F75FC08D90822EE0350881730189B813F24589* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef int64_t (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A Func_2_Invoke_mD3E35946E0C221C1B5833C50E1A94CCFDEA62CAC_gshared_inline (Func_2_t1997BD152D2F0085C9F00A883F4BE34C90ADDA8B* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A Func_3_Invoke_m987D3FA089D0FA94AA36C8325937B3FFFE5576F7_gshared_inline (Func_3_t5D594C7555DF6F84FA098E3F3DE55B9FF132E49A* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef SceneInstance_t9D8203A59AA2C8EE21045B75AFA429EB1B6BF14A (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC Func_2_Invoke_mEBF7808CA295B981EAE4B058D26404E3F3D63235_gshared_inline (Func_2_t71FA99F7C6CDD51A4C237B5165867D485B0735EA* __this, RuntimeObject* ___0_arg, const RuntimeMethod* method)
|
|
{
|
|
typedef VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC Func_3_Invoke_mBAE7E5DB9E0DDF359BAD7AD6BB719BF7751A1A74_gshared_inline (Func_3_t978E495A2CFACF4BCDA24F740600DD6A8BEB2435* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef VoidTaskResult_t73B628B764C6668DAAAE2D37BD6FC07BCA27A5AC (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
return ((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_1_Invoke_mF2422B2DD29F74CE66F791C3F68E288EC7C3DB9E_gshared_inline (Action_1_t6F9EB113EB3F16226AEF811A2744F4111C116C87* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_obj, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_2_Invoke_m7BFCE0BBCF67689D263059B56A8D79161B698587_gshared_inline (Action_2_t156C43F079E7E68155FCDCD12DC77DD11AEF7E3C* __this, RuntimeObject* ___0_arg1, RuntimeObject* ___1_arg2, const RuntimeMethod* method)
|
|
{
|
|
typedef void (*FunctionPointerType) (RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*);
|
|
((FunctionPointerType)__this->___invoke_impl)((Il2CppObject*)__this->___method_code, ___0_arg1, ___1_arg2, reinterpret_cast<RuntimeMethod*>(__this->___method));
|
|
}
|