23564 lines
1.2 MiB
23564 lines
1.2 MiB
#include "pch-cpp.hpp"
|
|
|
|
|
|
|
|
|
|
|
|
template <typename T1, typename T2>
|
|
struct VirtualActionInvoker2
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, invokeData.method);
|
|
}
|
|
};
|
|
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>
|
|
struct VirtualFuncInvoker1
|
|
{
|
|
typedef R (*Func)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
return ((Func)invokeData.methodPtr)(obj, p1, 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 T1>
|
|
struct InterfaceActionInvoker1
|
|
{
|
|
typedef void (*Action)(void*, T1, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj, T1 p1)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface);
|
|
((Action)invokeData.methodPtr)(obj, p1, invokeData.method);
|
|
}
|
|
};
|
|
template <typename 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 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>
|
|
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>
|
|
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 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 T1, typename T2, typename T3, typename T4, typename T5>
|
|
struct InvokerActionInvoker5;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5>
|
|
struct InvokerActionInvoker5<T1*, T2*, T3, T4, T5*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3 p3, T4 p4, T5* p5)
|
|
{
|
|
void* params[5] = { p1, p2, &p3, &p4, p5 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[4]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5>
|
|
struct InvokerActionInvoker5<T1, T2*, T3*, T4*, T5*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5)
|
|
{
|
|
void* params[5] = { &p1, p2, p3, p4, p5 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[4]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5>
|
|
struct InvokerActionInvoker5<T1*, T2*, T3*, T4*, T5*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5)
|
|
{
|
|
void* params[5] = { p1, p2, p3, p4, p5 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[4]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
|
|
struct InvokerActionInvoker6;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
|
|
struct InvokerActionInvoker6<T1, T2*, T3*, T4*, T5*, T6*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6)
|
|
{
|
|
void* params[6] = { &p1, p2, p3, p4, p5, p6 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[5]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6>
|
|
struct InvokerActionInvoker6<T1*, T2*, T3*, T4*, T5*, T6*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6)
|
|
{
|
|
void* params[6] = { p1, p2, p3, p4, p5, p6 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[5]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
|
|
struct InvokerActionInvoker7;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
|
|
struct InvokerActionInvoker7<T1, T2*, T3*, T4*, T5*, T6*, T7*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7)
|
|
{
|
|
void* params[7] = { &p1, p2, p3, p4, p5, p6, p7 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[6]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7>
|
|
struct InvokerActionInvoker7<T1*, T2*, T3*, T4*, T5*, T6*, T7*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7)
|
|
{
|
|
void* params[7] = { p1, p2, p3, p4, p5, p6, p7 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[6]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
|
|
struct InvokerActionInvoker8;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
|
|
struct InvokerActionInvoker8<T1, T2*, T3*, T4*, T5*, T6*, T7*, T8*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8)
|
|
{
|
|
void* params[8] = { &p1, p2, p3, p4, p5, p6, p7, p8 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[7]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8>
|
|
struct InvokerActionInvoker8<T1*, T2*, T3*, T4*, T5*, T6*, T7*, T8*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8)
|
|
{
|
|
void* params[8] = { p1, p2, p3, p4, p5, p6, p7, p8 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[7]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
|
|
struct InvokerActionInvoker9;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
|
|
struct InvokerActionInvoker9<T1, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9)
|
|
{
|
|
void* params[9] = { &p1, p2, p3, p4, p5, p6, p7, p8, p9 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[8]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9>
|
|
struct InvokerActionInvoker9<T1*, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9)
|
|
{
|
|
void* params[9] = { p1, p2, p3, p4, p5, p6, p7, p8, p9 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[8]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10>
|
|
struct InvokerActionInvoker10;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10>
|
|
struct InvokerActionInvoker10<T1, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10)
|
|
{
|
|
void* params[10] = { &p1, p2, p3, p4, p5, p6, p7, p8, p9, p10 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[9]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10>
|
|
struct InvokerActionInvoker10<T1*, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10)
|
|
{
|
|
void* params[10] = { p1, p2, p3, p4, p5, p6, p7, p8, p9, p10 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[9]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11>
|
|
struct InvokerActionInvoker11;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11>
|
|
struct InvokerActionInvoker11<T1, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11)
|
|
{
|
|
void* params[11] = { &p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[10]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11>
|
|
struct InvokerActionInvoker11<T1*, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11)
|
|
{
|
|
void* params[11] = { p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[10]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12>
|
|
struct InvokerActionInvoker12;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12>
|
|
struct InvokerActionInvoker12<T1, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*, T12*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11, T12* p12)
|
|
{
|
|
void* params[12] = { &p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[11]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12>
|
|
struct InvokerActionInvoker12<T1*, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*, T12*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11, T12* p12)
|
|
{
|
|
void* params[12] = { p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[11]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13>
|
|
struct InvokerActionInvoker13;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13>
|
|
struct InvokerActionInvoker13<T1, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*, T12*, T13*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11, T12* p12, T13* p13)
|
|
{
|
|
void* params[13] = { &p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[12]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13>
|
|
struct InvokerActionInvoker13<T1*, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*, T12*, T13*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11, T12* p12, T13* p13)
|
|
{
|
|
void* params[13] = { p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[12]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13, typename T14>
|
|
struct InvokerActionInvoker14;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13, typename T14>
|
|
struct InvokerActionInvoker14<T1, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*, T12*, T13*, T14*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11, T12* p12, T13* p13, T14* p14)
|
|
{
|
|
void* params[14] = { &p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[13]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13, typename T14>
|
|
struct InvokerActionInvoker14<T1*, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*, T12*, T13*, T14*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11, T12* p12, T13* p13, T14* p14)
|
|
{
|
|
void* params[14] = { p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[13]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13, typename T14, typename T15>
|
|
struct InvokerActionInvoker15;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13, typename T14, typename T15>
|
|
struct InvokerActionInvoker15<T1, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*, T12*, T13*, T14*, T15*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11, T12* p12, T13* p13, T14* p14, T15* p15)
|
|
{
|
|
void* params[15] = { &p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[14]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13, typename T14, typename T15>
|
|
struct InvokerActionInvoker15<T1*, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*, T12*, T13*, T14*, T15*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11, T12* p12, T13* p13, T14* p14, T15* p15)
|
|
{
|
|
void* params[15] = { p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[14]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13, typename T14, typename T15, typename T16>
|
|
struct InvokerActionInvoker16;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13, typename T14, typename T15, typename T16>
|
|
struct InvokerActionInvoker16<T1, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*, T12*, T13*, T14*, T15*, T16*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11, T12* p12, T13* p13, T14* p14, T15* p15, T16* p16)
|
|
{
|
|
void* params[16] = { &p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[15]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13, typename T14, typename T15, typename T16>
|
|
struct InvokerActionInvoker16<T1*, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*, T12*, T13*, T14*, T15*, T16*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11, T12* p12, T13* p13, T14* p14, T15* p15, T16* p16)
|
|
{
|
|
void* params[16] = { p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[15]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13, typename T14, typename T15, typename T16, typename T17>
|
|
struct InvokerActionInvoker17;
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13, typename T14, typename T15, typename T16, typename T17>
|
|
struct InvokerActionInvoker17<T1, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*, T12*, T13*, T14*, T15*, T16*, T17*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1 p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11, T12* p12, T13* p13, T14* p14, T15* p15, T16* p16, T17* p17)
|
|
{
|
|
void* params[17] = { &p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16, p17 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[16]);
|
|
}
|
|
};
|
|
template <typename T1, typename T2, typename T3, typename T4, typename T5, typename T6, typename T7, typename T8, typename T9, typename T10, typename T11, typename T12, typename T13, typename T14, typename T15, typename T16, typename T17>
|
|
struct InvokerActionInvoker17<T1*, T2*, T3*, T4*, T5*, T6*, T7*, T8*, T9*, T10*, T11*, T12*, T13*, T14*, T15*, T16*, T17*>
|
|
{
|
|
static inline void Invoke (Il2CppMethodPointer methodPtr, const RuntimeMethod* method, void* obj, T1* p1, T2* p2, T3* p3, T4* p4, T5* p5, T6* p6, T7* p7, T8* p8, T9* p9, T10* p10, T11* p11, T12* p12, T13* p13, T14* p14, T15* p15, T16* p16, T17* p17)
|
|
{
|
|
void* params[17] = { p1, p2, p3, p4, p5, p6, p7, p8, p9, p10, p11, p12, p13, p14, p15, p16, p17 };
|
|
method->invoker_method(methodPtr, method, obj, params, params[16]);
|
|
}
|
|
};
|
|
|
|
struct ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B;
|
|
struct Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54;
|
|
struct IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897;
|
|
struct ICollection_1_tB388ED908E2D241F56264CA971F25D9ADC1ADEC3;
|
|
struct IEnumerable_1_t29E7244AE33B71FA0981E50D5BC73B7938F35C66;
|
|
struct IList_1_t8AC59FFD0F90EC2DAD4C3FA39B2A5851F9D2987A;
|
|
struct IReadOnlyCollection_1_t1F511BC3919F920A2CE8395ADAB3CAD118390587;
|
|
struct IReadOnlyList_1_t4F009AA654F0054FD0DC2D5B509CADB4CB6AECA9;
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A;
|
|
struct Utf16PreparedFormat_1_t60AA6D7289E66C218E9B23A43BFD4CCFCEE335B7;
|
|
struct Utf16PreparedFormat_10_t0167F0F0D00068E6C0FD6EDD05E17E3F66544297;
|
|
struct Utf16PreparedFormat_11_tA780F218A1C1897F0A4746DD6D1F28A1190F1157;
|
|
struct Utf16PreparedFormat_12_t55C3E518DE07513FCFCA08082119C8DD7BA93E20;
|
|
struct Utf16PreparedFormat_13_tBF8B8A3DDAD7C8427A2E3F9BB8189F7BF6E63951;
|
|
struct Utf16PreparedFormat_14_t98058A90B8B30BE357F614A9309CABB9AE506AE1;
|
|
struct Utf16PreparedFormat_15_tCEB9EAA2FAD3899307E759DB0C832C2AAA48FA92;
|
|
struct Utf16PreparedFormat_16_t56B4B23B4FCE1DE8AF3A770E93055D7C715955F6;
|
|
struct Utf16PreparedFormat_2_tD3031B67D1A7D86B1928D0D533CB1E1AC3610E43;
|
|
struct Utf16PreparedFormat_3_t5BDCB8E7AFE578EA50FEB5CF69D2841F3327915F;
|
|
struct Utf16PreparedFormat_4_tB767097A6FE1957B0076A9561DC3E3C95246364C;
|
|
struct Utf16PreparedFormat_5_t7ADFB7D8098889C9454E18C865CA7F296D478D76;
|
|
struct Utf16PreparedFormat_6_t263378D82056B59A487F4274A92C51F1043AB9A2;
|
|
struct Utf16PreparedFormat_7_t26B62A71D0F1D40B6685006B65C4F29E1BFE188A;
|
|
struct Utf16PreparedFormat_8_tC58368E378D3ABB4659AD20A6CD8572441B167A8;
|
|
struct Utf16PreparedFormat_9_t18BCB7778CAD55FD9B8B3863D2BFF52680AAF201;
|
|
struct Utf8PreparedFormat_1_tD454008758C50824939B411D176B2F77663E4750;
|
|
struct Utf8PreparedFormat_10_t86A33189BF4F6AFD85748BAC517AD3E361B2E790;
|
|
struct Utf8PreparedFormat_11_t1B23BB9DDB1721B20D72498F472DF327B4BF19B8;
|
|
struct Utf8PreparedFormat_12_tA10BF642422D6B7276ABDF5D30AE921997507334;
|
|
struct Utf8PreparedFormat_13_t36CB94F85EF6948B8DBC74B7E2FBC72066A8D5D0;
|
|
struct Utf8PreparedFormat_14_tD9AA229E73E57FFFC24D7E6147723C4AD7BFC7F1;
|
|
struct Utf8PreparedFormat_15_tE443889EE12CB72C0DB7A24461184B165EA6FBCB;
|
|
struct Utf8PreparedFormat_16_t71F70BCE926D660AB6A8363333DA0B66C71F272E;
|
|
struct Utf8PreparedFormat_2_t66606FEDF9EB7A4379FE82947579C3B8481B1C5B;
|
|
struct Utf8PreparedFormat_3_t1E85C2275649E0E6BA33822FEA565C0DAA66EF50;
|
|
struct Utf8PreparedFormat_4_t9DFFC45B890CCA5C68ECAA678384E535793C8C72;
|
|
struct Utf8PreparedFormat_5_tC66C66B6D1843DECD21C3BC8CC014601B5A520E6;
|
|
struct Utf8PreparedFormat_6_t5C4EB71EFBEE03BA8AB84B26FDE19C6BD8C0B875;
|
|
struct Utf8PreparedFormat_7_tBDAAD819BAC06FA8BFF62900540740801C9C2BC8;
|
|
struct Utf8PreparedFormat_8_t16AFCCB68218D3307E3885204A139135B964B9D9;
|
|
struct Utf8PreparedFormat_9_t9FCB52A02BA08D2460206E62E222B4A46C752EAF;
|
|
struct AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001;
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct DoubleU5BU5D_tCC308475BD3B8229DB2582938669EF2F9ECC1FEE;
|
|
struct Int16U5BU5D_t8175CE8DD9C9F9FB0CF4F58E45BC570575B43CFB;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D;
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
struct SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913;
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
struct Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD;
|
|
struct Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847;
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
struct AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0;
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
struct CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2;
|
|
struct DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90;
|
|
struct EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293;
|
|
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095;
|
|
struct Exception_t;
|
|
struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B;
|
|
struct GlobalJavaObjectRef_t20D8E5AAFC2EB2518FCABBF40465855E797FF0D8;
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
struct IFormatProvider_tC202922D43BFF3525109ABF3FB79625F5646AB52;
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
struct String_t;
|
|
struct Type_t;
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* _AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral24CC8D396132365E532646F936DFC8579E2299B2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral256786EE327E637AAD0A04FC808B31A6B18120EA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral33338DE87F2A029DA9317ECF1A93AF158A060E36;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3B69DC5123902CCEB5F543CC8C90A7804B54259A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral83088F1068E2EA43519F1DC631CB4A130848670A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralE65C938B36DF53938C3DB40A7D8AE09A05ED61D9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFB177A61A98D4F6101A8CD435D326073935BF35D;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ArrayPool_1_get_Shared_m8EB88B4EDF81135B55DB0F33A749B8087FE4646F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MemoryExtensions_AsSpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mA4CB919BC75EECE15369129A6636919CBA5569BF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeType* AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001;
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031;
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB;
|
|
struct DoubleU5BU5D_tCC308475BD3B8229DB2582938669EF2F9ECC1FEE;
|
|
struct Int16U5BU5D_t8175CE8DD9C9F9FB0CF4F58E45BC570575B43CFB;
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D;
|
|
struct SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913;
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
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 ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B : public RuntimeObject
|
|
{
|
|
};
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A : public RuntimeObject
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ____items;
|
|
int32_t ____size;
|
|
int32_t ____version;
|
|
RuntimeObject* ____syncRoot;
|
|
};
|
|
struct Utf16PreparedFormat_1_t60AA6D7289E66C218E9B23A43BFD4CCFCEE335B7 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_10_t0167F0F0D00068E6C0FD6EDD05E17E3F66544297 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_11_tA780F218A1C1897F0A4746DD6D1F28A1190F1157 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_12_t55C3E518DE07513FCFCA08082119C8DD7BA93E20 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_13_tBF8B8A3DDAD7C8427A2E3F9BB8189F7BF6E63951 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_14_t98058A90B8B30BE357F614A9309CABB9AE506AE1 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_15_tCEB9EAA2FAD3899307E759DB0C832C2AAA48FA92 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_16_t56B4B23B4FCE1DE8AF3A770E93055D7C715955F6 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_2_tD3031B67D1A7D86B1928D0D533CB1E1AC3610E43 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_3_t5BDCB8E7AFE578EA50FEB5CF69D2841F3327915F : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_4_tB767097A6FE1957B0076A9561DC3E3C95246364C : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_5_t7ADFB7D8098889C9454E18C865CA7F296D478D76 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_6_t263378D82056B59A487F4274A92C51F1043AB9A2 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_7_t26B62A71D0F1D40B6685006B65C4F29E1BFE188A : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_8_tC58368E378D3ABB4659AD20A6CD8572441B167A8 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf16PreparedFormat_9_t18BCB7778CAD55FD9B8B3863D2BFF52680AAF201 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf16FormatSegmentU5BU5D_t02394FA5E2FC8B2D98375F89F91D42AF4ABE0CCD* ___segments;
|
|
};
|
|
struct Utf8PreparedFormat_1_tD454008758C50824939B411D176B2F77663E4750 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_10_t86A33189BF4F6AFD85748BAC517AD3E361B2E790 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_11_t1B23BB9DDB1721B20D72498F472DF327B4BF19B8 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_12_tA10BF642422D6B7276ABDF5D30AE921997507334 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_13_t36CB94F85EF6948B8DBC74B7E2FBC72066A8D5D0 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_14_tD9AA229E73E57FFFC24D7E6147723C4AD7BFC7F1 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_15_tE443889EE12CB72C0DB7A24461184B165EA6FBCB : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_16_t71F70BCE926D660AB6A8363333DA0B66C71F272E : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_2_t66606FEDF9EB7A4379FE82947579C3B8481B1C5B : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_3_t1E85C2275649E0E6BA33822FEA565C0DAA66EF50 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_4_t9DFFC45B890CCA5C68ECAA678384E535793C8C72 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_5_tC66C66B6D1843DECD21C3BC8CC014601B5A520E6 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_6_t5C4EB71EFBEE03BA8AB84B26FDE19C6BD8C0B875 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_7_tBDAAD819BAC06FA8BFF62900540740801C9C2BC8 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_8_t16AFCCB68218D3307E3885204A139135B964B9D9 : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct Utf8PreparedFormat_9_t9FCB52A02BA08D2460206E62E222B4A46C752EAF : public RuntimeObject
|
|
{
|
|
String_t* ___U3CFormatStringU3Ek__BackingField;
|
|
int32_t ___U3CMinSizeU3Ek__BackingField;
|
|
Utf8FormatSegmentU5BU5D_tAD3B461B1A2F0DCA4544C3B34304100B6B356847* ___segments;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___utf8PreEncodedbuffer;
|
|
};
|
|
struct AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0 : public RuntimeObject
|
|
{
|
|
GlobalJavaObjectRef_t20D8E5AAFC2EB2518FCABBF40465855E797FF0D8* ___m_jobject;
|
|
GlobalJavaObjectRef_t20D8E5AAFC2EB2518FCABBF40465855E797FF0D8* ___m_jclass;
|
|
};
|
|
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095 : public RuntimeObject
|
|
{
|
|
int32_t ___m_codePage;
|
|
CodePageDataItem_t52460FA30AE37F4F26ACB81055E58002262F19F2* ___dataItem;
|
|
bool ___m_deserializedFromEverett;
|
|
bool ___m_isReadOnly;
|
|
EncoderFallback_tD2C40CE114AA9D8E1F7196608B2D088548015293* ___encoderFallback;
|
|
DecoderFallback_t7324102215E4ED41EC065C02EB501CB0BC23CD90* ___decoderFallback;
|
|
};
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
int32_t ____stringLength;
|
|
Il2CppChar ____firstChar;
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F : public RuntimeObject
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F_marshaled_com
|
|
{
|
|
};
|
|
struct ZString_t83B695B80A3D55672763B8459D632319061B6906 : public RuntimeObject
|
|
{
|
|
};
|
|
struct _AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3 : public RuntimeObject
|
|
{
|
|
};
|
|
struct ReadOnlyListAdaptor_1_tBFCA480E6C2E698D93F07ACF26582DF92E020484
|
|
{
|
|
RuntimeObject* ____list;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22
|
|
{
|
|
bool ___m_value;
|
|
};
|
|
struct Byte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3
|
|
{
|
|
uint8_t ___m_value;
|
|
};
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17
|
|
{
|
|
Il2CppChar ___m_value;
|
|
};
|
|
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D
|
|
{
|
|
uint64_t ____dateData;
|
|
};
|
|
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
|
|
{
|
|
double ___m_value;
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2 : public ValueType_t6D9B272BD21782F0A9A14F2E41F85A50E97A986F
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_pinvoke
|
|
{
|
|
};
|
|
struct Enum_t2A1A94B24E3B776EEF4E5E485E290BB9D4D072E2_marshaled_com
|
|
{
|
|
};
|
|
struct Int16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175
|
|
{
|
|
int16_t ___m_value;
|
|
};
|
|
struct Int32_t680FF22E76F6EFAD4375103CBBFFA0421349384C
|
|
{
|
|
int32_t ___m_value;
|
|
};
|
|
struct Int64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3
|
|
{
|
|
int64_t ___m_value;
|
|
};
|
|
struct IntPtr_t
|
|
{
|
|
void* ___m_value;
|
|
};
|
|
struct RefreshRate_t44FF0D3F256477CC8AB97FA49D08B636AFB4F68F
|
|
{
|
|
uint32_t ___numerator;
|
|
uint32_t ___denominator;
|
|
};
|
|
struct SByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5
|
|
{
|
|
int8_t ___m_value;
|
|
};
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
float ___m_value;
|
|
};
|
|
struct StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF
|
|
{
|
|
uint8_t ____format;
|
|
uint8_t ____precision;
|
|
};
|
|
struct TypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300
|
|
{
|
|
Type_t* ___m_Type;
|
|
String_t* ___m_Name;
|
|
};
|
|
struct Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___buffer;
|
|
int32_t ___index;
|
|
bool ___disposeImmediately;
|
|
};
|
|
struct Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_marshaled_pinvoke
|
|
{
|
|
uint8_t* ___buffer;
|
|
int32_t ___index;
|
|
int32_t ___disposeImmediately;
|
|
};
|
|
struct Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_marshaled_com
|
|
{
|
|
uint8_t* ___buffer;
|
|
int32_t ___index;
|
|
int32_t ___disposeImmediately;
|
|
};
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
};
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2
|
|
{
|
|
float ___x;
|
|
float ___y;
|
|
float ___z;
|
|
};
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
struct ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC
|
|
{
|
|
intptr_t ____value;
|
|
};
|
|
struct ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5
|
|
{
|
|
intptr_t ____value;
|
|
};
|
|
struct ByReference_1_t607C1F3BC28B0E21B969461CDB0720FB01A82141
|
|
{
|
|
intptr_t ____value;
|
|
};
|
|
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 ExceptionArgument_t60E7F8D9DE5362CBE9365893983C30302D83B778
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct Int32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C
|
|
{
|
|
int32_t ___value__;
|
|
};
|
|
struct RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B
|
|
{
|
|
intptr_t ___value;
|
|
};
|
|
struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0 : public RuntimeObject
|
|
{
|
|
intptr_t ___Bounds;
|
|
intptr_t ___Count;
|
|
uint8_t ___Data;
|
|
};
|
|
struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0_marshaled_pinvoke
|
|
{
|
|
intptr_t ___Bounds;
|
|
intptr_t ___Count;
|
|
uint8_t ___Data;
|
|
};
|
|
struct RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0_marshaled_com
|
|
{
|
|
intptr_t ___Bounds;
|
|
intptr_t ___Count;
|
|
uint8_t ___Data;
|
|
};
|
|
struct ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1
|
|
{
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer;
|
|
int32_t ____length;
|
|
};
|
|
struct ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC
|
|
{
|
|
ByReference_1_t607C1F3BC28B0E21B969461CDB0720FB01A82141 ____pointer;
|
|
int32_t ____length;
|
|
};
|
|
struct Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305
|
|
{
|
|
ByReference_1_t9C85BCCAAF8C525B6C06B07E922D8D217BE8D6FC ____pointer;
|
|
int32_t ____length;
|
|
};
|
|
struct Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D
|
|
{
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 ____pointer;
|
|
int32_t ____length;
|
|
};
|
|
struct Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54
|
|
{
|
|
ByReference_1_t607C1F3BC28B0E21B969461CDB0720FB01A82141 ____pointer;
|
|
int32_t ____length;
|
|
};
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
struct Type_t : public MemberInfo_t
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B ____impl;
|
|
};
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263 : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
String_t* ____paramName;
|
|
};
|
|
struct FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
struct ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A
|
|
{
|
|
int32_t ___Index;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___FormatString;
|
|
int32_t ___LastIndex;
|
|
int32_t ___Alignment;
|
|
};
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
};
|
|
struct ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B_StaticFields
|
|
{
|
|
ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B* ___U3CSharedU3Ek__BackingField;
|
|
};
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A_StaticFields
|
|
{
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___s_emptyArray;
|
|
};
|
|
struct AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_StaticFields
|
|
{
|
|
bool ___enableDebugPrints;
|
|
};
|
|
struct Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095_StaticFields
|
|
{
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___defaultEncoding;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___unicodeEncoding;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___bigEndianUnicode;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf7Encoding;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf8Encoding;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___utf32Encoding;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___asciiEncoding;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___latin1Encoding;
|
|
Dictionary_2_t87EDE08B2E48F793A22DE50D6B3CC2E7EBB2DB54* ___encodings;
|
|
RuntimeObject* ___s_InternalSyncObject;
|
|
};
|
|
struct String_t_StaticFields
|
|
{
|
|
String_t* ___Empty;
|
|
};
|
|
struct ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields
|
|
{
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* ___UTF8NoBom;
|
|
};
|
|
struct _AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields
|
|
{
|
|
int32_t ___FRAME_SIZE_FOR_ARRAYS;
|
|
};
|
|
struct Boolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_StaticFields
|
|
{
|
|
String_t* ___TrueString;
|
|
String_t* ___FalseString;
|
|
};
|
|
struct Char_t521A6F19B456D956AF452D926C32709DC03D6B17_StaticFields
|
|
{
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* ___s_categoryForLatin1;
|
|
};
|
|
struct DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_StaticFields
|
|
{
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth365;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___s_daysToMonth366;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MinValue;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___MaxValue;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___UnixEpoch;
|
|
};
|
|
struct IntPtr_t_StaticFields
|
|
{
|
|
intptr_t ___Zero;
|
|
};
|
|
struct Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_StaticFields
|
|
{
|
|
Il2CppChar ___newLine1;
|
|
Il2CppChar ___newLine2;
|
|
bool ___crlf;
|
|
};
|
|
struct Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_ThreadStaticFields
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___scratchBuffer;
|
|
bool ___scratchBufferUsed;
|
|
};
|
|
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 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 Exception_t_StaticFields
|
|
{
|
|
RuntimeObject* ___s_EDILock;
|
|
};
|
|
struct Type_t_StaticFields
|
|
{
|
|
Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235* ___s_defaultBinder;
|
|
Il2CppChar ___Delimiter;
|
|
TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB* ___EmptyTypes;
|
|
RuntimeObject* ___Missing;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterAttribute;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterName;
|
|
MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553* ___FilterNameIgnoreCase;
|
|
};
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + il2cpp_array_calc_byte_offset(this, index);
|
|
}
|
|
};
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) String_t* m_Items[1];
|
|
|
|
inline String_t* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline String_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, String_t* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
struct AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* m_Items[1];
|
|
|
|
inline AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0** 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, AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* 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 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;
|
|
}
|
|
};
|
|
struct ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) uint8_t m_Items[1];
|
|
|
|
inline uint8_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline uint8_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, uint8_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int8_t m_Items[1];
|
|
|
|
inline int8_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int8_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, int8_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int8_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int8_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int8_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct Int16U5BU5D_t8175CE8DD9C9F9FB0CF4F58E45BC570575B43CFB : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int16_t m_Items[1];
|
|
|
|
inline int16_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int16_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, int16_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int16_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int16_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int16_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) int64_t m_Items[1];
|
|
|
|
inline int64_t GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline int64_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, int64_t value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline int64_t GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline int64_t* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, int64_t value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) float m_Items[1];
|
|
|
|
inline float GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline float* 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, float value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline float GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline float* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, float value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct DoubleU5BU5D_tCC308475BD3B8229DB2582938669EF2F9ECC1FEE : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) double m_Items[1];
|
|
|
|
inline double GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline double* 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, double value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline double GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline double* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, double value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
struct CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) Il2CppChar m_Items[1];
|
|
|
|
inline Il2CppChar GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline Il2CppChar* 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, Il2CppChar value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
|
|
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m363FE1A2E489C848EF17400F6AA988EE53A40AB3_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, uint8_t ___1_arg1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFC047CA5162EF230A2EB935ABB705998D9541649_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m98C3C6509A778218946D20B41BB12EDC102248AD_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int64_t ___1_arg1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_m6FA49D8C7168BF8C264DBD78486862262B87BFDD_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, RuntimeObject* ___1_arg1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCFF32494BA455212AFFC8E5DD474F6198C7EA2AA_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, float ___1_arg1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisTypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300_m6EECCB780D61462D8C660651B6C267FEB9893DBF_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, TypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300 ___1_arg1, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m684B1EA2B02536173EB01E2102E723E12DBB8F09_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, int32_t ___2_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD3209884C0116613BB296E4975ACF000BB96E594_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, RuntimeObject* ___1_arg1, int32_t ___2_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisRuntimeObject_m194E6C7E0300DA23BBE932FDF9DB3266EF679F2D_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, RuntimeObject* ___1_arg1, RuntimeObject* ___2_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisRuntimeObject_m62C56070FBEB1C31D4B448EF59EF169FF7F134D1_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, float ___1_arg1, RuntimeObject* ___2_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m1F5B1A197BE792B3A2FD05823FBE57B02B4A5F78_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_arg1, float ___2_arg2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRefreshRate_t44FF0D3F256477CC8AB97FA49D08B636AFB4F68F_mA64F522519AB5DCD601462997847518F73465ADE_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, int32_t ___2_arg2, RefreshRate_t44FF0D3F256477CC8AB97FA49D08B636AFB4F68F ___3_arg3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCD5FC10714FDE6BBCBB81FF52962833C55E1AACD_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, int32_t ___2_arg2, float ___3_arg3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_mE593265E712BF632591B0390069B22DC26244EE1_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, RuntimeObject* ___2_arg2, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___3_arg3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mBAD59D551ADB4E5B5CF2AF78B688C703F363F01F_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, float ___2_arg2, float ___3_arg3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_m0111F99159133060D01EFF897992A8E8450758DD_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, RuntimeObject* ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisTypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300_TisRuntimeObject_TisRuntimeObject_mDB187CE1121D5E82086ED8969599CEF5E84AACB7_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, TypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300 ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_mBD64D558FC8A22002792D412CEBE6370D9DCA3D9_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___4_arg4, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_mF1ED8D21FD92A1FF12F1F36186C20C356B9DF32F_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, RuntimeObject* ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, RuntimeObject* ___4_arg4, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mC72A35906503AAF773F95C935A5EB6279394E4F9_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, uint8_t ___1_arg1, uint8_t ___2_arg2, uint8_t ___3_arg3, uint8_t ___4_arg4, float ___5_arg5, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m7F7889E5CE88C91257012E2B295B4B1AA4D7BD89_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_arg1, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___2_arg2, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___3_arg3, float ___4_arg4, int32_t ___5_arg5, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA005995BD01012DD3AD3B3E6A07610BEDDC0C01_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, Il2CppChar ___1_arg1, Il2CppChar ___2_arg2, Il2CppChar ___3_arg3, Il2CppChar ___4_arg4, Il2CppChar ___5_arg5, Il2CppChar ___6_arg6, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_m1D017EECBEB99183CFE4FC8239BDE23054EE2EBB_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___4_arg4, int32_t ___5_arg5, RuntimeObject* ___6_arg6, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_mE542F9B2952A679DD059CCF2968FF03E5AE66B2E_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, uint8_t ___1_arg1, uint8_t ___2_arg2, uint8_t ___3_arg3, uint8_t ___4_arg4, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___5_arg5, int32_t ___6_arg6, RuntimeObject* ___7_arg7, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_m2B02A03DE48E7061E1E0539F219344317967D633_gshared (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, uint8_t ___1_arg1, uint8_t ___2_arg2, uint8_t ___3_arg3, uint8_t ___4_arg4, RuntimeObject* ___5_arg5, RuntimeObject* ___6_arg6, RuntimeObject* ___7_arg7, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_gshared (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_span, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlyListAdaptor_1__ctor_m2D097C7912B71BFF8538B85CB906070396EF38E0_gshared_inline (ReadOnlyListAdaptor_1_tBFCA480E6C2E698D93F07ACF26582DF92E020484* __this, RuntimeObject* ___0_list, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B* ArrayPool_1_get_Shared_m8EB88B4EDF81135B55DB0F33A749B8087FE4646F_gshared_inline (const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D MemoryExtensions_AsSpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mA4CB919BC75EECE15369129A6636919CBA5569BF_gshared_inline (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_array, int32_t ___1_start, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, bool ___0_disposeImmediately, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, 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_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC (Type_t* ___0_left, Type_t* ___1_right, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, const RuntimeMethod* method) ;
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m363FE1A2E489C848EF17400F6AA988EE53A40AB3 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, uint8_t ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, uint8_t, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m363FE1A2E489C848EF17400F6AA988EE53A40AB3_gshared)(__this, ___0_format, ___1_arg1, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFC047CA5162EF230A2EB935ABB705998D9541649 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, int32_t, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFC047CA5162EF230A2EB935ABB705998D9541649_gshared)(__this, ___0_format, ___1_arg1, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m98C3C6509A778218946D20B41BB12EDC102248AD (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int64_t ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, int64_t, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m98C3C6509A778218946D20B41BB12EDC102248AD_gshared)(__this, ___0_format, ___1_arg1, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_m6FA49D8C7168BF8C264DBD78486862262B87BFDD (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, RuntimeObject* ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, RuntimeObject*, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_m6FA49D8C7168BF8C264DBD78486862262B87BFDD_gshared)(__this, ___0_format, ___1_arg1, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCFF32494BA455212AFFC8E5DD474F6198C7EA2AA (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, float ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, float, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCFF32494BA455212AFFC8E5DD474F6198C7EA2AA_gshared)(__this, ___0_format, ___1_arg1, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisTypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300_m6EECCB780D61462D8C660651B6C267FEB9893DBF (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, TypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300 ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, TypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisTypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300_m6EECCB780D61462D8C660651B6C267FEB9893DBF_gshared)(__this, ___0_format, ___1_arg1, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m684B1EA2B02536173EB01E2102E723E12DBB8F09 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, int32_t ___2_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, int32_t, int32_t, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m684B1EA2B02536173EB01E2102E723E12DBB8F09_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD3209884C0116613BB296E4975ACF000BB96E594 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, RuntimeObject* ___1_arg1, int32_t ___2_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, RuntimeObject*, int32_t, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD3209884C0116613BB296E4975ACF000BB96E594_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisRuntimeObject_m194E6C7E0300DA23BBE932FDF9DB3266EF679F2D (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, RuntimeObject* ___1_arg1, RuntimeObject* ___2_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisRuntimeObject_m194E6C7E0300DA23BBE932FDF9DB3266EF679F2D_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisRuntimeObject_m62C56070FBEB1C31D4B448EF59EF169FF7F134D1 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, float ___1_arg1, RuntimeObject* ___2_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, float, RuntimeObject*, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisRuntimeObject_m62C56070FBEB1C31D4B448EF59EF169FF7F134D1_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m1F5B1A197BE792B3A2FD05823FBE57B02B4A5F78 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_arg1, float ___2_arg2, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2, float, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m1F5B1A197BE792B3A2FD05823FBE57B02B4A5F78_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRefreshRate_t44FF0D3F256477CC8AB97FA49D08B636AFB4F68F_mA64F522519AB5DCD601462997847518F73465ADE (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, int32_t ___2_arg2, RefreshRate_t44FF0D3F256477CC8AB97FA49D08B636AFB4F68F ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, int32_t, int32_t, RefreshRate_t44FF0D3F256477CC8AB97FA49D08B636AFB4F68F, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRefreshRate_t44FF0D3F256477CC8AB97FA49D08B636AFB4F68F_mA64F522519AB5DCD601462997847518F73465ADE_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCD5FC10714FDE6BBCBB81FF52962833C55E1AACD (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, int32_t ___2_arg2, float ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, int32_t, int32_t, float, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCD5FC10714FDE6BBCBB81FF52962833C55E1AACD_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_mE593265E712BF632591B0390069B22DC26244EE1 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, RuntimeObject* ___2_arg2, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, int32_t, RuntimeObject*, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_mE593265E712BF632591B0390069B22DC26244EE1_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mBAD59D551ADB4E5B5CF2AF78B688C703F363F01F (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, float ___2_arg2, float ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, int32_t, float, float, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mBAD59D551ADB4E5B5CF2AF78B688C703F363F01F_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_m0111F99159133060D01EFF897992A8E8450758DD (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, RuntimeObject* ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_m0111F99159133060D01EFF897992A8E8450758DD_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisTypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300_TisRuntimeObject_TisRuntimeObject_mDB187CE1121D5E82086ED8969599CEF5E84AACB7 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, TypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300 ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, TypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisTypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300_TisRuntimeObject_TisRuntimeObject_mDB187CE1121D5E82086ED8969599CEF5E84AACB7_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_mBD64D558FC8A22002792D412CEBE6370D9DCA3D9 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___4_arg4, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, int32_t, RuntimeObject*, RuntimeObject*, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_mBD64D558FC8A22002792D412CEBE6370D9DCA3D9_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, ___4_arg4, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_mF1ED8D21FD92A1FF12F1F36186C20C356B9DF32F (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, RuntimeObject* ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, RuntimeObject* ___4_arg4, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, RuntimeObject*, RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_mF1ED8D21FD92A1FF12F1F36186C20C356B9DF32F_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, ___4_arg4, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mC72A35906503AAF773F95C935A5EB6279394E4F9 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, uint8_t ___1_arg1, uint8_t ___2_arg2, uint8_t ___3_arg3, uint8_t ___4_arg4, float ___5_arg5, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, uint8_t, uint8_t, uint8_t, uint8_t, float, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mC72A35906503AAF773F95C935A5EB6279394E4F9_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, ___4_arg4, ___5_arg5, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m7F7889E5CE88C91257012E2B295B4B1AA4D7BD89 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_arg1, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___2_arg2, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___3_arg3, float ___4_arg4, int32_t ___5_arg5, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, float, int32_t, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m7F7889E5CE88C91257012E2B295B4B1AA4D7BD89_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, ___4_arg4, ___5_arg5, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA005995BD01012DD3AD3B3E6A07610BEDDC0C01 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, Il2CppChar ___1_arg1, Il2CppChar ___2_arg2, Il2CppChar ___3_arg3, Il2CppChar ___4_arg4, Il2CppChar ___5_arg5, Il2CppChar ___6_arg6, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, Il2CppChar, Il2CppChar, Il2CppChar, Il2CppChar, Il2CppChar, Il2CppChar, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA005995BD01012DD3AD3B3E6A07610BEDDC0C01_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, ___4_arg4, ___5_arg5, ___6_arg6, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_m1D017EECBEB99183CFE4FC8239BDE23054EE2EBB (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, int32_t ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___4_arg4, int32_t ___5_arg5, RuntimeObject* ___6_arg6, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, int32_t, RuntimeObject*, RuntimeObject*, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D, int32_t, RuntimeObject*, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_m1D017EECBEB99183CFE4FC8239BDE23054EE2EBB_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, ___4_arg4, ___5_arg5, ___6_arg6, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_mE542F9B2952A679DD059CCF2968FF03E5AE66B2E (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, uint8_t ___1_arg1, uint8_t ___2_arg2, uint8_t ___3_arg3, uint8_t ___4_arg4, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___5_arg5, int32_t ___6_arg6, RuntimeObject* ___7_arg7, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, uint8_t, uint8_t, uint8_t, uint8_t, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D, int32_t, RuntimeObject*, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_mE542F9B2952A679DD059CCF2968FF03E5AE66B2E_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, ___4_arg4, ___5_arg5, ___6_arg6, ___7_arg7, method);
|
|
}
|
|
inline void Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_m2B02A03DE48E7061E1E0539F219344317967D633 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_format, uint8_t ___1_arg1, uint8_t ___2_arg2, uint8_t ___3_arg3, uint8_t ___4_arg4, RuntimeObject* ___5_arg5, RuntimeObject* ___6_arg6, RuntimeObject* ___7_arg7, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, String_t*, uint8_t, uint8_t, uint8_t, uint8_t, RuntimeObject*, RuntimeObject*, RuntimeObject*, const RuntimeMethod*))Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_m2B02A03DE48E7061E1E0539F219344317967D633_gshared)(__this, ___0_format, ___1_arg1, ___2_arg2, ___3_arg3, ___4_arg4, ___5_arg5, ___6_arg6, ___7_arg7, method);
|
|
}
|
|
inline void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, void*, int32_t, const RuntimeMethod*))Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline)(__this, ___0_pointer, ___1_length, method);
|
|
}
|
|
inline ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4 (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_span, const RuntimeMethod* method)
|
|
{
|
|
return (( ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D, const RuntimeMethod*))Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_gshared)(___0_span, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline (String_t* ___0_text, const RuntimeMethod* method) ;
|
|
inline void ReadOnlyListAdaptor_1__ctor_m2D097C7912B71BFF8538B85CB906070396EF38E0_inline (ReadOnlyListAdaptor_1_tBFCA480E6C2E698D93F07ACF26582DF92E020484* __this, RuntimeObject* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlyListAdaptor_1_tBFCA480E6C2E698D93F07ACF26582DF92E020484*, RuntimeObject*, const RuntimeMethod*))ReadOnlyListAdaptor_1__ctor_m2D097C7912B71BFF8538B85CB906070396EF38E0_gshared_inline)(__this, ___0_list, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3 (String_t* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline (String_t* ___0_text, int32_t ___1_start, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline (String_t* ___0_format, int32_t ___1_i, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool AndroidReflection_IsPrimitive_mA41A9ECECE3D73679C79DC8B0FDD32B59570DF25 (Type_t* ___0_t, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* AndroidJNISafe_FromIntArray_mC4C4DC70FFA39CD6E3E02FDAC7192324E6D4614E (intptr_t ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* AndroidJNISafe_FromBooleanArray_m36ED740401185EC0A959CA0F96A324A69E668646 (intptr_t ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* AndroidJNISafe_FromByteArray_mB06EF0FDBF6C738231E8F9D4998C38551131C4C5 (intptr_t ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* AndroidJNISafe_FromSByteArray_m261D638D8B059AB777BEF0BEFDD0822717DFF2B1 (intptr_t ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int16U5BU5D_t8175CE8DD9C9F9FB0CF4F58E45BC570575B43CFB* AndroidJNISafe_FromShortArray_m62C0CB2D0BAE96D4B8CE365630361150EBE884FC (intptr_t ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* AndroidJNISafe_FromLongArray_mC4D73C0DA27F212947AB85AA2030A35BECDF8288 (intptr_t ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* AndroidJNISafe_FromFloatArray_mDE02985159EEFD2CB28611C797AC21DE8B6300B8 (intptr_t ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR DoubleU5BU5D_tCC308475BD3B8229DB2582938669EF2F9ECC1FEE* AndroidJNISafe_FromDoubleArray_mDEA8F2C7854101272F3A2733F351B570AAD5D9D9 (intptr_t ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* AndroidJNISafe_FromCharArray_m54EDC9D2BE92F9973F4E00EE953EE242B231EA96 (intptr_t ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F (intptr_t ___0_array, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B (int32_t ___0_capacity, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609 (intptr_t ___0_ptr, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE (intptr_t ___0_array, int32_t ___1_index, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* AndroidJNISafe_GetStringChars_mE246814CD8FF4EDDEE6EBF107367C4A8EAF03849 (intptr_t ___0_str, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AndroidJavaObject__ctor_m0CEE7D570807333CE2C193A82AB3AB8D4F873A6B (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* __this, intptr_t ___0_jobject, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F (Exception_t* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_ThrowNestedException_mA0C15DF423CF71BA364C3B5CF1E12A787CAA64F6 (const RuntimeMethod* method) ;
|
|
inline ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B* ArrayPool_1_get_Shared_m8EB88B4EDF81135B55DB0F33A749B8087FE4646F_inline (const RuntimeMethod* method)
|
|
{
|
|
return (( ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B* (*) (const RuntimeMethod*))ArrayPool_1_get_Shared_m8EB88B4EDF81135B55DB0F33A749B8087FE4646F_gshared_inline)(method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_Append_m38E3D512CE8BCE983294FAC3BC669E708ADC9200_inline (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, const RuntimeMethod* method) ;
|
|
inline Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D MemoryExtensions_AsSpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mA4CB919BC75EECE15369129A6636919CBA5569BF_inline (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_array, int32_t ___1_start, const RuntimeMethod* method)
|
|
{
|
|
return (( Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D (*) (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t, const RuntimeMethod*))MemoryExtensions_AsSpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mA4CB919BC75EECE15369129A6636919CBA5569BF_gshared_inline)(___0_array, ___1_start, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Int32_TryFormat_m09C5DAC7B8CB25D5D7FAEB7043384D0B05679A1A (int32_t* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, int32_t* ___1_charsWritten, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___2_format, RuntimeObject* ___3_provider, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_Grow_mD6B54B7C7FC4FDA7D4B9BA46F741EEB4100DD359 (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, int32_t ___0_sizeHint, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_ThrowArgumentException_mA28B474FC8F192818F802CCDB026D43A87AD76DA (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar* String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D (String_t* __this, const RuntimeMethod* method) ;
|
|
inline void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, Il2CppChar*, int32_t, const RuntimeMethod*))ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline)(__this, ___0_ptr, ___1_length, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_m9B335696876184D17D1F8D7AF94C1B5B0869AA97 (int32_t ___0_argument, const RuntimeMethod* method) ;
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FormatParser_IsDigit_m5419D5E5B6C049D06D6A73373A2C7E0BFBFD4937_inline (Il2CppChar ___0_c, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExceptionUtil_ThrowFormatError_m3E01A23A5D59A42DCB5F431C8A2182FF66B22D19 (const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParseResult__ctor_mC46F2B6B483CBCAF3EF4B5CAB2CFA477301775C2 (ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A* __this, int32_t ___0_index, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___1_formatString, int32_t ___2_lastIndex, int32_t ___3_alignment, const RuntimeMethod* method) ;
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56 (const RuntimeMethod* method) ;
|
|
inline int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, const RuntimeMethod*))ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline)(__this, method);
|
|
}
|
|
inline void ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030 (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D ___0_destination, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1*, Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D, const RuntimeMethod*))ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_gshared)(__this, ___0_destination, method);
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline (RuntimeArray* __this, const RuntimeMethod* method) ;
|
|
inline void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D*, Il2CppChar*, int32_t, const RuntimeMethod*))Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline)(__this, ___0_ptr, ___1_length, method);
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Concat_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m81A19F0A78E2E9661489566A40EB4F8B364BE652_gshared (Il2CppFullySharedGenericAny ___0_arg1, Il2CppFullySharedGenericAny ___1_arg2, Il2CppFullySharedGenericAny ___2_arg3, Il2CppFullySharedGenericAny ___3_arg4, Il2CppFullySharedGenericAny ___4_arg5, Il2CppFullySharedGenericAny ___5_arg6, Il2CppFullySharedGenericAny ___6_arg7, Il2CppFullySharedGenericAny ___7_arg8, Il2CppFullySharedGenericAny ___8_arg9, Il2CppFullySharedGenericAny ___9_arg10, Il2CppFullySharedGenericAny ___10_arg11, Il2CppFullySharedGenericAny ___11_arg12, Il2CppFullySharedGenericAny ___12_arg13, Il2CppFullySharedGenericAny ___13_arg14, Il2CppFullySharedGenericAny ___14_arg15, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t5E0D425F3753E6E99712F45273FFC3C50116D2F6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T2_tAA66D472E2F61C2FB57C333F46CD25030F9FB521 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T3_t39EFC1FDF8348ED4393A4AB6005AF37119931A39 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T4_tBA8CE501CAEA45054A63010304B572EE35C00873 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const uint32_t SizeOf_T5_t2B15ADAD1CB47CBA16FDAEF1344E23B08254A2D1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 17));
|
|
const uint32_t SizeOf_T6_t459A7E09C81F6E51A884FD8B082A13E60053EBFA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 21));
|
|
const uint32_t SizeOf_T7_t8FC30187D46631E1CFE5D8EECF70BCC6831C48E6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 25));
|
|
const uint32_t SizeOf_T8_t80D93F5CA44CA27864B85B97D0F31247FCB16790 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 29));
|
|
const uint32_t SizeOf_T9_t69271FE5204C1B3C4D33721DD9E9823C4D5EA07B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 33));
|
|
const uint32_t SizeOf_T10_tFCDB6A85C0B7DE6ADE17C75C959E5BFEF8212916 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 37));
|
|
const uint32_t SizeOf_T11_tD15B96280024C5D582373FFEBBD34C6F499F82D2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 41));
|
|
const uint32_t SizeOf_T12_t13F1F77012F7107342CBBB1D56B02CA2B1065333 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 45));
|
|
const uint32_t SizeOf_T13_t044E335C8AB7D5290EC1D269C888DE633B9C817E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 49));
|
|
const uint32_t SizeOf_T14_t3D3B20F489281824A9657B1F5770B2EBAC2DC4C2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 53));
|
|
const uint32_t SizeOf_T15_t13F0D15F48B6E963D433F160CD6179D0372D102D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 57));
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T1_t5E0D425F3753E6E99712F45273FFC3C50116D2F6);
|
|
const Il2CppFullySharedGenericAny L_16 = L_5;
|
|
const Il2CppFullySharedGenericAny L_22 = alloca(SizeOf_T2_tAA66D472E2F61C2FB57C333F46CD25030F9FB521);
|
|
const Il2CppFullySharedGenericAny L_33 = L_22;
|
|
const Il2CppFullySharedGenericAny L_39 = alloca(SizeOf_T3_t39EFC1FDF8348ED4393A4AB6005AF37119931A39);
|
|
const Il2CppFullySharedGenericAny L_50 = L_39;
|
|
const Il2CppFullySharedGenericAny L_56 = alloca(SizeOf_T4_tBA8CE501CAEA45054A63010304B572EE35C00873);
|
|
const Il2CppFullySharedGenericAny L_67 = L_56;
|
|
const Il2CppFullySharedGenericAny L_73 = alloca(SizeOf_T5_t2B15ADAD1CB47CBA16FDAEF1344E23B08254A2D1);
|
|
const Il2CppFullySharedGenericAny L_84 = L_73;
|
|
const Il2CppFullySharedGenericAny L_90 = alloca(SizeOf_T6_t459A7E09C81F6E51A884FD8B082A13E60053EBFA);
|
|
const Il2CppFullySharedGenericAny L_101 = L_90;
|
|
const Il2CppFullySharedGenericAny L_107 = alloca(SizeOf_T7_t8FC30187D46631E1CFE5D8EECF70BCC6831C48E6);
|
|
const Il2CppFullySharedGenericAny L_118 = L_107;
|
|
const Il2CppFullySharedGenericAny L_124 = alloca(SizeOf_T8_t80D93F5CA44CA27864B85B97D0F31247FCB16790);
|
|
const Il2CppFullySharedGenericAny L_135 = L_124;
|
|
const Il2CppFullySharedGenericAny L_141 = alloca(SizeOf_T9_t69271FE5204C1B3C4D33721DD9E9823C4D5EA07B);
|
|
const Il2CppFullySharedGenericAny L_152 = L_141;
|
|
const Il2CppFullySharedGenericAny L_158 = alloca(SizeOf_T10_tFCDB6A85C0B7DE6ADE17C75C959E5BFEF8212916);
|
|
const Il2CppFullySharedGenericAny L_169 = L_158;
|
|
const Il2CppFullySharedGenericAny L_175 = alloca(SizeOf_T11_tD15B96280024C5D582373FFEBBD34C6F499F82D2);
|
|
const Il2CppFullySharedGenericAny L_186 = L_175;
|
|
const Il2CppFullySharedGenericAny L_192 = alloca(SizeOf_T12_t13F1F77012F7107342CBBB1D56B02CA2B1065333);
|
|
const Il2CppFullySharedGenericAny L_203 = L_192;
|
|
const Il2CppFullySharedGenericAny L_209 = alloca(SizeOf_T13_t044E335C8AB7D5290EC1D269C888DE633B9C817E);
|
|
const Il2CppFullySharedGenericAny L_220 = L_209;
|
|
const Il2CppFullySharedGenericAny L_226 = alloca(SizeOf_T14_t3D3B20F489281824A9657B1F5770B2EBAC2DC4C2);
|
|
const Il2CppFullySharedGenericAny L_237 = L_226;
|
|
const Il2CppFullySharedGenericAny L_243 = alloca(SizeOf_T15_t13F0D15F48B6E963D433F160CD6179D0372D102D);
|
|
const Il2CppFullySharedGenericAny L_254 = L_243;
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0646:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_003c_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___0_arg1 : &___0_arg1), SizeOf_T1_t5E0D425F3753E6E99712F45273FFC3C50116D2F6);
|
|
bool L_6 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 1), L_5);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0070_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_7;
|
|
L_7 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___0_arg1 : &___0_arg1));
|
|
String_t* L_8 = *((String_t**)L_7);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_8, NULL);
|
|
goto IL_0070_1;
|
|
}
|
|
|
|
IL_003c_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_10;
|
|
L_10 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_9, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_12;
|
|
L_12 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_11, NULL);
|
|
bool L_13;
|
|
L_13 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_10, L_12, NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_0068_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_14;
|
|
L_14 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___0_arg1 : &___0_arg1));
|
|
int32_t L_15 = *((int32_t*)L_14);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_15, NULL);
|
|
goto IL_0070_1;
|
|
}
|
|
|
|
IL_0068_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_16, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___0_arg1 : &___0_arg1), SizeOf_T1_t5E0D425F3753E6E99712F45273FFC3C50116D2F6);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_16: *(void**)L_16));
|
|
}
|
|
|
|
IL_0070_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 4)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_18;
|
|
L_18 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_17, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_20;
|
|
L_20 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_19, NULL);
|
|
bool L_21;
|
|
L_21 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_18, L_20, NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_00a4_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_22, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___1_arg2 : &___1_arg2), SizeOf_T2_tAA66D472E2F61C2FB57C333F46CD25030F9FB521);
|
|
bool L_23 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 5), L_22);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00d8_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_24;
|
|
L_24 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___1_arg2 : &___1_arg2));
|
|
String_t* L_25 = *((String_t**)L_24);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_25, NULL);
|
|
goto IL_00d8_1;
|
|
}
|
|
|
|
IL_00a4_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_26 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 4)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_27;
|
|
L_27 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_26, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
bool L_30;
|
|
L_30 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_27, L_29, NULL);
|
|
if (!L_30)
|
|
{
|
|
goto IL_00d0_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_31;
|
|
L_31 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___1_arg2 : &___1_arg2));
|
|
int32_t L_32 = *((int32_t*)L_31);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_32, NULL);
|
|
goto IL_00d8_1;
|
|
}
|
|
|
|
IL_00d0_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_33, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___1_arg2 : &___1_arg2), SizeOf_T2_tAA66D472E2F61C2FB57C333F46CD25030F9FB521);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_33: *(void**)L_33));
|
|
}
|
|
|
|
IL_00d8_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_34 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 8)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_35;
|
|
L_35 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_34, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_36 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_37;
|
|
L_37 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_36, NULL);
|
|
bool L_38;
|
|
L_38 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_35, L_37, NULL);
|
|
if (!L_38)
|
|
{
|
|
goto IL_010c_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_39, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___2_arg3 : &___2_arg3), SizeOf_T3_t39EFC1FDF8348ED4393A4AB6005AF37119931A39);
|
|
bool L_40 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 9), L_39);
|
|
if (!L_40)
|
|
{
|
|
goto IL_0140_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_41;
|
|
L_41 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___2_arg3 : &___2_arg3));
|
|
String_t* L_42 = *((String_t**)L_41);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_42, NULL);
|
|
goto IL_0140_1;
|
|
}
|
|
|
|
IL_010c_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_43 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 8)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_44;
|
|
L_44 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_43, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_45 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_46;
|
|
L_46 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_44, L_46, NULL);
|
|
if (!L_47)
|
|
{
|
|
goto IL_0138_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_48;
|
|
L_48 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___2_arg3 : &___2_arg3));
|
|
int32_t L_49 = *((int32_t*)L_48);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_49, NULL);
|
|
goto IL_0140_1;
|
|
}
|
|
|
|
IL_0138_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_50, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___2_arg3 : &___2_arg3), SizeOf_T3_t39EFC1FDF8348ED4393A4AB6005AF37119931A39);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_50: *(void**)L_50));
|
|
}
|
|
|
|
IL_0140_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 12)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_52;
|
|
L_52 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_51, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_53 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_54;
|
|
L_54 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_53, NULL);
|
|
bool L_55;
|
|
L_55 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_52, L_54, NULL);
|
|
if (!L_55)
|
|
{
|
|
goto IL_0174_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_56, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___3_arg4 : &___3_arg4), SizeOf_T4_tBA8CE501CAEA45054A63010304B572EE35C00873);
|
|
bool L_57 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 13), L_56);
|
|
if (!L_57)
|
|
{
|
|
goto IL_01a8_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_58;
|
|
L_58 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___3_arg4 : &___3_arg4));
|
|
String_t* L_59 = *((String_t**)L_58);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_59, NULL);
|
|
goto IL_01a8_1;
|
|
}
|
|
|
|
IL_0174_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_60 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 12)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_61;
|
|
L_61 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_60, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_62 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_63;
|
|
L_63 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_62, NULL);
|
|
bool L_64;
|
|
L_64 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_61, L_63, NULL);
|
|
if (!L_64)
|
|
{
|
|
goto IL_01a0_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_65;
|
|
L_65 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___3_arg4 : &___3_arg4));
|
|
int32_t L_66 = *((int32_t*)L_65);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_66, NULL);
|
|
goto IL_01a8_1;
|
|
}
|
|
|
|
IL_01a0_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___3_arg4 : &___3_arg4), SizeOf_T4_tBA8CE501CAEA45054A63010304B572EE35C00873);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? L_67: *(void**)L_67));
|
|
}
|
|
|
|
IL_01a8_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_68 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 16)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_69;
|
|
L_69 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_68, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_71;
|
|
L_71 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_70, NULL);
|
|
bool L_72;
|
|
L_72 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_69, L_71, NULL);
|
|
if (!L_72)
|
|
{
|
|
goto IL_01dd_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_73, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 17)) ? ___4_arg5 : &___4_arg5), SizeOf_T5_t2B15ADAD1CB47CBA16FDAEF1344E23B08254A2D1);
|
|
bool L_74 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 17), L_73);
|
|
if (!L_74)
|
|
{
|
|
goto IL_0212_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_75;
|
|
L_75 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 17)) ? ___4_arg5 : &___4_arg5));
|
|
String_t* L_76 = *((String_t**)L_75);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_76, NULL);
|
|
goto IL_0212_1;
|
|
}
|
|
|
|
IL_01dd_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_77 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 16)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_78;
|
|
L_78 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_77, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_79 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_80;
|
|
L_80 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_79, NULL);
|
|
bool L_81;
|
|
L_81 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_78, L_80, NULL);
|
|
if (!L_81)
|
|
{
|
|
goto IL_0209_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_82;
|
|
L_82 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 17)) ? ___4_arg5 : &___4_arg5));
|
|
int32_t L_83 = *((int32_t*)L_82);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_83, NULL);
|
|
goto IL_0212_1;
|
|
}
|
|
|
|
IL_0209_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_84, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 17)) ? ___4_arg5 : &___4_arg5), SizeOf_T5_t2B15ADAD1CB47CBA16FDAEF1344E23B08254A2D1);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 17)) ? L_84: *(void**)L_84));
|
|
}
|
|
|
|
IL_0212_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_85 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 20)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_86;
|
|
L_86 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_85, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_87 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_88;
|
|
L_88 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_87, NULL);
|
|
bool L_89;
|
|
L_89 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_86, L_88, NULL);
|
|
if (!L_89)
|
|
{
|
|
goto IL_0247_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_90, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 21)) ? ___5_arg6 : &___5_arg6), SizeOf_T6_t459A7E09C81F6E51A884FD8B082A13E60053EBFA);
|
|
bool L_91 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 21), L_90);
|
|
if (!L_91)
|
|
{
|
|
goto IL_027c_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_92;
|
|
L_92 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 21)) ? ___5_arg6 : &___5_arg6));
|
|
String_t* L_93 = *((String_t**)L_92);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_93, NULL);
|
|
goto IL_027c_1;
|
|
}
|
|
|
|
IL_0247_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_94 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 20)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_95;
|
|
L_95 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_94, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_96 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_97;
|
|
L_97 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_96, NULL);
|
|
bool L_98;
|
|
L_98 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_95, L_97, NULL);
|
|
if (!L_98)
|
|
{
|
|
goto IL_0273_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_99;
|
|
L_99 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 21)) ? ___5_arg6 : &___5_arg6));
|
|
int32_t L_100 = *((int32_t*)L_99);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_100, NULL);
|
|
goto IL_027c_1;
|
|
}
|
|
|
|
IL_0273_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_101, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 21)) ? ___5_arg6 : &___5_arg6), SizeOf_T6_t459A7E09C81F6E51A884FD8B082A13E60053EBFA);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 21)) ? L_101: *(void**)L_101));
|
|
}
|
|
|
|
IL_027c_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_102 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 24)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_103;
|
|
L_103 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_102, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_104 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_105;
|
|
L_105 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_104, NULL);
|
|
bool L_106;
|
|
L_106 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_103, L_105, NULL);
|
|
if (!L_106)
|
|
{
|
|
goto IL_02b1_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_107, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 25)) ? ___6_arg7 : &___6_arg7), SizeOf_T7_t8FC30187D46631E1CFE5D8EECF70BCC6831C48E6);
|
|
bool L_108 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 25), L_107);
|
|
if (!L_108)
|
|
{
|
|
goto IL_02e6_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_109;
|
|
L_109 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 25)) ? ___6_arg7 : &___6_arg7));
|
|
String_t* L_110 = *((String_t**)L_109);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_110, NULL);
|
|
goto IL_02e6_1;
|
|
}
|
|
|
|
IL_02b1_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_111 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 24)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_112;
|
|
L_112 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_111, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_113 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_114;
|
|
L_114 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_113, NULL);
|
|
bool L_115;
|
|
L_115 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_112, L_114, NULL);
|
|
if (!L_115)
|
|
{
|
|
goto IL_02dd_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_116;
|
|
L_116 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 25)) ? ___6_arg7 : &___6_arg7));
|
|
int32_t L_117 = *((int32_t*)L_116);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_117, NULL);
|
|
goto IL_02e6_1;
|
|
}
|
|
|
|
IL_02dd_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_118, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 25)) ? ___6_arg7 : &___6_arg7), SizeOf_T7_t8FC30187D46631E1CFE5D8EECF70BCC6831C48E6);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 27)), il2cpp_rgctx_method(method->rgctx_data, 27), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 25)) ? L_118: *(void**)L_118));
|
|
}
|
|
|
|
IL_02e6_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_119 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 28)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_120;
|
|
L_120 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_119, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_121 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_122;
|
|
L_122 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_121, NULL);
|
|
bool L_123;
|
|
L_123 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_120, L_122, NULL);
|
|
if (!L_123)
|
|
{
|
|
goto IL_031b_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_124, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 29)) ? ___7_arg8 : &___7_arg8), SizeOf_T8_t80D93F5CA44CA27864B85B97D0F31247FCB16790);
|
|
bool L_125 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 29), L_124);
|
|
if (!L_125)
|
|
{
|
|
goto IL_0350_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_126;
|
|
L_126 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 29)) ? ___7_arg8 : &___7_arg8));
|
|
String_t* L_127 = *((String_t**)L_126);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_127, NULL);
|
|
goto IL_0350_1;
|
|
}
|
|
|
|
IL_031b_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_128 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 28)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_129;
|
|
L_129 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_128, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_130 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_131;
|
|
L_131 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_130, NULL);
|
|
bool L_132;
|
|
L_132 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_129, L_131, NULL);
|
|
if (!L_132)
|
|
{
|
|
goto IL_0347_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_133;
|
|
L_133 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 29)) ? ___7_arg8 : &___7_arg8));
|
|
int32_t L_134 = *((int32_t*)L_133);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_134, NULL);
|
|
goto IL_0350_1;
|
|
}
|
|
|
|
IL_0347_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_135, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 29)) ? ___7_arg8 : &___7_arg8), SizeOf_T8_t80D93F5CA44CA27864B85B97D0F31247FCB16790);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 31)), il2cpp_rgctx_method(method->rgctx_data, 31), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 29)) ? L_135: *(void**)L_135));
|
|
}
|
|
|
|
IL_0350_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_136 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 32)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_137;
|
|
L_137 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_136, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_138 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_139;
|
|
L_139 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_138, NULL);
|
|
bool L_140;
|
|
L_140 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_137, L_139, NULL);
|
|
if (!L_140)
|
|
{
|
|
goto IL_0385_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_141, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 33)) ? ___8_arg9 : &___8_arg9), SizeOf_T9_t69271FE5204C1B3C4D33721DD9E9823C4D5EA07B);
|
|
bool L_142 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 33), L_141);
|
|
if (!L_142)
|
|
{
|
|
goto IL_03ba_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_143;
|
|
L_143 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 33)) ? ___8_arg9 : &___8_arg9));
|
|
String_t* L_144 = *((String_t**)L_143);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_144, NULL);
|
|
goto IL_03ba_1;
|
|
}
|
|
|
|
IL_0385_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_145 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 32)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_146;
|
|
L_146 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_145, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_147 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_148;
|
|
L_148 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_147, NULL);
|
|
bool L_149;
|
|
L_149 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_146, L_148, NULL);
|
|
if (!L_149)
|
|
{
|
|
goto IL_03b1_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_150;
|
|
L_150 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 33)) ? ___8_arg9 : &___8_arg9));
|
|
int32_t L_151 = *((int32_t*)L_150);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_151, NULL);
|
|
goto IL_03ba_1;
|
|
}
|
|
|
|
IL_03b1_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_152, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 33)) ? ___8_arg9 : &___8_arg9), SizeOf_T9_t69271FE5204C1B3C4D33721DD9E9823C4D5EA07B);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 35)), il2cpp_rgctx_method(method->rgctx_data, 35), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 33)) ? L_152: *(void**)L_152));
|
|
}
|
|
|
|
IL_03ba_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_153 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 36)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_154;
|
|
L_154 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_153, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_155 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_156;
|
|
L_156 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_155, NULL);
|
|
bool L_157;
|
|
L_157 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_154, L_156, NULL);
|
|
if (!L_157)
|
|
{
|
|
goto IL_03ef_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_158, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 37)) ? ___9_arg10 : &___9_arg10), SizeOf_T10_tFCDB6A85C0B7DE6ADE17C75C959E5BFEF8212916);
|
|
bool L_159 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 37), L_158);
|
|
if (!L_159)
|
|
{
|
|
goto IL_0424_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_160;
|
|
L_160 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 37)) ? ___9_arg10 : &___9_arg10));
|
|
String_t* L_161 = *((String_t**)L_160);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_161, NULL);
|
|
goto IL_0424_1;
|
|
}
|
|
|
|
IL_03ef_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_162 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 36)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_163;
|
|
L_163 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_162, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_164 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_165;
|
|
L_165 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_164, NULL);
|
|
bool L_166;
|
|
L_166 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_163, L_165, NULL);
|
|
if (!L_166)
|
|
{
|
|
goto IL_041b_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_167;
|
|
L_167 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 37)) ? ___9_arg10 : &___9_arg10));
|
|
int32_t L_168 = *((int32_t*)L_167);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_168, NULL);
|
|
goto IL_0424_1;
|
|
}
|
|
|
|
IL_041b_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_169, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 37)) ? ___9_arg10 : &___9_arg10), SizeOf_T10_tFCDB6A85C0B7DE6ADE17C75C959E5BFEF8212916);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 39)), il2cpp_rgctx_method(method->rgctx_data, 39), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 37)) ? L_169: *(void**)L_169));
|
|
}
|
|
|
|
IL_0424_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_170 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 40)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_171;
|
|
L_171 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_170, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_172 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_173;
|
|
L_173 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_172, NULL);
|
|
bool L_174;
|
|
L_174 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_171, L_173, NULL);
|
|
if (!L_174)
|
|
{
|
|
goto IL_0459_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_175, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 41)) ? ___10_arg11 : &___10_arg11), SizeOf_T11_tD15B96280024C5D582373FFEBBD34C6F499F82D2);
|
|
bool L_176 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 41), L_175);
|
|
if (!L_176)
|
|
{
|
|
goto IL_048e_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_177;
|
|
L_177 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 41)) ? ___10_arg11 : &___10_arg11));
|
|
String_t* L_178 = *((String_t**)L_177);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_178, NULL);
|
|
goto IL_048e_1;
|
|
}
|
|
|
|
IL_0459_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_179 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 40)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_180;
|
|
L_180 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_179, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_181 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_182;
|
|
L_182 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_181, NULL);
|
|
bool L_183;
|
|
L_183 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_180, L_182, NULL);
|
|
if (!L_183)
|
|
{
|
|
goto IL_0485_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_184;
|
|
L_184 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 41)) ? ___10_arg11 : &___10_arg11));
|
|
int32_t L_185 = *((int32_t*)L_184);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_185, NULL);
|
|
goto IL_048e_1;
|
|
}
|
|
|
|
IL_0485_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_186, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 41)) ? ___10_arg11 : &___10_arg11), SizeOf_T11_tD15B96280024C5D582373FFEBBD34C6F499F82D2);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 43)), il2cpp_rgctx_method(method->rgctx_data, 43), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 41)) ? L_186: *(void**)L_186));
|
|
}
|
|
|
|
IL_048e_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_187 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 44)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_188;
|
|
L_188 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_187, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_189 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_190;
|
|
L_190 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_189, NULL);
|
|
bool L_191;
|
|
L_191 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_188, L_190, NULL);
|
|
if (!L_191)
|
|
{
|
|
goto IL_04c3_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_192, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 45)) ? ___11_arg12 : &___11_arg12), SizeOf_T12_t13F1F77012F7107342CBBB1D56B02CA2B1065333);
|
|
bool L_193 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 45), L_192);
|
|
if (!L_193)
|
|
{
|
|
goto IL_04f8_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_194;
|
|
L_194 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 45)) ? ___11_arg12 : &___11_arg12));
|
|
String_t* L_195 = *((String_t**)L_194);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_195, NULL);
|
|
goto IL_04f8_1;
|
|
}
|
|
|
|
IL_04c3_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_196 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 44)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_197;
|
|
L_197 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_196, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_198 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_199;
|
|
L_199 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_198, NULL);
|
|
bool L_200;
|
|
L_200 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_197, L_199, NULL);
|
|
if (!L_200)
|
|
{
|
|
goto IL_04ef_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_201;
|
|
L_201 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 45)) ? ___11_arg12 : &___11_arg12));
|
|
int32_t L_202 = *((int32_t*)L_201);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_202, NULL);
|
|
goto IL_04f8_1;
|
|
}
|
|
|
|
IL_04ef_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_203, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 45)) ? ___11_arg12 : &___11_arg12), SizeOf_T12_t13F1F77012F7107342CBBB1D56B02CA2B1065333);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 47)), il2cpp_rgctx_method(method->rgctx_data, 47), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 45)) ? L_203: *(void**)L_203));
|
|
}
|
|
|
|
IL_04f8_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_204 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 48)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_205;
|
|
L_205 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_204, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_206 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_207;
|
|
L_207 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_206, NULL);
|
|
bool L_208;
|
|
L_208 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_205, L_207, NULL);
|
|
if (!L_208)
|
|
{
|
|
goto IL_052d_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_209, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 49)) ? ___12_arg13 : &___12_arg13), SizeOf_T13_t044E335C8AB7D5290EC1D269C888DE633B9C817E);
|
|
bool L_210 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 49), L_209);
|
|
if (!L_210)
|
|
{
|
|
goto IL_0562_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_211;
|
|
L_211 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 49)) ? ___12_arg13 : &___12_arg13));
|
|
String_t* L_212 = *((String_t**)L_211);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_212, NULL);
|
|
goto IL_0562_1;
|
|
}
|
|
|
|
IL_052d_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_213 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 48)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_214;
|
|
L_214 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_213, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_215 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_216;
|
|
L_216 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_215, NULL);
|
|
bool L_217;
|
|
L_217 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_214, L_216, NULL);
|
|
if (!L_217)
|
|
{
|
|
goto IL_0559_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_218;
|
|
L_218 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 49)) ? ___12_arg13 : &___12_arg13));
|
|
int32_t L_219 = *((int32_t*)L_218);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_219, NULL);
|
|
goto IL_0562_1;
|
|
}
|
|
|
|
IL_0559_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_220, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 49)) ? ___12_arg13 : &___12_arg13), SizeOf_T13_t044E335C8AB7D5290EC1D269C888DE633B9C817E);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 51)), il2cpp_rgctx_method(method->rgctx_data, 51), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 49)) ? L_220: *(void**)L_220));
|
|
}
|
|
|
|
IL_0562_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_221 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 52)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_222;
|
|
L_222 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_221, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_223 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_224;
|
|
L_224 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_223, NULL);
|
|
bool L_225;
|
|
L_225 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_222, L_224, NULL);
|
|
if (!L_225)
|
|
{
|
|
goto IL_0597_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_226, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 53)) ? ___13_arg14 : &___13_arg14), SizeOf_T14_t3D3B20F489281824A9657B1F5770B2EBAC2DC4C2);
|
|
bool L_227 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 53), L_226);
|
|
if (!L_227)
|
|
{
|
|
goto IL_05cc_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_228;
|
|
L_228 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 53)) ? ___13_arg14 : &___13_arg14));
|
|
String_t* L_229 = *((String_t**)L_228);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_229, NULL);
|
|
goto IL_05cc_1;
|
|
}
|
|
|
|
IL_0597_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_230 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 52)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_231;
|
|
L_231 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_230, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_232 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_233;
|
|
L_233 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_232, NULL);
|
|
bool L_234;
|
|
L_234 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_231, L_233, NULL);
|
|
if (!L_234)
|
|
{
|
|
goto IL_05c3_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_235;
|
|
L_235 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 53)) ? ___13_arg14 : &___13_arg14));
|
|
int32_t L_236 = *((int32_t*)L_235);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_236, NULL);
|
|
goto IL_05cc_1;
|
|
}
|
|
|
|
IL_05c3_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_237, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 53)) ? ___13_arg14 : &___13_arg14), SizeOf_T14_t3D3B20F489281824A9657B1F5770B2EBAC2DC4C2);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 55)), il2cpp_rgctx_method(method->rgctx_data, 55), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 53)) ? L_237: *(void**)L_237));
|
|
}
|
|
|
|
IL_05cc_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_238 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 56)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_239;
|
|
L_239 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_238, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_240 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_241;
|
|
L_241 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_240, NULL);
|
|
bool L_242;
|
|
L_242 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_239, L_241, NULL);
|
|
if (!L_242)
|
|
{
|
|
goto IL_0601_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_243, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 57)) ? ___14_arg15 : &___14_arg15), SizeOf_T15_t13F0D15F48B6E963D433F160CD6179D0372D102D);
|
|
bool L_244 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 57), L_243);
|
|
if (!L_244)
|
|
{
|
|
goto IL_0636_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_245;
|
|
L_245 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 57)) ? ___14_arg15 : &___14_arg15));
|
|
String_t* L_246 = *((String_t**)L_245);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_246, NULL);
|
|
goto IL_0636_1;
|
|
}
|
|
|
|
IL_0601_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_247 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 56)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_248;
|
|
L_248 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_247, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_249 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_250;
|
|
L_250 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_249, NULL);
|
|
bool L_251;
|
|
L_251 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_248, L_250, NULL);
|
|
if (!L_251)
|
|
{
|
|
goto IL_062d_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_252;
|
|
L_252 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 57)) ? ___14_arg15 : &___14_arg15));
|
|
int32_t L_253 = *((int32_t*)L_252);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_253, NULL);
|
|
goto IL_0636_1;
|
|
}
|
|
|
|
IL_062d_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_254, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 57)) ? ___14_arg15 : &___14_arg15), SizeOf_T15_t13F0D15F48B6E963D433F160CD6179D0372D102D);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 59)), il2cpp_rgctx_method(method->rgctx_data, 59), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 57)) ? L_254: *(void**)L_254));
|
|
}
|
|
|
|
IL_0636_1:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
String_t* L_255;
|
|
L_255 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_255;
|
|
goto IL_064e;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_064e:
|
|
{
|
|
String_t* L_256 = V_1;
|
|
return L_256;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Concat_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m7D17F6DF5074BE61B08E1A62248DAC39F940312A_gshared (Il2CppFullySharedGenericAny ___0_arg1, Il2CppFullySharedGenericAny ___1_arg2, Il2CppFullySharedGenericAny ___2_arg3, Il2CppFullySharedGenericAny ___3_arg4, Il2CppFullySharedGenericAny ___4_arg5, Il2CppFullySharedGenericAny ___5_arg6, Il2CppFullySharedGenericAny ___6_arg7, Il2CppFullySharedGenericAny ___7_arg8, Il2CppFullySharedGenericAny ___8_arg9, Il2CppFullySharedGenericAny ___9_arg10, Il2CppFullySharedGenericAny ___10_arg11, Il2CppFullySharedGenericAny ___11_arg12, Il2CppFullySharedGenericAny ___12_arg13, Il2CppFullySharedGenericAny ___13_arg14, Il2CppFullySharedGenericAny ___14_arg15, Il2CppFullySharedGenericAny ___15_arg16, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t4B0B84FA6F66A0069A987A542AFD33454A2D415E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T2_t7F642226E9512D73868198F6E4B8A60CEDFD8D82 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T3_tB2511FA05F8B19B78BE109F7BFCEA31795E7E592 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T4_t50477AC44BD08C46F32A47DA54106FEC7BFDEDE6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const uint32_t SizeOf_T5_tA7BCF00CAD60A0CEC2A1CCA82D5123FC39DDD282 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 17));
|
|
const uint32_t SizeOf_T6_tD6BA04A010BC5C99223D5455A5DEA317DFC82D0D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 21));
|
|
const uint32_t SizeOf_T7_t1D432FF6F48817049C0140339A4F0A52F4E876CF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 25));
|
|
const uint32_t SizeOf_T8_tECAAC4FD2BBC68633C8D7EE088EF8AF18C97B037 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 29));
|
|
const uint32_t SizeOf_T9_t9983863716EB1DAD24CA1563AB47D3294F2421E7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 33));
|
|
const uint32_t SizeOf_T10_tB126E680195548D3A581504858600F638BBA8C41 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 37));
|
|
const uint32_t SizeOf_T11_tDE1B3D75F9683FDD9AAD7B2E871DAD979B99FB3C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 41));
|
|
const uint32_t SizeOf_T12_t9E5DEA122BB896143EB4A31BA2EBEAAB4E6339FA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 45));
|
|
const uint32_t SizeOf_T13_t336CBE5776DCAB7464E4B9068FDD94A20DDE10A2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 49));
|
|
const uint32_t SizeOf_T14_t51DEF252EBBA9102A44F747F1D77B7A3C0E9AA40 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 53));
|
|
const uint32_t SizeOf_T15_t1002F9CC84037DAA11C9CFAE826FA86B39C43CAD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 57));
|
|
const uint32_t SizeOf_T16_t540C2B8F2F3771AA26832973E848A13C748BCAFC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 61));
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T1_t4B0B84FA6F66A0069A987A542AFD33454A2D415E);
|
|
const Il2CppFullySharedGenericAny L_16 = L_5;
|
|
const Il2CppFullySharedGenericAny L_22 = alloca(SizeOf_T2_t7F642226E9512D73868198F6E4B8A60CEDFD8D82);
|
|
const Il2CppFullySharedGenericAny L_33 = L_22;
|
|
const Il2CppFullySharedGenericAny L_39 = alloca(SizeOf_T3_tB2511FA05F8B19B78BE109F7BFCEA31795E7E592);
|
|
const Il2CppFullySharedGenericAny L_50 = L_39;
|
|
const Il2CppFullySharedGenericAny L_56 = alloca(SizeOf_T4_t50477AC44BD08C46F32A47DA54106FEC7BFDEDE6);
|
|
const Il2CppFullySharedGenericAny L_67 = L_56;
|
|
const Il2CppFullySharedGenericAny L_73 = alloca(SizeOf_T5_tA7BCF00CAD60A0CEC2A1CCA82D5123FC39DDD282);
|
|
const Il2CppFullySharedGenericAny L_84 = L_73;
|
|
const Il2CppFullySharedGenericAny L_90 = alloca(SizeOf_T6_tD6BA04A010BC5C99223D5455A5DEA317DFC82D0D);
|
|
const Il2CppFullySharedGenericAny L_101 = L_90;
|
|
const Il2CppFullySharedGenericAny L_107 = alloca(SizeOf_T7_t1D432FF6F48817049C0140339A4F0A52F4E876CF);
|
|
const Il2CppFullySharedGenericAny L_118 = L_107;
|
|
const Il2CppFullySharedGenericAny L_124 = alloca(SizeOf_T8_tECAAC4FD2BBC68633C8D7EE088EF8AF18C97B037);
|
|
const Il2CppFullySharedGenericAny L_135 = L_124;
|
|
const Il2CppFullySharedGenericAny L_141 = alloca(SizeOf_T9_t9983863716EB1DAD24CA1563AB47D3294F2421E7);
|
|
const Il2CppFullySharedGenericAny L_152 = L_141;
|
|
const Il2CppFullySharedGenericAny L_158 = alloca(SizeOf_T10_tB126E680195548D3A581504858600F638BBA8C41);
|
|
const Il2CppFullySharedGenericAny L_169 = L_158;
|
|
const Il2CppFullySharedGenericAny L_175 = alloca(SizeOf_T11_tDE1B3D75F9683FDD9AAD7B2E871DAD979B99FB3C);
|
|
const Il2CppFullySharedGenericAny L_186 = L_175;
|
|
const Il2CppFullySharedGenericAny L_192 = alloca(SizeOf_T12_t9E5DEA122BB896143EB4A31BA2EBEAAB4E6339FA);
|
|
const Il2CppFullySharedGenericAny L_203 = L_192;
|
|
const Il2CppFullySharedGenericAny L_209 = alloca(SizeOf_T13_t336CBE5776DCAB7464E4B9068FDD94A20DDE10A2);
|
|
const Il2CppFullySharedGenericAny L_220 = L_209;
|
|
const Il2CppFullySharedGenericAny L_226 = alloca(SizeOf_T14_t51DEF252EBBA9102A44F747F1D77B7A3C0E9AA40);
|
|
const Il2CppFullySharedGenericAny L_237 = L_226;
|
|
const Il2CppFullySharedGenericAny L_243 = alloca(SizeOf_T15_t1002F9CC84037DAA11C9CFAE826FA86B39C43CAD);
|
|
const Il2CppFullySharedGenericAny L_254 = L_243;
|
|
const Il2CppFullySharedGenericAny L_260 = alloca(SizeOf_T16_t540C2B8F2F3771AA26832973E848A13C748BCAFC);
|
|
const Il2CppFullySharedGenericAny L_271 = L_260;
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_06b0:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
bool L_4;
|
|
L_4 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_003c_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___0_arg1 : &___0_arg1), SizeOf_T1_t4B0B84FA6F66A0069A987A542AFD33454A2D415E);
|
|
bool L_6 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 1), L_5);
|
|
if (!L_6)
|
|
{
|
|
goto IL_0070_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_7;
|
|
L_7 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___0_arg1 : &___0_arg1));
|
|
String_t* L_8 = *((String_t**)L_7);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_8, NULL);
|
|
goto IL_0070_1;
|
|
}
|
|
|
|
IL_003c_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_9 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_10;
|
|
L_10 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_9, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_11 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_12;
|
|
L_12 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_11, NULL);
|
|
bool L_13;
|
|
L_13 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_10, L_12, NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_0068_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_14;
|
|
L_14 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___0_arg1 : &___0_arg1));
|
|
int32_t L_15 = *((int32_t*)L_14);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_15, NULL);
|
|
goto IL_0070_1;
|
|
}
|
|
|
|
IL_0068_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_16, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___0_arg1 : &___0_arg1), SizeOf_T1_t4B0B84FA6F66A0069A987A542AFD33454A2D415E);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_16: *(void**)L_16));
|
|
}
|
|
|
|
IL_0070_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_17 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 4)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_18;
|
|
L_18 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_17, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_19 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_20;
|
|
L_20 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_19, NULL);
|
|
bool L_21;
|
|
L_21 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_18, L_20, NULL);
|
|
if (!L_21)
|
|
{
|
|
goto IL_00a4_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_22, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___1_arg2 : &___1_arg2), SizeOf_T2_t7F642226E9512D73868198F6E4B8A60CEDFD8D82);
|
|
bool L_23 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 5), L_22);
|
|
if (!L_23)
|
|
{
|
|
goto IL_00d8_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_24;
|
|
L_24 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___1_arg2 : &___1_arg2));
|
|
String_t* L_25 = *((String_t**)L_24);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_25, NULL);
|
|
goto IL_00d8_1;
|
|
}
|
|
|
|
IL_00a4_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_26 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 4)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_27;
|
|
L_27 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_26, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
bool L_30;
|
|
L_30 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_27, L_29, NULL);
|
|
if (!L_30)
|
|
{
|
|
goto IL_00d0_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_31;
|
|
L_31 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___1_arg2 : &___1_arg2));
|
|
int32_t L_32 = *((int32_t*)L_31);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_32, NULL);
|
|
goto IL_00d8_1;
|
|
}
|
|
|
|
IL_00d0_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_33, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___1_arg2 : &___1_arg2), SizeOf_T2_t7F642226E9512D73868198F6E4B8A60CEDFD8D82);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_33: *(void**)L_33));
|
|
}
|
|
|
|
IL_00d8_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_34 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 8)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_35;
|
|
L_35 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_34, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_36 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_37;
|
|
L_37 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_36, NULL);
|
|
bool L_38;
|
|
L_38 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_35, L_37, NULL);
|
|
if (!L_38)
|
|
{
|
|
goto IL_010c_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_39, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___2_arg3 : &___2_arg3), SizeOf_T3_tB2511FA05F8B19B78BE109F7BFCEA31795E7E592);
|
|
bool L_40 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 9), L_39);
|
|
if (!L_40)
|
|
{
|
|
goto IL_0140_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_41;
|
|
L_41 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___2_arg3 : &___2_arg3));
|
|
String_t* L_42 = *((String_t**)L_41);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_42, NULL);
|
|
goto IL_0140_1;
|
|
}
|
|
|
|
IL_010c_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_43 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 8)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_44;
|
|
L_44 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_43, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_45 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_46;
|
|
L_46 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_45, NULL);
|
|
bool L_47;
|
|
L_47 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_44, L_46, NULL);
|
|
if (!L_47)
|
|
{
|
|
goto IL_0138_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_48;
|
|
L_48 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___2_arg3 : &___2_arg3));
|
|
int32_t L_49 = *((int32_t*)L_48);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_49, NULL);
|
|
goto IL_0140_1;
|
|
}
|
|
|
|
IL_0138_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_50, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___2_arg3 : &___2_arg3), SizeOf_T3_tB2511FA05F8B19B78BE109F7BFCEA31795E7E592);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_50: *(void**)L_50));
|
|
}
|
|
|
|
IL_0140_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_51 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 12)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_52;
|
|
L_52 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_51, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_53 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_54;
|
|
L_54 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_53, NULL);
|
|
bool L_55;
|
|
L_55 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_52, L_54, NULL);
|
|
if (!L_55)
|
|
{
|
|
goto IL_0174_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_56, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___3_arg4 : &___3_arg4), SizeOf_T4_t50477AC44BD08C46F32A47DA54106FEC7BFDEDE6);
|
|
bool L_57 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 13), L_56);
|
|
if (!L_57)
|
|
{
|
|
goto IL_01a8_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_58;
|
|
L_58 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___3_arg4 : &___3_arg4));
|
|
String_t* L_59 = *((String_t**)L_58);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_59, NULL);
|
|
goto IL_01a8_1;
|
|
}
|
|
|
|
IL_0174_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_60 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 12)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_61;
|
|
L_61 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_60, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_62 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_63;
|
|
L_63 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_62, NULL);
|
|
bool L_64;
|
|
L_64 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_61, L_63, NULL);
|
|
if (!L_64)
|
|
{
|
|
goto IL_01a0_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_65;
|
|
L_65 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___3_arg4 : &___3_arg4));
|
|
int32_t L_66 = *((int32_t*)L_65);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_66, NULL);
|
|
goto IL_01a8_1;
|
|
}
|
|
|
|
IL_01a0_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___3_arg4 : &___3_arg4), SizeOf_T4_t50477AC44BD08C46F32A47DA54106FEC7BFDEDE6);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? L_67: *(void**)L_67));
|
|
}
|
|
|
|
IL_01a8_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_68 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 16)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_69;
|
|
L_69 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_68, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_71;
|
|
L_71 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_70, NULL);
|
|
bool L_72;
|
|
L_72 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_69, L_71, NULL);
|
|
if (!L_72)
|
|
{
|
|
goto IL_01dd_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_73, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 17)) ? ___4_arg5 : &___4_arg5), SizeOf_T5_tA7BCF00CAD60A0CEC2A1CCA82D5123FC39DDD282);
|
|
bool L_74 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 17), L_73);
|
|
if (!L_74)
|
|
{
|
|
goto IL_0212_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_75;
|
|
L_75 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 17)) ? ___4_arg5 : &___4_arg5));
|
|
String_t* L_76 = *((String_t**)L_75);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_76, NULL);
|
|
goto IL_0212_1;
|
|
}
|
|
|
|
IL_01dd_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_77 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 16)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_78;
|
|
L_78 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_77, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_79 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_80;
|
|
L_80 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_79, NULL);
|
|
bool L_81;
|
|
L_81 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_78, L_80, NULL);
|
|
if (!L_81)
|
|
{
|
|
goto IL_0209_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_82;
|
|
L_82 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 17)) ? ___4_arg5 : &___4_arg5));
|
|
int32_t L_83 = *((int32_t*)L_82);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_83, NULL);
|
|
goto IL_0212_1;
|
|
}
|
|
|
|
IL_0209_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_84, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 17)) ? ___4_arg5 : &___4_arg5), SizeOf_T5_tA7BCF00CAD60A0CEC2A1CCA82D5123FC39DDD282);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 17)) ? L_84: *(void**)L_84));
|
|
}
|
|
|
|
IL_0212_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_85 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 20)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_86;
|
|
L_86 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_85, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_87 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_88;
|
|
L_88 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_87, NULL);
|
|
bool L_89;
|
|
L_89 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_86, L_88, NULL);
|
|
if (!L_89)
|
|
{
|
|
goto IL_0247_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_90, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 21)) ? ___5_arg6 : &___5_arg6), SizeOf_T6_tD6BA04A010BC5C99223D5455A5DEA317DFC82D0D);
|
|
bool L_91 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 21), L_90);
|
|
if (!L_91)
|
|
{
|
|
goto IL_027c_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_92;
|
|
L_92 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 21)) ? ___5_arg6 : &___5_arg6));
|
|
String_t* L_93 = *((String_t**)L_92);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_93, NULL);
|
|
goto IL_027c_1;
|
|
}
|
|
|
|
IL_0247_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_94 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 20)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_95;
|
|
L_95 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_94, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_96 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_97;
|
|
L_97 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_96, NULL);
|
|
bool L_98;
|
|
L_98 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_95, L_97, NULL);
|
|
if (!L_98)
|
|
{
|
|
goto IL_0273_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_99;
|
|
L_99 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 21)) ? ___5_arg6 : &___5_arg6));
|
|
int32_t L_100 = *((int32_t*)L_99);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_100, NULL);
|
|
goto IL_027c_1;
|
|
}
|
|
|
|
IL_0273_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_101, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 21)) ? ___5_arg6 : &___5_arg6), SizeOf_T6_tD6BA04A010BC5C99223D5455A5DEA317DFC82D0D);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 21)) ? L_101: *(void**)L_101));
|
|
}
|
|
|
|
IL_027c_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_102 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 24)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_103;
|
|
L_103 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_102, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_104 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_105;
|
|
L_105 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_104, NULL);
|
|
bool L_106;
|
|
L_106 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_103, L_105, NULL);
|
|
if (!L_106)
|
|
{
|
|
goto IL_02b1_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_107, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 25)) ? ___6_arg7 : &___6_arg7), SizeOf_T7_t1D432FF6F48817049C0140339A4F0A52F4E876CF);
|
|
bool L_108 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 25), L_107);
|
|
if (!L_108)
|
|
{
|
|
goto IL_02e6_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_109;
|
|
L_109 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 25)) ? ___6_arg7 : &___6_arg7));
|
|
String_t* L_110 = *((String_t**)L_109);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_110, NULL);
|
|
goto IL_02e6_1;
|
|
}
|
|
|
|
IL_02b1_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_111 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 24)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_112;
|
|
L_112 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_111, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_113 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_114;
|
|
L_114 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_113, NULL);
|
|
bool L_115;
|
|
L_115 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_112, L_114, NULL);
|
|
if (!L_115)
|
|
{
|
|
goto IL_02dd_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_116;
|
|
L_116 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 25)) ? ___6_arg7 : &___6_arg7));
|
|
int32_t L_117 = *((int32_t*)L_116);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_117, NULL);
|
|
goto IL_02e6_1;
|
|
}
|
|
|
|
IL_02dd_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_118, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 25)) ? ___6_arg7 : &___6_arg7), SizeOf_T7_t1D432FF6F48817049C0140339A4F0A52F4E876CF);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 27)), il2cpp_rgctx_method(method->rgctx_data, 27), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 25)) ? L_118: *(void**)L_118));
|
|
}
|
|
|
|
IL_02e6_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_119 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 28)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_120;
|
|
L_120 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_119, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_121 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_122;
|
|
L_122 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_121, NULL);
|
|
bool L_123;
|
|
L_123 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_120, L_122, NULL);
|
|
if (!L_123)
|
|
{
|
|
goto IL_031b_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_124, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 29)) ? ___7_arg8 : &___7_arg8), SizeOf_T8_tECAAC4FD2BBC68633C8D7EE088EF8AF18C97B037);
|
|
bool L_125 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 29), L_124);
|
|
if (!L_125)
|
|
{
|
|
goto IL_0350_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_126;
|
|
L_126 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 29)) ? ___7_arg8 : &___7_arg8));
|
|
String_t* L_127 = *((String_t**)L_126);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_127, NULL);
|
|
goto IL_0350_1;
|
|
}
|
|
|
|
IL_031b_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_128 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 28)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_129;
|
|
L_129 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_128, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_130 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_131;
|
|
L_131 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_130, NULL);
|
|
bool L_132;
|
|
L_132 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_129, L_131, NULL);
|
|
if (!L_132)
|
|
{
|
|
goto IL_0347_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_133;
|
|
L_133 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 29)) ? ___7_arg8 : &___7_arg8));
|
|
int32_t L_134 = *((int32_t*)L_133);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_134, NULL);
|
|
goto IL_0350_1;
|
|
}
|
|
|
|
IL_0347_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_135, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 29)) ? ___7_arg8 : &___7_arg8), SizeOf_T8_tECAAC4FD2BBC68633C8D7EE088EF8AF18C97B037);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 31)), il2cpp_rgctx_method(method->rgctx_data, 31), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 29)) ? L_135: *(void**)L_135));
|
|
}
|
|
|
|
IL_0350_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_136 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 32)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_137;
|
|
L_137 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_136, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_138 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_139;
|
|
L_139 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_138, NULL);
|
|
bool L_140;
|
|
L_140 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_137, L_139, NULL);
|
|
if (!L_140)
|
|
{
|
|
goto IL_0385_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_141, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 33)) ? ___8_arg9 : &___8_arg9), SizeOf_T9_t9983863716EB1DAD24CA1563AB47D3294F2421E7);
|
|
bool L_142 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 33), L_141);
|
|
if (!L_142)
|
|
{
|
|
goto IL_03ba_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_143;
|
|
L_143 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 33)) ? ___8_arg9 : &___8_arg9));
|
|
String_t* L_144 = *((String_t**)L_143);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_144, NULL);
|
|
goto IL_03ba_1;
|
|
}
|
|
|
|
IL_0385_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_145 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 32)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_146;
|
|
L_146 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_145, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_147 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_148;
|
|
L_148 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_147, NULL);
|
|
bool L_149;
|
|
L_149 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_146, L_148, NULL);
|
|
if (!L_149)
|
|
{
|
|
goto IL_03b1_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_150;
|
|
L_150 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 33)) ? ___8_arg9 : &___8_arg9));
|
|
int32_t L_151 = *((int32_t*)L_150);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_151, NULL);
|
|
goto IL_03ba_1;
|
|
}
|
|
|
|
IL_03b1_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_152, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 33)) ? ___8_arg9 : &___8_arg9), SizeOf_T9_t9983863716EB1DAD24CA1563AB47D3294F2421E7);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 35)), il2cpp_rgctx_method(method->rgctx_data, 35), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 33)) ? L_152: *(void**)L_152));
|
|
}
|
|
|
|
IL_03ba_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_153 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 36)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_154;
|
|
L_154 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_153, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_155 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_156;
|
|
L_156 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_155, NULL);
|
|
bool L_157;
|
|
L_157 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_154, L_156, NULL);
|
|
if (!L_157)
|
|
{
|
|
goto IL_03ef_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_158, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 37)) ? ___9_arg10 : &___9_arg10), SizeOf_T10_tB126E680195548D3A581504858600F638BBA8C41);
|
|
bool L_159 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 37), L_158);
|
|
if (!L_159)
|
|
{
|
|
goto IL_0424_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_160;
|
|
L_160 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 37)) ? ___9_arg10 : &___9_arg10));
|
|
String_t* L_161 = *((String_t**)L_160);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_161, NULL);
|
|
goto IL_0424_1;
|
|
}
|
|
|
|
IL_03ef_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_162 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 36)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_163;
|
|
L_163 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_162, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_164 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_165;
|
|
L_165 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_164, NULL);
|
|
bool L_166;
|
|
L_166 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_163, L_165, NULL);
|
|
if (!L_166)
|
|
{
|
|
goto IL_041b_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_167;
|
|
L_167 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 37)) ? ___9_arg10 : &___9_arg10));
|
|
int32_t L_168 = *((int32_t*)L_167);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_168, NULL);
|
|
goto IL_0424_1;
|
|
}
|
|
|
|
IL_041b_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_169, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 37)) ? ___9_arg10 : &___9_arg10), SizeOf_T10_tB126E680195548D3A581504858600F638BBA8C41);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 39)), il2cpp_rgctx_method(method->rgctx_data, 39), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 37)) ? L_169: *(void**)L_169));
|
|
}
|
|
|
|
IL_0424_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_170 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 40)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_171;
|
|
L_171 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_170, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_172 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_173;
|
|
L_173 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_172, NULL);
|
|
bool L_174;
|
|
L_174 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_171, L_173, NULL);
|
|
if (!L_174)
|
|
{
|
|
goto IL_0459_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_175, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 41)) ? ___10_arg11 : &___10_arg11), SizeOf_T11_tDE1B3D75F9683FDD9AAD7B2E871DAD979B99FB3C);
|
|
bool L_176 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 41), L_175);
|
|
if (!L_176)
|
|
{
|
|
goto IL_048e_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_177;
|
|
L_177 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 41)) ? ___10_arg11 : &___10_arg11));
|
|
String_t* L_178 = *((String_t**)L_177);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_178, NULL);
|
|
goto IL_048e_1;
|
|
}
|
|
|
|
IL_0459_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_179 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 40)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_180;
|
|
L_180 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_179, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_181 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_182;
|
|
L_182 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_181, NULL);
|
|
bool L_183;
|
|
L_183 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_180, L_182, NULL);
|
|
if (!L_183)
|
|
{
|
|
goto IL_0485_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_184;
|
|
L_184 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 41)) ? ___10_arg11 : &___10_arg11));
|
|
int32_t L_185 = *((int32_t*)L_184);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_185, NULL);
|
|
goto IL_048e_1;
|
|
}
|
|
|
|
IL_0485_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_186, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 41)) ? ___10_arg11 : &___10_arg11), SizeOf_T11_tDE1B3D75F9683FDD9AAD7B2E871DAD979B99FB3C);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 43)), il2cpp_rgctx_method(method->rgctx_data, 43), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 41)) ? L_186: *(void**)L_186));
|
|
}
|
|
|
|
IL_048e_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_187 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 44)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_188;
|
|
L_188 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_187, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_189 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_190;
|
|
L_190 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_189, NULL);
|
|
bool L_191;
|
|
L_191 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_188, L_190, NULL);
|
|
if (!L_191)
|
|
{
|
|
goto IL_04c3_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_192, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 45)) ? ___11_arg12 : &___11_arg12), SizeOf_T12_t9E5DEA122BB896143EB4A31BA2EBEAAB4E6339FA);
|
|
bool L_193 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 45), L_192);
|
|
if (!L_193)
|
|
{
|
|
goto IL_04f8_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_194;
|
|
L_194 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 45)) ? ___11_arg12 : &___11_arg12));
|
|
String_t* L_195 = *((String_t**)L_194);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_195, NULL);
|
|
goto IL_04f8_1;
|
|
}
|
|
|
|
IL_04c3_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_196 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 44)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_197;
|
|
L_197 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_196, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_198 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_199;
|
|
L_199 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_198, NULL);
|
|
bool L_200;
|
|
L_200 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_197, L_199, NULL);
|
|
if (!L_200)
|
|
{
|
|
goto IL_04ef_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_201;
|
|
L_201 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 45)) ? ___11_arg12 : &___11_arg12));
|
|
int32_t L_202 = *((int32_t*)L_201);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_202, NULL);
|
|
goto IL_04f8_1;
|
|
}
|
|
|
|
IL_04ef_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_203, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 45)) ? ___11_arg12 : &___11_arg12), SizeOf_T12_t9E5DEA122BB896143EB4A31BA2EBEAAB4E6339FA);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 47)), il2cpp_rgctx_method(method->rgctx_data, 47), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 45)) ? L_203: *(void**)L_203));
|
|
}
|
|
|
|
IL_04f8_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_204 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 48)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_205;
|
|
L_205 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_204, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_206 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_207;
|
|
L_207 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_206, NULL);
|
|
bool L_208;
|
|
L_208 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_205, L_207, NULL);
|
|
if (!L_208)
|
|
{
|
|
goto IL_052d_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_209, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 49)) ? ___12_arg13 : &___12_arg13), SizeOf_T13_t336CBE5776DCAB7464E4B9068FDD94A20DDE10A2);
|
|
bool L_210 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 49), L_209);
|
|
if (!L_210)
|
|
{
|
|
goto IL_0562_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_211;
|
|
L_211 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 49)) ? ___12_arg13 : &___12_arg13));
|
|
String_t* L_212 = *((String_t**)L_211);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_212, NULL);
|
|
goto IL_0562_1;
|
|
}
|
|
|
|
IL_052d_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_213 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 48)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_214;
|
|
L_214 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_213, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_215 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_216;
|
|
L_216 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_215, NULL);
|
|
bool L_217;
|
|
L_217 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_214, L_216, NULL);
|
|
if (!L_217)
|
|
{
|
|
goto IL_0559_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_218;
|
|
L_218 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 49)) ? ___12_arg13 : &___12_arg13));
|
|
int32_t L_219 = *((int32_t*)L_218);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_219, NULL);
|
|
goto IL_0562_1;
|
|
}
|
|
|
|
IL_0559_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_220, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 49)) ? ___12_arg13 : &___12_arg13), SizeOf_T13_t336CBE5776DCAB7464E4B9068FDD94A20DDE10A2);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 51)), il2cpp_rgctx_method(method->rgctx_data, 51), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 49)) ? L_220: *(void**)L_220));
|
|
}
|
|
|
|
IL_0562_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_221 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 52)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_222;
|
|
L_222 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_221, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_223 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_224;
|
|
L_224 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_223, NULL);
|
|
bool L_225;
|
|
L_225 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_222, L_224, NULL);
|
|
if (!L_225)
|
|
{
|
|
goto IL_0597_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_226, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 53)) ? ___13_arg14 : &___13_arg14), SizeOf_T14_t51DEF252EBBA9102A44F747F1D77B7A3C0E9AA40);
|
|
bool L_227 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 53), L_226);
|
|
if (!L_227)
|
|
{
|
|
goto IL_05cc_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_228;
|
|
L_228 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 53)) ? ___13_arg14 : &___13_arg14));
|
|
String_t* L_229 = *((String_t**)L_228);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_229, NULL);
|
|
goto IL_05cc_1;
|
|
}
|
|
|
|
IL_0597_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_230 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 52)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_231;
|
|
L_231 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_230, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_232 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_233;
|
|
L_233 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_232, NULL);
|
|
bool L_234;
|
|
L_234 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_231, L_233, NULL);
|
|
if (!L_234)
|
|
{
|
|
goto IL_05c3_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_235;
|
|
L_235 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 53)) ? ___13_arg14 : &___13_arg14));
|
|
int32_t L_236 = *((int32_t*)L_235);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_236, NULL);
|
|
goto IL_05cc_1;
|
|
}
|
|
|
|
IL_05c3_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_237, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 53)) ? ___13_arg14 : &___13_arg14), SizeOf_T14_t51DEF252EBBA9102A44F747F1D77B7A3C0E9AA40);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 55)), il2cpp_rgctx_method(method->rgctx_data, 55), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 53)) ? L_237: *(void**)L_237));
|
|
}
|
|
|
|
IL_05cc_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_238 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 56)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_239;
|
|
L_239 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_238, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_240 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_241;
|
|
L_241 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_240, NULL);
|
|
bool L_242;
|
|
L_242 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_239, L_241, NULL);
|
|
if (!L_242)
|
|
{
|
|
goto IL_0601_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_243, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 57)) ? ___14_arg15 : &___14_arg15), SizeOf_T15_t1002F9CC84037DAA11C9CFAE826FA86B39C43CAD);
|
|
bool L_244 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 57), L_243);
|
|
if (!L_244)
|
|
{
|
|
goto IL_0636_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_245;
|
|
L_245 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 57)) ? ___14_arg15 : &___14_arg15));
|
|
String_t* L_246 = *((String_t**)L_245);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_246, NULL);
|
|
goto IL_0636_1;
|
|
}
|
|
|
|
IL_0601_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_247 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 56)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_248;
|
|
L_248 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_247, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_249 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_250;
|
|
L_250 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_249, NULL);
|
|
bool L_251;
|
|
L_251 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_248, L_250, NULL);
|
|
if (!L_251)
|
|
{
|
|
goto IL_062d_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_252;
|
|
L_252 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 57)) ? ___14_arg15 : &___14_arg15));
|
|
int32_t L_253 = *((int32_t*)L_252);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_253, NULL);
|
|
goto IL_0636_1;
|
|
}
|
|
|
|
IL_062d_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_254, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 57)) ? ___14_arg15 : &___14_arg15), SizeOf_T15_t1002F9CC84037DAA11C9CFAE826FA86B39C43CAD);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 59)), il2cpp_rgctx_method(method->rgctx_data, 59), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 57)) ? L_254: *(void**)L_254));
|
|
}
|
|
|
|
IL_0636_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_255 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 60)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_256;
|
|
L_256 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_255, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_257 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_258;
|
|
L_258 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_257, NULL);
|
|
bool L_259;
|
|
L_259 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_256, L_258, NULL);
|
|
if (!L_259)
|
|
{
|
|
goto IL_066b_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_260, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 61)) ? ___15_arg16 : &___15_arg16), SizeOf_T16_t540C2B8F2F3771AA26832973E848A13C748BCAFC);
|
|
bool L_261 = il2cpp_codegen_would_box_to_non_null(il2cpp_rgctx_data_no_init(method->rgctx_data, 61), L_260);
|
|
if (!L_261)
|
|
{
|
|
goto IL_06a0_1;
|
|
}
|
|
}
|
|
{
|
|
String_t** L_262;
|
|
L_262 = il2cpp_unsafe_as_ref<String_t*>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 61)) ? ___15_arg16 : &___15_arg16));
|
|
String_t* L_263 = *((String_t**)L_262);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline((&V_0), L_263, NULL);
|
|
goto IL_06a0_1;
|
|
}
|
|
|
|
IL_066b_1:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_264 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 60)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_265;
|
|
L_265 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_264, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_266 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
Type_t* L_267;
|
|
L_267 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_266, NULL);
|
|
bool L_268;
|
|
L_268 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_265, L_267, NULL);
|
|
if (!L_268)
|
|
{
|
|
goto IL_0697_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t* L_269;
|
|
L_269 = il2cpp_unsafe_as_ref<int32_t>((Il2CppFullySharedGenericAny*)(il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 61)) ? ___15_arg16 : &___15_arg16));
|
|
int32_t L_270 = *((int32_t*)L_269);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline((&V_0), L_270, NULL);
|
|
goto IL_06a0_1;
|
|
}
|
|
|
|
IL_0697_1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_271, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 61)) ? ___15_arg16 : &___15_arg16), SizeOf_T16_t540C2B8F2F3771AA26832973E848A13C748BCAFC);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker1< Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 63)), il2cpp_rgctx_method(method->rgctx_data, 63), (&V_0), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 61)) ? L_271: *(void**)L_271));
|
|
}
|
|
|
|
IL_06a0_1:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
String_t* L_272;
|
|
L_272 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_272;
|
|
goto IL_06b8;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_06b8:
|
|
{
|
|
String_t* L_273 = V_1;
|
|
return L_273;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m991FDE2F8767026D56DC4602E8EBB6499E0FAF61_gshared (String_t* ___0_format, uint8_t ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
uint8_t L_1 = ___1_arg1;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_m363FE1A2E489C848EF17400F6AA988EE53A40AB3((&V_0), L_0, L_1, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
String_t* L_2;
|
|
L_2 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_2;
|
|
goto IL_0029;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
String_t* L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mB5081D9BD9975E3723292B767DF88E81CD6B3E22_gshared (String_t* ___0_format, int32_t ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
int32_t L_1 = ___1_arg1;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mFC047CA5162EF230A2EB935ABB705998D9541649((&V_0), L_0, L_1, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
String_t* L_2;
|
|
L_2 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_2;
|
|
goto IL_0029;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
String_t* L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m9B1BBAD179D110BE16F8A4A7870E22ABF44F9174_gshared (String_t* ___0_format, int64_t ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
int64_t L_1 = ___1_arg1;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_m98C3C6509A778218946D20B41BB12EDC102248AD((&V_0), L_0, L_1, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
String_t* L_2;
|
|
L_2 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_2;
|
|
goto IL_0029;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
String_t* L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisRuntimeObject_mD9D70751B458A2AD65CFCCFEBE0A86DEC1E7D360_gshared (String_t* ___0_format, RuntimeObject* ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
RuntimeObject* L_1 = ___1_arg1;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_m6FA49D8C7168BF8C264DBD78486862262B87BFDD((&V_0), L_0, L_1, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
String_t* L_2;
|
|
L_2 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_2;
|
|
goto IL_0029;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
String_t* L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mA9FAED39C44992426063A81694797B6AA7EBAF91_gshared (String_t* ___0_format, float ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
float L_1 = ___1_arg1;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCFF32494BA455212AFFC8E5DD474F6198C7EA2AA((&V_0), L_0, L_1, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
String_t* L_2;
|
|
L_2 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_2;
|
|
goto IL_0029;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
String_t* L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisTypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300_mD5F21BA3CD663AA97B6D14A6FDA39CDA58ACFD0F_gshared (String_t* ___0_format, TypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300 ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
TypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300 L_1 = ___1_arg1;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisTypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300_m6EECCB780D61462D8C660651B6C267FEB9893DBF((&V_0), L_0, L_1, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
String_t* L_2;
|
|
L_2 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_2;
|
|
goto IL_0029;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
String_t* L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_mDBDFB8D6EA7ADB1BCD73EF871D3A732637992D99_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t4E308FD4DD752AFAB79B7738B18F81161FB0A5D5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t4E308FD4DD752AFAB79B7738B18F81161FB0A5D5);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t4E308FD4DD752AFAB79B7738B18F81161FB0A5D5);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker2< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1));
|
|
String_t* L_2;
|
|
L_2 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_2;
|
|
goto IL_0029;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
String_t* L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_mE117F0CE09A99D6DBA800D1953E05857BE408E15_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tBCBAD1902B59B0B9EB7E7D9FCAA619B822E0202B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_tBCBAD1902B59B0B9EB7E7D9FCAA619B822E0202B);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_tBCBAD1902B59B0B9EB7E7D9FCAA619B822E0202B);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker2< String_t*, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1));
|
|
String_t* L_2;
|
|
L_2 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_2;
|
|
goto IL_0029;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
String_t* L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m912884BB67E7B36F19BD2DF656DCA1286AA3C7A1_gshared (String_t* ___0_format, int32_t ___1_arg1, int32_t ___2_arg2, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0022:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
int32_t L_1 = ___1_arg1;
|
|
int32_t L_2 = ___2_arg2;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m684B1EA2B02536173EB01E2102E723E12DBB8F09((&V_0), L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
String_t* L_3;
|
|
L_3 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_3;
|
|
goto IL_002a;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
String_t* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisRuntimeObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m09AD7CCEEB962755637B7816377B75A241EDB80F_gshared (String_t* ___0_format, RuntimeObject* ___1_arg1, int32_t ___2_arg2, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0022:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
RuntimeObject* L_1 = ___1_arg1;
|
|
int32_t L_2 = ___2_arg2;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mD3209884C0116613BB296E4975ACF000BB96E594((&V_0), L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
String_t* L_3;
|
|
L_3 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_3;
|
|
goto IL_002a;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
String_t* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisRuntimeObject_TisRuntimeObject_mF3AB6D9D95FF79F6D78C907E66AB66C884361092_gshared (String_t* ___0_format, RuntimeObject* ___1_arg1, RuntimeObject* ___2_arg2, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0022:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
RuntimeObject* L_1 = ___1_arg1;
|
|
RuntimeObject* L_2 = ___2_arg2;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisRuntimeObject_m194E6C7E0300DA23BBE932FDF9DB3266EF679F2D((&V_0), L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
String_t* L_3;
|
|
L_3 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_3;
|
|
goto IL_002a;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
String_t* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisRuntimeObject_m86AF251F439C6B36D8FCE0CC6F6F6AD3C5B31AC2_gshared (String_t* ___0_format, float ___1_arg1, RuntimeObject* ___2_arg2, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0022:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
float L_1 = ___1_arg1;
|
|
RuntimeObject* L_2 = ___2_arg2;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisRuntimeObject_m62C56070FBEB1C31D4B448EF59EF169FF7F134D1((&V_0), L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
String_t* L_3;
|
|
L_3 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_3;
|
|
goto IL_002a;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
String_t* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mA1765FD25213746B839D59C9076D764C4465FC03_gshared (String_t* ___0_format, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_arg1, float ___2_arg2, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0022:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1 = ___1_arg1;
|
|
float L_2 = ___2_arg2;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisVector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m1F5B1A197BE792B3A2FD05823FBE57B02B4A5F78((&V_0), L_0, L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 2));
|
|
String_t* L_3;
|
|
L_3 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_3;
|
|
goto IL_002a;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
String_t* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m6CD740042551AF9B8A74709D21598388F2E3A6C4_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t82DA07405213F0AB667DFB797DD97C06B238227E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tCB440A0A8FE17AF8B137DC0F9E3CB4F9FFFF7C3C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t82DA07405213F0AB667DFB797DD97C06B238227E);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_tCB440A0A8FE17AF8B137DC0F9E3CB4F9FFFF7C3C);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0022:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t82DA07405213F0AB667DFB797DD97C06B238227E);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_tCB440A0A8FE17AF8B137DC0F9E3CB4F9FFFF7C3C);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker3< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2));
|
|
String_t* L_3;
|
|
L_3 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_3;
|
|
goto IL_002a;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
String_t* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mA81F9A1A98387BFA473F34C61FDC1F86AEC8C229_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tD8267C2CE0266ACCD86CF0A79BAC03CEE7287CDB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t1E9374E4DBA6202976B8C23817D197CAE8DDA8CC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_tD8267C2CE0266ACCD86CF0A79BAC03CEE7287CDB);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t1E9374E4DBA6202976B8C23817D197CAE8DDA8CC);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0022:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_tD8267C2CE0266ACCD86CF0A79BAC03CEE7287CDB);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t1E9374E4DBA6202976B8C23817D197CAE8DDA8CC);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker3< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 2)), il2cpp_rgctx_method(method->rgctx_data, 2), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2));
|
|
String_t* L_3;
|
|
L_3 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_3;
|
|
goto IL_002a;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
String_t* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRefreshRate_t44FF0D3F256477CC8AB97FA49D08B636AFB4F68F_m6140D8EAF74A629162ABEF67D3D26718CB4F3C1C_gshared (String_t* ___0_format, int32_t ___1_arg1, int32_t ___2_arg2, RefreshRate_t44FF0D3F256477CC8AB97FA49D08B636AFB4F68F ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0023:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
int32_t L_1 = ___1_arg1;
|
|
int32_t L_2 = ___2_arg2;
|
|
RefreshRate_t44FF0D3F256477CC8AB97FA49D08B636AFB4F68F L_3 = ___3_arg3;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRefreshRate_t44FF0D3F256477CC8AB97FA49D08B636AFB4F68F_mA64F522519AB5DCD601462997847518F73465ADE((&V_0), L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
String_t* L_4;
|
|
L_4 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_4;
|
|
goto IL_002b;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
String_t* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mF07CFA2ED9E892F25FD7869DEED3687D87786588_gshared (String_t* ___0_format, int32_t ___1_arg1, int32_t ___2_arg2, float ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0023:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
int32_t L_1 = ___1_arg1;
|
|
int32_t L_2 = ___2_arg2;
|
|
float L_3 = ___3_arg3;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mCD5FC10714FDE6BBCBB81FF52962833C55E1AACD((&V_0), L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
String_t* L_4;
|
|
L_4 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_4;
|
|
goto IL_002b;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
String_t* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_m1783FAAC4B69BEBBA7BE9CC01FEB805E22329394_gshared (String_t* ___0_format, int32_t ___1_arg1, RuntimeObject* ___2_arg2, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0023:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
int32_t L_1 = ___1_arg1;
|
|
RuntimeObject* L_2 = ___2_arg2;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_3 = ___3_arg3;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_mE593265E712BF632591B0390069B22DC26244EE1((&V_0), L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
String_t* L_4;
|
|
L_4 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_4;
|
|
goto IL_002b;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
String_t* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mC205AB02BFAD34B69B62B0BC612825FD8E10E586_gshared (String_t* ___0_format, int32_t ___1_arg1, float ___2_arg2, float ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0023:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
int32_t L_1 = ___1_arg1;
|
|
float L_2 = ___2_arg2;
|
|
float L_3 = ___3_arg3;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mBAD59D551ADB4E5B5CF2AF78B688C703F363F01F((&V_0), L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
String_t* L_4;
|
|
L_4 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_4;
|
|
goto IL_002b;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
String_t* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_m828662717962B0671CB225A73BB41DB808D7BEC4_gshared (String_t* ___0_format, RuntimeObject* ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0023:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
RuntimeObject* L_1 = ___1_arg1;
|
|
RuntimeObject* L_2 = ___2_arg2;
|
|
RuntimeObject* L_3 = ___3_arg3;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_m0111F99159133060D01EFF897992A8E8450758DD((&V_0), L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
String_t* L_4;
|
|
L_4 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_4;
|
|
goto IL_002b;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
String_t* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisTypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300_TisRuntimeObject_TisRuntimeObject_mB75FABAE9F5CE1FD9465E0B80C7866E98A8EA3D3_gshared (String_t* ___0_format, TypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300 ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0023:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
TypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300 L_1 = ___1_arg1;
|
|
RuntimeObject* L_2 = ___2_arg2;
|
|
RuntimeObject* L_3 = ___3_arg3;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisTypeNamePair_tF745B5D4772649CE84808594B2E48E5C5973F300_TisRuntimeObject_TisRuntimeObject_mDB187CE1121D5E82086ED8969599CEF5E84AACB7((&V_0), L_0, L_1, L_2, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
String_t* L_4;
|
|
L_4 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_4;
|
|
goto IL_002b;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
String_t* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m30026F818C5E5DC3124032FD4AF471014CFCACE3_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tADA59D01E68A0C86835F1FA84FDE7BF3BE3D351E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t1686BB6B42AF8B765E7BEE42DAEC06BECC65DD8A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t4EC8D92317D0330DA92DB02B7110955C22BE976C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_tADA59D01E68A0C86835F1FA84FDE7BF3BE3D351E);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t1686BB6B42AF8B765E7BEE42DAEC06BECC65DD8A);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t4EC8D92317D0330DA92DB02B7110955C22BE976C);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0023:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_tADA59D01E68A0C86835F1FA84FDE7BF3BE3D351E);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t1686BB6B42AF8B765E7BEE42DAEC06BECC65DD8A);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t4EC8D92317D0330DA92DB02B7110955C22BE976C);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker4< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3));
|
|
String_t* L_4;
|
|
L_4 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_4;
|
|
goto IL_002b;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
String_t* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mFF7C380CF87C1158ECF32E97EC4737DF43FCF4D4_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t1C21B6C2A7BEC6438AC9BF4F81082B7174CA639D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tF669A234944D7CEC446C4B8D67CB9B44A8EB9367 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_tF245DFD714404A4CCD69CFABE5A5C66598A14ABF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t1C21B6C2A7BEC6438AC9BF4F81082B7174CA639D);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_tF669A234944D7CEC446C4B8D67CB9B44A8EB9367);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_tF245DFD714404A4CCD69CFABE5A5C66598A14ABF);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0023:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t1C21B6C2A7BEC6438AC9BF4F81082B7174CA639D);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_tF669A234944D7CEC446C4B8D67CB9B44A8EB9367);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_tF245DFD714404A4CCD69CFABE5A5C66598A14ABF);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker4< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3));
|
|
String_t* L_4;
|
|
L_4 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_4;
|
|
goto IL_002b;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
String_t* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_m2AB3ED848E24A24BDD06F319A6C27C6110F37263_gshared (String_t* ___0_format, int32_t ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___4_arg4, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0025:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
int32_t L_1 = ___1_arg1;
|
|
RuntimeObject* L_2 = ___2_arg2;
|
|
RuntimeObject* L_3 = ___3_arg3;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = ___4_arg4;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_mBD64D558FC8A22002792D412CEBE6370D9DCA3D9((&V_0), L_0, L_1, L_2, L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
String_t* L_5;
|
|
L_5 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_5;
|
|
goto IL_002d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
String_t* L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_mE63D0D7089242B1E0D4FC69055D1A0C962C95E84_gshared (String_t* ___0_format, RuntimeObject* ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, RuntimeObject* ___4_arg4, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0025:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
RuntimeObject* L_1 = ___1_arg1;
|
|
RuntimeObject* L_2 = ___2_arg2;
|
|
RuntimeObject* L_3 = ___3_arg3;
|
|
RuntimeObject* L_4 = ___4_arg4;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_mF1ED8D21FD92A1FF12F1F36186C20C356B9DF32F((&V_0), L_0, L_1, L_2, L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
String_t* L_5;
|
|
L_5 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_5;
|
|
goto IL_002d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
String_t* L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mCC593A1AD21093D656B78F09FD1FFBD78BBD0DE8_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t28112655461854C96591E7A839159FDFB99A35AD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t812F3FE2A54ADB4879FBE8E329DCFCE57700A000 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t7C993F9F86A28BA7CF065B0A419FF3654F5C012C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_tCB62DB9E0D921D93FD3E3BADF5896AF046F72A4B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t28112655461854C96591E7A839159FDFB99A35AD);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t812F3FE2A54ADB4879FBE8E329DCFCE57700A000);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t7C993F9F86A28BA7CF065B0A419FF3654F5C012C);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_tCB62DB9E0D921D93FD3E3BADF5896AF046F72A4B);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0025:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t28112655461854C96591E7A839159FDFB99A35AD);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t812F3FE2A54ADB4879FBE8E329DCFCE57700A000);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t7C993F9F86A28BA7CF065B0A419FF3654F5C012C);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_tCB62DB9E0D921D93FD3E3BADF5896AF046F72A4B);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker5< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)), il2cpp_rgctx_method(method->rgctx_data, 4), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4));
|
|
String_t* L_5;
|
|
L_5 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_5;
|
|
goto IL_002d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
String_t* L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mF672A7707500C82CFF8D8770676DE30678621EFE_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t8A56C437472067E8E84A21A60BECCA190117573A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t6C64BF162BB6B1854538ED0271C8387CDD51638C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_tF58D7F13257E7095C245C80A1C172FDF89C0A126 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t40B89A0AEA626B5BC6D6821CA36AE7D7160A9CC6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t8A56C437472067E8E84A21A60BECCA190117573A);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t6C64BF162BB6B1854538ED0271C8387CDD51638C);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_tF58D7F13257E7095C245C80A1C172FDF89C0A126);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t40B89A0AEA626B5BC6D6821CA36AE7D7160A9CC6);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0025:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t8A56C437472067E8E84A21A60BECCA190117573A);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t6C64BF162BB6B1854538ED0271C8387CDD51638C);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_tF58D7F13257E7095C245C80A1C172FDF89C0A126);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t40B89A0AEA626B5BC6D6821CA36AE7D7160A9CC6);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker5< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)), il2cpp_rgctx_method(method->rgctx_data, 4), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4));
|
|
String_t* L_5;
|
|
L_5 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_5;
|
|
goto IL_002d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
String_t* L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m1A5C1930230472BCF2682D4A535AD8A39873C2DE_gshared (String_t* ___0_format, uint8_t ___1_arg1, uint8_t ___2_arg2, uint8_t ___3_arg3, uint8_t ___4_arg4, float ___5_arg5, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0027:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
uint8_t L_1 = ___1_arg1;
|
|
uint8_t L_2 = ___2_arg2;
|
|
uint8_t L_3 = ___3_arg3;
|
|
uint8_t L_4 = ___4_arg4;
|
|
float L_5 = ___5_arg5;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_mC72A35906503AAF773F95C935A5EB6279394E4F9((&V_0), L_0, L_1, L_2, L_3, L_4, L_5, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
String_t* L_6;
|
|
L_6 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_6;
|
|
goto IL_002f;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
String_t* L_7 = V_1;
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m21BB30B6DEAD0F73825738616621DCB3A650B08C_gshared (String_t* ___0_format, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_arg1, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___2_arg2, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___3_arg3, float ___4_arg4, int32_t ___5_arg5, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0027:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = ___1_arg1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___2_arg2;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = ___3_arg3;
|
|
float L_4 = ___4_arg4;
|
|
int32_t L_5 = ___5_arg5;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisVector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_TisInt32Enum_tCBAC8BA2BFF3A845FA599F303093BBBA374B6F0C_m7F7889E5CE88C91257012E2B295B4B1AA4D7BD89((&V_0), L_0, L_1, L_2, L_3, L_4, L_5, il2cpp_rgctx_method(method->rgctx_data, 5));
|
|
String_t* L_6;
|
|
L_6 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_6;
|
|
goto IL_002f;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
String_t* L_7 = V_1;
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mCEADC4881F8999848582D983ADB29122BBBB2DD0_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tD993E2DE4EE96A7949009EF4486B85F1031B350D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t6B861705936238F1812ED5427278DA248558957A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t93BE03DCC82FD5BA0E5F500D07BE0A2765E62DDD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t0CA7D7C1ACFB02718FAAFE07E25CDD44EFECDEA9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_tA2AA5599A9B1762A173E92A3B4DB9E239B64568E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_tD993E2DE4EE96A7949009EF4486B85F1031B350D);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t6B861705936238F1812ED5427278DA248558957A);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t93BE03DCC82FD5BA0E5F500D07BE0A2765E62DDD);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t0CA7D7C1ACFB02718FAAFE07E25CDD44EFECDEA9);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_tA2AA5599A9B1762A173E92A3B4DB9E239B64568E);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0027:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_tD993E2DE4EE96A7949009EF4486B85F1031B350D);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t6B861705936238F1812ED5427278DA248558957A);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t93BE03DCC82FD5BA0E5F500D07BE0A2765E62DDD);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t0CA7D7C1ACFB02718FAAFE07E25CDD44EFECDEA9);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_tA2AA5599A9B1762A173E92A3B4DB9E239B64568E);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker6< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5));
|
|
String_t* L_6;
|
|
L_6 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_6;
|
|
goto IL_002f;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
String_t* L_7 = V_1;
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m1A4041C5B4AE961D02617EA640185EE45A0F82EF_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t18695943E390383B00C8D174BF3CCEAD5EB29E32 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t2B685E79C78277374F1016F9464A9E608B02EC75 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t9FB73F96E989C0F6B2D771E851C77A519D7B7BD2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t3FF89B54B099CFAF8222EDC849910E2673F3C5A1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_t1BA3EC9FDA26E415C852C1B4C22B1028879B73CE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t18695943E390383B00C8D174BF3CCEAD5EB29E32);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t2B685E79C78277374F1016F9464A9E608B02EC75);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t9FB73F96E989C0F6B2D771E851C77A519D7B7BD2);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t3FF89B54B099CFAF8222EDC849910E2673F3C5A1);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_t1BA3EC9FDA26E415C852C1B4C22B1028879B73CE);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0027:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t18695943E390383B00C8D174BF3CCEAD5EB29E32);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t2B685E79C78277374F1016F9464A9E608B02EC75);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t9FB73F96E989C0F6B2D771E851C77A519D7B7BD2);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t3FF89B54B099CFAF8222EDC849910E2673F3C5A1);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_t1BA3EC9FDA26E415C852C1B4C22B1028879B73CE);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker6< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5));
|
|
String_t* L_6;
|
|
L_6 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_6;
|
|
goto IL_002f;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
String_t* L_7 = V_1;
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m1631408183905BCB4606D639BB46EDE4A8611CAB_gshared (String_t* ___0_format, Il2CppChar ___1_arg1, Il2CppChar ___2_arg2, Il2CppChar ___3_arg3, Il2CppChar ___4_arg4, Il2CppChar ___5_arg5, Il2CppChar ___6_arg6, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0029:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Il2CppChar L_1 = ___1_arg1;
|
|
Il2CppChar L_2 = ___2_arg2;
|
|
Il2CppChar L_3 = ___3_arg3;
|
|
Il2CppChar L_4 = ___4_arg4;
|
|
Il2CppChar L_5 = ___5_arg5;
|
|
Il2CppChar L_6 = ___6_arg6;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mCA005995BD01012DD3AD3B3E6A07610BEDDC0C01((&V_0), L_0, L_1, L_2, L_3, L_4, L_5, L_6, il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
String_t* L_7;
|
|
L_7 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_7;
|
|
goto IL_0031;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
String_t* L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_m0987902060E8AF1E40E6F71AB553ADFA5D4FE370_gshared (String_t* ___0_format, int32_t ___1_arg1, RuntimeObject* ___2_arg2, RuntimeObject* ___3_arg3, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___4_arg4, int32_t ___5_arg5, RuntimeObject* ___6_arg6, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0029:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
int32_t L_1 = ___1_arg1;
|
|
RuntimeObject* L_2 = ___2_arg2;
|
|
RuntimeObject* L_3 = ___3_arg3;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_4 = ___4_arg4;
|
|
int32_t L_5 = ___5_arg5;
|
|
RuntimeObject* L_6 = ___6_arg6;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_TisRuntimeObject_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_m1D017EECBEB99183CFE4FC8239BDE23054EE2EBB((&V_0), L_0, L_1, L_2, L_3, L_4, L_5, L_6, il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
String_t* L_7;
|
|
L_7 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_7;
|
|
goto IL_0031;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
String_t* L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mD1DDAC42E2C133588E614FC30330619D937C2CDD_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tE13E6274BC4B7D6E6EEFB7C03535E2B21A0AF060 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tE9C25AEFDBEC51C4BAEE08F722F72A66EAEC6ADB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t03509916907981BF255D682FF134928E10E39168 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t7115DEBE70EC2A73296014679DE383C29E3F7EF1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_t6F856FB39BE59A897CE4D7C455EBE6D517E258BC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t0C117806009F6C5F6E910D9A9B29A80CA5A4F156 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_tE13E6274BC4B7D6E6EEFB7C03535E2B21A0AF060);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_tE9C25AEFDBEC51C4BAEE08F722F72A66EAEC6ADB);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t03509916907981BF255D682FF134928E10E39168);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t7115DEBE70EC2A73296014679DE383C29E3F7EF1);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_t6F856FB39BE59A897CE4D7C455EBE6D517E258BC);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t0C117806009F6C5F6E910D9A9B29A80CA5A4F156);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0029:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_tE13E6274BC4B7D6E6EEFB7C03535E2B21A0AF060);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_tE9C25AEFDBEC51C4BAEE08F722F72A66EAEC6ADB);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t03509916907981BF255D682FF134928E10E39168);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t7115DEBE70EC2A73296014679DE383C29E3F7EF1);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_t6F856FB39BE59A897CE4D7C455EBE6D517E258BC);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t0C117806009F6C5F6E910D9A9B29A80CA5A4F156);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker7< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)), il2cpp_rgctx_method(method->rgctx_data, 6), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6));
|
|
String_t* L_7;
|
|
L_7 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_7;
|
|
goto IL_0031;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
String_t* L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mA54BB6FC95F6A334563F761F05FC84C5C32BFA02_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t32A1744BDE106F003E9C6A6036A91A93D525943D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t29EE5BC049C8E6E06FCF067CA3C7996ABB9223C3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_tF981AFA76E8DC03D79A4571AD019D27A2603BC85 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t89A2B516384DA66E71D231D1679DE2DD0D0D2A8F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_t682C7BF48A7184731D0AD9EC2BD7B669F37E486A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_tB820742D5450B9776837D26DCBD8524A2E8010B4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t32A1744BDE106F003E9C6A6036A91A93D525943D);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t29EE5BC049C8E6E06FCF067CA3C7996ABB9223C3);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_tF981AFA76E8DC03D79A4571AD019D27A2603BC85);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t89A2B516384DA66E71D231D1679DE2DD0D0D2A8F);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_t682C7BF48A7184731D0AD9EC2BD7B669F37E486A);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_tB820742D5450B9776837D26DCBD8524A2E8010B4);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0029:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t32A1744BDE106F003E9C6A6036A91A93D525943D);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t29EE5BC049C8E6E06FCF067CA3C7996ABB9223C3);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_tF981AFA76E8DC03D79A4571AD019D27A2603BC85);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t89A2B516384DA66E71D231D1679DE2DD0D0D2A8F);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_t682C7BF48A7184731D0AD9EC2BD7B669F37E486A);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_tB820742D5450B9776837D26DCBD8524A2E8010B4);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker7< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)), il2cpp_rgctx_method(method->rgctx_data, 6), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6));
|
|
String_t* L_7;
|
|
L_7 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_7;
|
|
goto IL_0031;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
String_t* L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_mF3EBBCABC75419169D42D3CDA55DBF47331A9C1D_gshared (String_t* ___0_format, uint8_t ___1_arg1, uint8_t ___2_arg2, uint8_t ___3_arg3, uint8_t ___4_arg4, DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D ___5_arg5, int32_t ___6_arg6, RuntimeObject* ___7_arg7, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
uint8_t L_1 = ___1_arg1;
|
|
uint8_t L_2 = ___2_arg2;
|
|
uint8_t L_3 = ___3_arg3;
|
|
uint8_t L_4 = ___4_arg4;
|
|
DateTime_t66193957C73913903DDAD89FEDC46139BCA5802D L_5 = ___5_arg5;
|
|
int32_t L_6 = ___6_arg6;
|
|
RuntimeObject* L_7 = ___7_arg7;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisDateTime_t66193957C73913903DDAD89FEDC46139BCA5802D_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_TisRuntimeObject_mE542F9B2952A679DD059CCF2968FF03E5AE66B2E((&V_0), L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
String_t* L_8;
|
|
L_8 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_8;
|
|
goto IL_0033;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
String_t* L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_m21794D8FABCBF5D86BF012DAE59C572450C9FE3F_gshared (String_t* ___0_format, uint8_t ___1_arg1, uint8_t ___2_arg2, uint8_t ___3_arg3, uint8_t ___4_arg4, RuntimeObject* ___5_arg5, RuntimeObject* ___6_arg6, RuntimeObject* ___7_arg7, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
uint8_t L_1 = ___1_arg1;
|
|
uint8_t L_2 = ___2_arg2;
|
|
uint8_t L_3 = ___3_arg3;
|
|
uint8_t L_4 = ___4_arg4;
|
|
RuntimeObject* L_5 = ___5_arg5;
|
|
RuntimeObject* L_6 = ___6_arg6;
|
|
RuntimeObject* L_7 = ___7_arg7;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_AppendFormat_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisByte_t94D9231AC217BE4D2E004C4CD32DF6D099EA41A3_TisRuntimeObject_TisRuntimeObject_TisRuntimeObject_m2B02A03DE48E7061E1E0539F219344317967D633((&V_0), L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_7, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
String_t* L_8;
|
|
L_8 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_8;
|
|
goto IL_0033;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
String_t* L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mCC7CDF3761981D6706AC5EBD808F1C262DEAD8B4_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t3685C85A83891F89235C1A77627EB522BBC5CDCE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t5CC7911AEF90F0D68E89FD662F382DABE547678F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_tB6FA18756C11E7D023CE0EE7829F4DB8F76FFC03 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t051D6A47337C016AA3CDF2A34AADDA2965E41B30 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_tE1CAA19C3A817C8B144205F1DB9692C38926C696 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t44920A71EA5F182875B74F0614A6AD3E3EEFC0C2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_t1A5B27AD64F547813B4D7E51A9C9DED800C1CA11 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t3685C85A83891F89235C1A77627EB522BBC5CDCE);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t5CC7911AEF90F0D68E89FD662F382DABE547678F);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_tB6FA18756C11E7D023CE0EE7829F4DB8F76FFC03);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t051D6A47337C016AA3CDF2A34AADDA2965E41B30);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_tE1CAA19C3A817C8B144205F1DB9692C38926C696);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t44920A71EA5F182875B74F0614A6AD3E3EEFC0C2);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_t1A5B27AD64F547813B4D7E51A9C9DED800C1CA11);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t3685C85A83891F89235C1A77627EB522BBC5CDCE);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t5CC7911AEF90F0D68E89FD662F382DABE547678F);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_tB6FA18756C11E7D023CE0EE7829F4DB8F76FFC03);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t051D6A47337C016AA3CDF2A34AADDA2965E41B30);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_tE1CAA19C3A817C8B144205F1DB9692C38926C696);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t44920A71EA5F182875B74F0614A6AD3E3EEFC0C2);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_t1A5B27AD64F547813B4D7E51A9C9DED800C1CA11);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker8< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7));
|
|
String_t* L_8;
|
|
L_8 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_8;
|
|
goto IL_0033;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
String_t* L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mD85E023D42C2FC1725E763403FAA30F0C3EDB62F_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tBDD90C8AF342785F56E7CE3C9DE5EFABEE67EA9B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t6B30936E4B79A263B40083781FF86D3716F259C6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_tD59765F338E101D3683B8D78813ECF38706FEB15 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t1F4EF344680C864C97706360EE602CCDAE230AFD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_t460B66706349AF73D4D3D518AA7B1DBFDF84F213 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t7328C7B1B610CDAF835582055CB4FDB3DA46D45F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_t3745FF9CE7A310C5A0B54A8ACCEE5DB66957F412 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_tBDD90C8AF342785F56E7CE3C9DE5EFABEE67EA9B);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t6B30936E4B79A263B40083781FF86D3716F259C6);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_tD59765F338E101D3683B8D78813ECF38706FEB15);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t1F4EF344680C864C97706360EE602CCDAE230AFD);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_t460B66706349AF73D4D3D518AA7B1DBFDF84F213);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t7328C7B1B610CDAF835582055CB4FDB3DA46D45F);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_t3745FF9CE7A310C5A0B54A8ACCEE5DB66957F412);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_tBDD90C8AF342785F56E7CE3C9DE5EFABEE67EA9B);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t6B30936E4B79A263B40083781FF86D3716F259C6);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_tD59765F338E101D3683B8D78813ECF38706FEB15);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t1F4EF344680C864C97706360EE602CCDAE230AFD);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_t460B66706349AF73D4D3D518AA7B1DBFDF84F213);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t7328C7B1B610CDAF835582055CB4FDB3DA46D45F);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_t3745FF9CE7A310C5A0B54A8ACCEE5DB66957F412);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker8< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7));
|
|
String_t* L_8;
|
|
L_8 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_8;
|
|
goto IL_0033;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
String_t* L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m0A5DAA7F0B8CB6BA3550D21F6E9825E0C381D9CF_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t360B0DE0FB1BBD0C2F6B6C1767435554C3965E0D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t18D85FC840B693031A9EF8E8A55D15279C260255 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t52E693A585D0BC713F3E62BB91CDCE093CD62AEA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t8211315D9F04B943C4FFC36281CD367635FC093D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_tA27ED1D61B77059E5E6BEF84EE7CE4D2C397C5D1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t2B75D16828F501867B930BA9D18F800C96BD3EA3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_tC0FB78AEECCA095C2F9B332B86A4DE134C4D6E4F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_tAACDD2C2C744B6D38306C54E7589FA032B0F4918 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t360B0DE0FB1BBD0C2F6B6C1767435554C3965E0D);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t18D85FC840B693031A9EF8E8A55D15279C260255);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t52E693A585D0BC713F3E62BB91CDCE093CD62AEA);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t8211315D9F04B943C4FFC36281CD367635FC093D);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_tA27ED1D61B77059E5E6BEF84EE7CE4D2C397C5D1);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t2B75D16828F501867B930BA9D18F800C96BD3EA3);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_tC0FB78AEECCA095C2F9B332B86A4DE134C4D6E4F);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_tAACDD2C2C744B6D38306C54E7589FA032B0F4918);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002d:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t360B0DE0FB1BBD0C2F6B6C1767435554C3965E0D);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t18D85FC840B693031A9EF8E8A55D15279C260255);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t52E693A585D0BC713F3E62BB91CDCE093CD62AEA);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t8211315D9F04B943C4FFC36281CD367635FC093D);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_tA27ED1D61B77059E5E6BEF84EE7CE4D2C397C5D1);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t2B75D16828F501867B930BA9D18F800C96BD3EA3);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_tC0FB78AEECCA095C2F9B332B86A4DE134C4D6E4F);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_tAACDD2C2C744B6D38306C54E7589FA032B0F4918);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker9< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)), il2cpp_rgctx_method(method->rgctx_data, 8), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8));
|
|
String_t* L_9;
|
|
L_9 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_9;
|
|
goto IL_0035;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
String_t* L_10 = V_1;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m17823844F60CCE48A8251B06B574720E2ADB3359_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t1B895C33FC3C5B5D7C348918EC77D1D1EB03872C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t03E6C6939B91EC5798FA5B02A3CB07DCB148199D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_tB0FFD21BE810B41F8C0CF0C3D64FDBD70679D239 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_tB038889A4EBC27BA00F5AD93E2ADC5316BFF073A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_t0020C650EC48C045F5336F726EFF51C3F59B7DF3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t25466EFD52894E62890768BA14FCA085907219CE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_tEEB6C1B7789BFC42D383647EF648A42A55399166 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_t45894B7CE7B9280397DAF3AABC2CB479D3B7F4F4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t1B895C33FC3C5B5D7C348918EC77D1D1EB03872C);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t03E6C6939B91EC5798FA5B02A3CB07DCB148199D);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_tB0FFD21BE810B41F8C0CF0C3D64FDBD70679D239);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_tB038889A4EBC27BA00F5AD93E2ADC5316BFF073A);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_t0020C650EC48C045F5336F726EFF51C3F59B7DF3);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t25466EFD52894E62890768BA14FCA085907219CE);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_tEEB6C1B7789BFC42D383647EF648A42A55399166);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_t45894B7CE7B9280397DAF3AABC2CB479D3B7F4F4);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002d:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t1B895C33FC3C5B5D7C348918EC77D1D1EB03872C);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t03E6C6939B91EC5798FA5B02A3CB07DCB148199D);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_tB0FFD21BE810B41F8C0CF0C3D64FDBD70679D239);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_tB038889A4EBC27BA00F5AD93E2ADC5316BFF073A);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_t0020C650EC48C045F5336F726EFF51C3F59B7DF3);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t25466EFD52894E62890768BA14FCA085907219CE);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_tEEB6C1B7789BFC42D383647EF648A42A55399166);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_t45894B7CE7B9280397DAF3AABC2CB479D3B7F4F4);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker9< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 8)), il2cpp_rgctx_method(method->rgctx_data, 8), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8));
|
|
String_t* L_9;
|
|
L_9 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_9;
|
|
goto IL_0035;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
String_t* L_10 = V_1;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m955BCE60AF7CBC07CC0A5866622F7D95E581EC90_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t1A94C29FDF3058FA2ED2D9C5A55757A3188A96FD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t1F97206F40BA5189CD34EDF53624DDFAEEC3A296 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_tC7866700FAEBB970D2260D18F9BC280125C21BA4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_tBDBEF14AAA4D2AE21768E9C36E376A15145E3856 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_t1C7FC3CC3E0DC6A91A3557A17D3521D301DAFB5B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t2B5DC383B1AC512A4FF52AF3E3A04138AE6EB072 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_t174314E4A91F23C9A94FABACBC248A0CEB74B5B4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_tCFDB744218C4E4AD25B77058B2A73C38A888F2FE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_t5D73856C4FECA32C9ECD286F44EE82755A0B1FAC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t1A94C29FDF3058FA2ED2D9C5A55757A3188A96FD);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t1F97206F40BA5189CD34EDF53624DDFAEEC3A296);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_tC7866700FAEBB970D2260D18F9BC280125C21BA4);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_tBDBEF14AAA4D2AE21768E9C36E376A15145E3856);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_t1C7FC3CC3E0DC6A91A3557A17D3521D301DAFB5B);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t2B5DC383B1AC512A4FF52AF3E3A04138AE6EB072);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_t174314E4A91F23C9A94FABACBC248A0CEB74B5B4);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_tCFDB744218C4E4AD25B77058B2A73C38A888F2FE);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_t5D73856C4FECA32C9ECD286F44EE82755A0B1FAC);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002f:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t1A94C29FDF3058FA2ED2D9C5A55757A3188A96FD);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t1F97206F40BA5189CD34EDF53624DDFAEEC3A296);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_tC7866700FAEBB970D2260D18F9BC280125C21BA4);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_tBDBEF14AAA4D2AE21768E9C36E376A15145E3856);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_t1C7FC3CC3E0DC6A91A3557A17D3521D301DAFB5B);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t2B5DC383B1AC512A4FF52AF3E3A04138AE6EB072);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_t174314E4A91F23C9A94FABACBC248A0CEB74B5B4);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_tCFDB744218C4E4AD25B77058B2A73C38A888F2FE);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_t5D73856C4FECA32C9ECD286F44EE82755A0B1FAC);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker10< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9));
|
|
String_t* L_10;
|
|
L_10 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_10;
|
|
goto IL_0037;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
String_t* L_11 = V_1;
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m1989A3AF9FDA9E8D210DBD8FCB077EFE713F5950_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tBDBF60BA7244A4731DEFD56B20F2B194559A96FE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t9A5270E9340FA490BA0E2A56AC5E337E1D640E1A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_tDCFB2BEC5FE5122B3C09AE07344AD69ECCFDDCBE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t34C5B4DAFA405EC96493A098FD7FAFCCF9AF01FC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_t85A46B34BC74CCF60373D5AA99B4AE17ACA3DEA2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t8BF7264893269DD8464C811885D3030C114ED0BA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_t39199E21CC559E22879E08158C2A90E6729B6B61 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_t402535F3F53B8A58A58EB1C00A2CAAB2442B4A08 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_t1495343169409ABBE626C9F0AEF0DCB3C0E57481 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_tBDBF60BA7244A4731DEFD56B20F2B194559A96FE);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t9A5270E9340FA490BA0E2A56AC5E337E1D640E1A);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_tDCFB2BEC5FE5122B3C09AE07344AD69ECCFDDCBE);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t34C5B4DAFA405EC96493A098FD7FAFCCF9AF01FC);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_t85A46B34BC74CCF60373D5AA99B4AE17ACA3DEA2);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t8BF7264893269DD8464C811885D3030C114ED0BA);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_t39199E21CC559E22879E08158C2A90E6729B6B61);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_t402535F3F53B8A58A58EB1C00A2CAAB2442B4A08);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_t1495343169409ABBE626C9F0AEF0DCB3C0E57481);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002f:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_tBDBF60BA7244A4731DEFD56B20F2B194559A96FE);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t9A5270E9340FA490BA0E2A56AC5E337E1D640E1A);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_tDCFB2BEC5FE5122B3C09AE07344AD69ECCFDDCBE);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t34C5B4DAFA405EC96493A098FD7FAFCCF9AF01FC);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_t85A46B34BC74CCF60373D5AA99B4AE17ACA3DEA2);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t8BF7264893269DD8464C811885D3030C114ED0BA);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_t39199E21CC559E22879E08158C2A90E6729B6B61);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_t402535F3F53B8A58A58EB1C00A2CAAB2442B4A08);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_t1495343169409ABBE626C9F0AEF0DCB3C0E57481);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker10< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9));
|
|
String_t* L_10;
|
|
L_10 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_10;
|
|
goto IL_0037;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
String_t* L_11 = V_1;
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m4106223888DD8D2CBF949AEB930B402A4CF698AC_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t340E996681DF27A6FDC5FBE19AC48184444692A8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t7626263B6D02895DF9B06232FA5B9DAA72A0F8B7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t0261011939A7E72E49D8517E68FADD6990AB3526 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t6EB340E02FBDE7BA69C4B9B4A911D1EAA6EFBF97 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_t83A9496215D4A1F9D481C10478017C3B30001865 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t8A1D4441DD2723A4537ED68A3B4FCF691BB65BD5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_t50B53C06C0F4348247C3AEED9062CE466C0533E6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_tAA73797E8648D197BB66F709CB2E89929BF7BC25 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_tDF560ECAA7E7B92ACF0CD0D839B3388A2A5D3334 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_t190128BB09FB83638AC26E49D111297A887B69E7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t340E996681DF27A6FDC5FBE19AC48184444692A8);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t7626263B6D02895DF9B06232FA5B9DAA72A0F8B7);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t0261011939A7E72E49D8517E68FADD6990AB3526);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t6EB340E02FBDE7BA69C4B9B4A911D1EAA6EFBF97);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_t83A9496215D4A1F9D481C10478017C3B30001865);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t8A1D4441DD2723A4537ED68A3B4FCF691BB65BD5);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_t50B53C06C0F4348247C3AEED9062CE466C0533E6);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_tAA73797E8648D197BB66F709CB2E89929BF7BC25);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_tDF560ECAA7E7B92ACF0CD0D839B3388A2A5D3334);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_t190128BB09FB83638AC26E49D111297A887B69E7);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0031:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t340E996681DF27A6FDC5FBE19AC48184444692A8);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t7626263B6D02895DF9B06232FA5B9DAA72A0F8B7);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t0261011939A7E72E49D8517E68FADD6990AB3526);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t6EB340E02FBDE7BA69C4B9B4A911D1EAA6EFBF97);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_t83A9496215D4A1F9D481C10478017C3B30001865);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t8A1D4441DD2723A4537ED68A3B4FCF691BB65BD5);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_t50B53C06C0F4348247C3AEED9062CE466C0533E6);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_tAA73797E8648D197BB66F709CB2E89929BF7BC25);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_tDF560ECAA7E7B92ACF0CD0D839B3388A2A5D3334);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_t190128BB09FB83638AC26E49D111297A887B69E7);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker11< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)), il2cpp_rgctx_method(method->rgctx_data, 10), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10));
|
|
String_t* L_11;
|
|
L_11 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_11;
|
|
goto IL_0039;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
String_t* L_12 = V_1;
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m708A853F689298FFAB1BB07BEA9D94F60D244AAA_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t5055A1983E0E904A56F62596401CCF73F571C9DF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tD69855547D8BEDC8E4E61A76074A334ED1A323DA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t903BAAE8B3B1643AD2096F6639A03D51BB8651C6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t07CC080FEF5B618D3FBBE0A2475D8E9E39739213 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_tBFAC4E52CFE850B7F0F6F6879A2FF2F6C49E9C99 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_tBFF5627E8A79D62E42C28365548125BE4A5BD4A0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_t8983BB4D5A679F25499F24B7D0264C7F2F4A3E71 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_t4ABFFEC8A16A83489D9444879D95E019A469A760 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_t1275FEF563709DD1652C35A7D0AAFEE9421780C3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_tDA52352D83921FFF7C977B9C51FFE20F810B9A40 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t5055A1983E0E904A56F62596401CCF73F571C9DF);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_tD69855547D8BEDC8E4E61A76074A334ED1A323DA);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t903BAAE8B3B1643AD2096F6639A03D51BB8651C6);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t07CC080FEF5B618D3FBBE0A2475D8E9E39739213);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_tBFAC4E52CFE850B7F0F6F6879A2FF2F6C49E9C99);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_tBFF5627E8A79D62E42C28365548125BE4A5BD4A0);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_t8983BB4D5A679F25499F24B7D0264C7F2F4A3E71);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_t4ABFFEC8A16A83489D9444879D95E019A469A760);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_t1275FEF563709DD1652C35A7D0AAFEE9421780C3);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_tDA52352D83921FFF7C977B9C51FFE20F810B9A40);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0031:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t5055A1983E0E904A56F62596401CCF73F571C9DF);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_tD69855547D8BEDC8E4E61A76074A334ED1A323DA);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t903BAAE8B3B1643AD2096F6639A03D51BB8651C6);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t07CC080FEF5B618D3FBBE0A2475D8E9E39739213);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_tBFAC4E52CFE850B7F0F6F6879A2FF2F6C49E9C99);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_tBFF5627E8A79D62E42C28365548125BE4A5BD4A0);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_t8983BB4D5A679F25499F24B7D0264C7F2F4A3E71);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_t4ABFFEC8A16A83489D9444879D95E019A469A760);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_t1275FEF563709DD1652C35A7D0AAFEE9421780C3);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_tDA52352D83921FFF7C977B9C51FFE20F810B9A40);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker11< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 10)), il2cpp_rgctx_method(method->rgctx_data, 10), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10));
|
|
String_t* L_11;
|
|
L_11 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_11;
|
|
goto IL_0039;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
String_t* L_12 = V_1;
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m2494504A5E3F53F46E7A4C019194AC68764BE9F4_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, Il2CppFullySharedGenericAny ___11_arg11, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t7A8CDE5E4031FB23C3A590E85719294CB4397113 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tF40FF42F11D094B2ECF39F71616206621210B304 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t2285252853BCA7A487FE6B0FF70789A05A30404F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_tB930EF4A7095C8EAB1F1D7DCE63C476BEF008E88 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_tD15D3D5796876190D75CB01E4ECD8966191B0641 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_tDEB69113401FEF8E9BFD8A29E1D7FA4337CD260B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_tEEA5E2763A070119646166FE177B30BB5ED9932C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_tADC0A295332F124450F62E7552D0E2FC0B73C6DC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_t3A8230B4EFF644E2F8D4EAC961BE854F7E0996D9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_t25ABC54D7D854E3156EBE8C6172DE8D6D7A71D84 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T11_t53F70F57FD600C4B9F47108807B724587C380D27 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t7A8CDE5E4031FB23C3A590E85719294CB4397113);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_tF40FF42F11D094B2ECF39F71616206621210B304);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t2285252853BCA7A487FE6B0FF70789A05A30404F);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_tB930EF4A7095C8EAB1F1D7DCE63C476BEF008E88);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_tD15D3D5796876190D75CB01E4ECD8966191B0641);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_tDEB69113401FEF8E9BFD8A29E1D7FA4337CD260B);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_tEEA5E2763A070119646166FE177B30BB5ED9932C);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_tADC0A295332F124450F62E7552D0E2FC0B73C6DC);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_t3A8230B4EFF644E2F8D4EAC961BE854F7E0996D9);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_t25ABC54D7D854E3156EBE8C6172DE8D6D7A71D84);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_T11_t53F70F57FD600C4B9F47108807B724587C380D27);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0033:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t7A8CDE5E4031FB23C3A590E85719294CB4397113);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_tF40FF42F11D094B2ECF39F71616206621210B304);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t2285252853BCA7A487FE6B0FF70789A05A30404F);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_tB930EF4A7095C8EAB1F1D7DCE63C476BEF008E88);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_tD15D3D5796876190D75CB01E4ECD8966191B0641);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_tDEB69113401FEF8E9BFD8A29E1D7FA4337CD260B);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_tEEA5E2763A070119646166FE177B30BB5ED9932C);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_tADC0A295332F124450F62E7552D0E2FC0B73C6DC);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_t3A8230B4EFF644E2F8D4EAC961BE854F7E0996D9);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_t25ABC54D7D854E3156EBE8C6172DE8D6D7A71D84);
|
|
il2cpp_codegen_memcpy(L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___11_arg11 : &___11_arg11), SizeOf_T11_t53F70F57FD600C4B9F47108807B724587C380D27);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker12< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_11: *(void**)L_11));
|
|
String_t* L_12;
|
|
L_12 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_12;
|
|
goto IL_003b;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
String_t* L_13 = V_1;
|
|
return L_13;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m0252DB388A8E441A8DEF83B0B3123EF04CCBD3BD_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, Il2CppFullySharedGenericAny ___11_arg11, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t9F518C7DE5C03A79D0C74355C5441C0F3275F09B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t18CAC12E1F86785290F44E4233F5B4A16F373286 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_tE489B4BDD8F5D498AAFF0C60FA0282C1EF876633 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t89435766DAC73E1EC781E03EF63A4945C60772A9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_tC7845698D4A43AFAD7550574B5CF0DE54DF99FCC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_tDA6CA31237FBD6777492F9AD0D9BA4608CD28669 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_t86DE73B87F9FAB8573053469D41DB3205EBBCBA1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_t6B6CE79D88B5D76D185D6FAEEF69AC407C934FAA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_tF745E4300041F9238979163C675E5EA477B7B846 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_t4AB80D69DA1D458D45CF2EE1B23ED888A4605B6D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T11_tCAE175F13F58778F0B35B5F6D30DF8AC9E51CD32 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t9F518C7DE5C03A79D0C74355C5441C0F3275F09B);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t18CAC12E1F86785290F44E4233F5B4A16F373286);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_tE489B4BDD8F5D498AAFF0C60FA0282C1EF876633);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t89435766DAC73E1EC781E03EF63A4945C60772A9);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_tC7845698D4A43AFAD7550574B5CF0DE54DF99FCC);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_tDA6CA31237FBD6777492F9AD0D9BA4608CD28669);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_t86DE73B87F9FAB8573053469D41DB3205EBBCBA1);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_t6B6CE79D88B5D76D185D6FAEEF69AC407C934FAA);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_tF745E4300041F9238979163C675E5EA477B7B846);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_t4AB80D69DA1D458D45CF2EE1B23ED888A4605B6D);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_T11_tCAE175F13F58778F0B35B5F6D30DF8AC9E51CD32);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0033:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t9F518C7DE5C03A79D0C74355C5441C0F3275F09B);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t18CAC12E1F86785290F44E4233F5B4A16F373286);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_tE489B4BDD8F5D498AAFF0C60FA0282C1EF876633);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t89435766DAC73E1EC781E03EF63A4945C60772A9);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_tC7845698D4A43AFAD7550574B5CF0DE54DF99FCC);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_tDA6CA31237FBD6777492F9AD0D9BA4608CD28669);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_t86DE73B87F9FAB8573053469D41DB3205EBBCBA1);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_t6B6CE79D88B5D76D185D6FAEEF69AC407C934FAA);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_tF745E4300041F9238979163C675E5EA477B7B846);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_t4AB80D69DA1D458D45CF2EE1B23ED888A4605B6D);
|
|
il2cpp_codegen_memcpy(L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___11_arg11 : &___11_arg11), SizeOf_T11_tCAE175F13F58778F0B35B5F6D30DF8AC9E51CD32);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker12< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_11: *(void**)L_11));
|
|
String_t* L_12;
|
|
L_12 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_12;
|
|
goto IL_003b;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
String_t* L_13 = V_1;
|
|
return L_13;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m86AEDEB76007CE55D8CBF7BDBD41048177A2336E_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, Il2CppFullySharedGenericAny ___11_arg11, Il2CppFullySharedGenericAny ___12_arg12, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t8D1B9B326E5038BEF5BCF293092167DBFA542113 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tD43D6919C2E43C03F7AF33F6C291D58128165FE2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_tAAE95AEB2C7073759B8267673DF0C477AC126E41 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t3301E286C5C6F0B796E2234B0AC60A93823EFC3C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_t5A8667288B907210DC48E1E223A8F4FF09FDD4FE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t593DF71EE741F7730CEFD010EC218E9D787BCE9A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_tC9FBA830EA3AFA9D570BF3FFD6EFD9E9A5F82BD3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_tAE1673BE4AD679D1ED73B91C7AEA11C175646633 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_tBBA9DAB2F539FDB02F8DC2E7FCEACE05501B24C5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_t96FA70F08D99AFB8EF85DFAF14F2B2202413A25D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T11_t7687B58D6A2F519BA3D8A0E8EB0F2915702A6C10 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T12_t9FEBAFCF097DAEEF6C49666AA25F28349E0E9FD3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t8D1B9B326E5038BEF5BCF293092167DBFA542113);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_tD43D6919C2E43C03F7AF33F6C291D58128165FE2);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_tAAE95AEB2C7073759B8267673DF0C477AC126E41);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t3301E286C5C6F0B796E2234B0AC60A93823EFC3C);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_t5A8667288B907210DC48E1E223A8F4FF09FDD4FE);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t593DF71EE741F7730CEFD010EC218E9D787BCE9A);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_tC9FBA830EA3AFA9D570BF3FFD6EFD9E9A5F82BD3);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_tAE1673BE4AD679D1ED73B91C7AEA11C175646633);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_tBBA9DAB2F539FDB02F8DC2E7FCEACE05501B24C5);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_t96FA70F08D99AFB8EF85DFAF14F2B2202413A25D);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_T11_t7687B58D6A2F519BA3D8A0E8EB0F2915702A6C10);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_T12_t9FEBAFCF097DAEEF6C49666AA25F28349E0E9FD3);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0035:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t8D1B9B326E5038BEF5BCF293092167DBFA542113);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_tD43D6919C2E43C03F7AF33F6C291D58128165FE2);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_tAAE95AEB2C7073759B8267673DF0C477AC126E41);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t3301E286C5C6F0B796E2234B0AC60A93823EFC3C);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_t5A8667288B907210DC48E1E223A8F4FF09FDD4FE);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t593DF71EE741F7730CEFD010EC218E9D787BCE9A);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_tC9FBA830EA3AFA9D570BF3FFD6EFD9E9A5F82BD3);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_tAE1673BE4AD679D1ED73B91C7AEA11C175646633);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_tBBA9DAB2F539FDB02F8DC2E7FCEACE05501B24C5);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_t96FA70F08D99AFB8EF85DFAF14F2B2202413A25D);
|
|
il2cpp_codegen_memcpy(L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___11_arg11 : &___11_arg11), SizeOf_T11_t7687B58D6A2F519BA3D8A0E8EB0F2915702A6C10);
|
|
il2cpp_codegen_memcpy(L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? ___12_arg12 : &___12_arg12), SizeOf_T12_t9FEBAFCF097DAEEF6C49666AA25F28349E0E9FD3);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker13< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)), il2cpp_rgctx_method(method->rgctx_data, 12), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_11: *(void**)L_11), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? L_12: *(void**)L_12));
|
|
String_t* L_13;
|
|
L_13 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_13;
|
|
goto IL_003d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
String_t* L_14 = V_1;
|
|
return L_14;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m06AC64DAFD0B9109D8EEB8E1C10C43D8B5BE3488_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, Il2CppFullySharedGenericAny ___11_arg11, Il2CppFullySharedGenericAny ___12_arg12, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t4508ED0E6B75414ECE8544955979CF55800CB769 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tF3210C11902047DB797E8C2E9FE0E365BA4FDD5A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t483C0F3FE4CD15C3786D1D789CDCCDAEA133C7D6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_tEF2EF2AA2A6022642E4ACFCAE6C7C4E57DD12E8D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_tC9B696D77ED593BF1B96DAE5573D85D948617E6A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t13C0CA64F946A91A7877241FF51560C51A9A8956 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_tA83E07ED8CDAE523A9332674C47EC97B29313570 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_t101C8D7B5DF9310D6154E4EDDC8431284495F922 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_tEEA8B3BF1828439E39F4157240EE736D15F23883 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_t636E5BA5AF763115D4C6E55B1B3564AAD20BFA23 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T11_t07C85609B0280F71CB585E74198DA21E2E26F740 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T12_t8A5AD5F0ACA40C196C8F770276A2FEB84CD943D0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t4508ED0E6B75414ECE8544955979CF55800CB769);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_tF3210C11902047DB797E8C2E9FE0E365BA4FDD5A);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t483C0F3FE4CD15C3786D1D789CDCCDAEA133C7D6);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_tEF2EF2AA2A6022642E4ACFCAE6C7C4E57DD12E8D);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_tC9B696D77ED593BF1B96DAE5573D85D948617E6A);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t13C0CA64F946A91A7877241FF51560C51A9A8956);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_tA83E07ED8CDAE523A9332674C47EC97B29313570);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_t101C8D7B5DF9310D6154E4EDDC8431284495F922);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_tEEA8B3BF1828439E39F4157240EE736D15F23883);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_t636E5BA5AF763115D4C6E55B1B3564AAD20BFA23);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_T11_t07C85609B0280F71CB585E74198DA21E2E26F740);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_T12_t8A5AD5F0ACA40C196C8F770276A2FEB84CD943D0);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0035:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t4508ED0E6B75414ECE8544955979CF55800CB769);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_tF3210C11902047DB797E8C2E9FE0E365BA4FDD5A);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t483C0F3FE4CD15C3786D1D789CDCCDAEA133C7D6);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_tEF2EF2AA2A6022642E4ACFCAE6C7C4E57DD12E8D);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_tC9B696D77ED593BF1B96DAE5573D85D948617E6A);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t13C0CA64F946A91A7877241FF51560C51A9A8956);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_tA83E07ED8CDAE523A9332674C47EC97B29313570);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_t101C8D7B5DF9310D6154E4EDDC8431284495F922);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_tEEA8B3BF1828439E39F4157240EE736D15F23883);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_t636E5BA5AF763115D4C6E55B1B3564AAD20BFA23);
|
|
il2cpp_codegen_memcpy(L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___11_arg11 : &___11_arg11), SizeOf_T11_t07C85609B0280F71CB585E74198DA21E2E26F740);
|
|
il2cpp_codegen_memcpy(L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? ___12_arg12 : &___12_arg12), SizeOf_T12_t8A5AD5F0ACA40C196C8F770276A2FEB84CD943D0);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker13< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 12)), il2cpp_rgctx_method(method->rgctx_data, 12), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_11: *(void**)L_11), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? L_12: *(void**)L_12));
|
|
String_t* L_13;
|
|
L_13 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_13;
|
|
goto IL_003d;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
String_t* L_14 = V_1;
|
|
return L_14;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m2645EAB1354E59B5541DDFBC09ACADC74B78C19E_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, Il2CppFullySharedGenericAny ___11_arg11, Il2CppFullySharedGenericAny ___12_arg12, Il2CppFullySharedGenericAny ___13_arg13, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t073C9BD25BB77D6864BC2CD8AFC38C8CE47C04B8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t89D37AFA8598ECDBBC24A1D9205D9998EA620FDB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_tCD1A81147B998B84A068407943841893E300A51C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_t046433E3B1E5BB37BD1E0015725F2A84B29086E2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_tAA38D6DCC5E76D9D19A8EEF619978D04669B03F1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_tE4E0EFB0A801AD58589103C85A7D3F66D6DDB77F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_t49C2D5B26624595CD112FB4CF3FD0A0AAC68887C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_tC8CC20D8452E072332A470841325CAC34938E9BD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_t23CB6803B94881D1FD0DEF32EA2E7CF1672F4041 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_tCFCDFD0E16ACBC472275DDAA75578B8BACF7F667 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T11_tDDAC35CFE337E03753D058F0FBB2175081EC452F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T12_t29C0738CDC7B1826FF69D3B517ACFA3FEB7528E6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T13_t2CFD155DA178DB66AC0C8CFEE96CAC7090D9AA8D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t073C9BD25BB77D6864BC2CD8AFC38C8CE47C04B8);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t89D37AFA8598ECDBBC24A1D9205D9998EA620FDB);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_tCD1A81147B998B84A068407943841893E300A51C);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_t046433E3B1E5BB37BD1E0015725F2A84B29086E2);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_tAA38D6DCC5E76D9D19A8EEF619978D04669B03F1);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_tE4E0EFB0A801AD58589103C85A7D3F66D6DDB77F);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_t49C2D5B26624595CD112FB4CF3FD0A0AAC68887C);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_tC8CC20D8452E072332A470841325CAC34938E9BD);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_t23CB6803B94881D1FD0DEF32EA2E7CF1672F4041);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_tCFCDFD0E16ACBC472275DDAA75578B8BACF7F667);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_T11_tDDAC35CFE337E03753D058F0FBB2175081EC452F);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_T12_t29C0738CDC7B1826FF69D3B517ACFA3FEB7528E6);
|
|
const Il2CppFullySharedGenericAny L_13 = alloca(SizeOf_T13_t2CFD155DA178DB66AC0C8CFEE96CAC7090D9AA8D);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0037:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t073C9BD25BB77D6864BC2CD8AFC38C8CE47C04B8);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t89D37AFA8598ECDBBC24A1D9205D9998EA620FDB);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_tCD1A81147B998B84A068407943841893E300A51C);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_t046433E3B1E5BB37BD1E0015725F2A84B29086E2);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_tAA38D6DCC5E76D9D19A8EEF619978D04669B03F1);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_tE4E0EFB0A801AD58589103C85A7D3F66D6DDB77F);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_t49C2D5B26624595CD112FB4CF3FD0A0AAC68887C);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_tC8CC20D8452E072332A470841325CAC34938E9BD);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_t23CB6803B94881D1FD0DEF32EA2E7CF1672F4041);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_tCFCDFD0E16ACBC472275DDAA75578B8BACF7F667);
|
|
il2cpp_codegen_memcpy(L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___11_arg11 : &___11_arg11), SizeOf_T11_tDDAC35CFE337E03753D058F0FBB2175081EC452F);
|
|
il2cpp_codegen_memcpy(L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? ___12_arg12 : &___12_arg12), SizeOf_T12_t29C0738CDC7B1826FF69D3B517ACFA3FEB7528E6);
|
|
il2cpp_codegen_memcpy(L_13, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___13_arg13 : &___13_arg13), SizeOf_T13_t2CFD155DA178DB66AC0C8CFEE96CAC7090D9AA8D);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker14< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_11: *(void**)L_11), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? L_12: *(void**)L_12), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_13: *(void**)L_13));
|
|
String_t* L_14;
|
|
L_14 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_14;
|
|
goto IL_003f;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
String_t* L_15 = V_1;
|
|
return L_15;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mE75157FA41789974A8D680B58A4CEF94A15B35A0_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, Il2CppFullySharedGenericAny ___11_arg11, Il2CppFullySharedGenericAny ___12_arg12, Il2CppFullySharedGenericAny ___13_arg13, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t3ECADB15F876F3A4B21E4D86EFE0C5B5B7D844CD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tA9D99075D7FC23E899A48469B7876E65885FF597 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t778AF79D7C6C1B82455C81E2D8C54129FE9F8376 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_tC27FC8424065BA6BB613045FB0150D7F38E5DBAF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_t5084FD547B33DE51FD8CC52AB1435540A1B65DF5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t52B95A6C1671B67D3C00476A2DD94339FC12706A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_t790A94D47E79A0271E10C7ED71FCBBC857022031 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_t38E395A0E5D73603D85A5C00E3FD442D21F64865 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_t226B3BCA1EC0505C770B267A6CCA0CAB247CBA15 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_tFFA9EEAFEA727CE8458E3164B0B76FA66D1E3DCF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T11_t114FB63DFC21FAF7A64D657AA2673A77D7B6A854 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T12_t42EE028D21AE8C39DDAAD2C84ACBEB615626AF99 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T13_t4BCC5E489BD64328422AEC8A684545E6089913C7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t3ECADB15F876F3A4B21E4D86EFE0C5B5B7D844CD);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_tA9D99075D7FC23E899A48469B7876E65885FF597);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t778AF79D7C6C1B82455C81E2D8C54129FE9F8376);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_tC27FC8424065BA6BB613045FB0150D7F38E5DBAF);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_t5084FD547B33DE51FD8CC52AB1435540A1B65DF5);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t52B95A6C1671B67D3C00476A2DD94339FC12706A);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_t790A94D47E79A0271E10C7ED71FCBBC857022031);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_t38E395A0E5D73603D85A5C00E3FD442D21F64865);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_t226B3BCA1EC0505C770B267A6CCA0CAB247CBA15);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_tFFA9EEAFEA727CE8458E3164B0B76FA66D1E3DCF);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_T11_t114FB63DFC21FAF7A64D657AA2673A77D7B6A854);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_T12_t42EE028D21AE8C39DDAAD2C84ACBEB615626AF99);
|
|
const Il2CppFullySharedGenericAny L_13 = alloca(SizeOf_T13_t4BCC5E489BD64328422AEC8A684545E6089913C7);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0037:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t3ECADB15F876F3A4B21E4D86EFE0C5B5B7D844CD);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_tA9D99075D7FC23E899A48469B7876E65885FF597);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t778AF79D7C6C1B82455C81E2D8C54129FE9F8376);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_tC27FC8424065BA6BB613045FB0150D7F38E5DBAF);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_t5084FD547B33DE51FD8CC52AB1435540A1B65DF5);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t52B95A6C1671B67D3C00476A2DD94339FC12706A);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_t790A94D47E79A0271E10C7ED71FCBBC857022031);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_t38E395A0E5D73603D85A5C00E3FD442D21F64865);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_t226B3BCA1EC0505C770B267A6CCA0CAB247CBA15);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_tFFA9EEAFEA727CE8458E3164B0B76FA66D1E3DCF);
|
|
il2cpp_codegen_memcpy(L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___11_arg11 : &___11_arg11), SizeOf_T11_t114FB63DFC21FAF7A64D657AA2673A77D7B6A854);
|
|
il2cpp_codegen_memcpy(L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? ___12_arg12 : &___12_arg12), SizeOf_T12_t42EE028D21AE8C39DDAAD2C84ACBEB615626AF99);
|
|
il2cpp_codegen_memcpy(L_13, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___13_arg13 : &___13_arg13), SizeOf_T13_t4BCC5E489BD64328422AEC8A684545E6089913C7);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker14< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_11: *(void**)L_11), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? L_12: *(void**)L_12), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_13: *(void**)L_13));
|
|
String_t* L_14;
|
|
L_14 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_14;
|
|
goto IL_003f;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
String_t* L_15 = V_1;
|
|
return L_15;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m26C85348DA281422B976E313010FEAB0476D590F_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, Il2CppFullySharedGenericAny ___11_arg11, Il2CppFullySharedGenericAny ___12_arg12, Il2CppFullySharedGenericAny ___13_arg13, Il2CppFullySharedGenericAny ___14_arg14, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t0130B680A85827A2EBCC18CAF1CAC7726658A3C2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tFD14E815E3EE478273EB09E8DF1C724703118282 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t89A99205691A0705D88EFB9FBF5648F8AE56C3AE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_tDA00985352A59CF1AE7B3B3E5DB816E507819237 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_t10CF58228340F574371529B1BC7552CA3B23F17B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t5A8B205D9A8CEDE1A1ED27173143577813ACDD8E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_tE6FB51B9A68188BBB7BEBCE012278D5E761C16BA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_t2334DB0F6AB85D72671DCED19F8AA44842390C5B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_t315A23AEE8271087AA7CF0E28BEDB017097A1D65 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_tBB49431978B990AA09279F6BC0F4EC07F313A20B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T11_t7C837E9F48A2E8C9B15235A51206FB9C006A21D2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T12_t4E7A67E513B26E4671A9FB067AEA87AAF5C5F73A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T13_tF0589C88D4BFB5D632BEE4EE5655B57B8ED92D08 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T14_t72E7027C8410DDBC15031811FA3B2B47F0050884 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t0130B680A85827A2EBCC18CAF1CAC7726658A3C2);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_tFD14E815E3EE478273EB09E8DF1C724703118282);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t89A99205691A0705D88EFB9FBF5648F8AE56C3AE);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_tDA00985352A59CF1AE7B3B3E5DB816E507819237);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_t10CF58228340F574371529B1BC7552CA3B23F17B);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t5A8B205D9A8CEDE1A1ED27173143577813ACDD8E);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_tE6FB51B9A68188BBB7BEBCE012278D5E761C16BA);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_t2334DB0F6AB85D72671DCED19F8AA44842390C5B);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_t315A23AEE8271087AA7CF0E28BEDB017097A1D65);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_tBB49431978B990AA09279F6BC0F4EC07F313A20B);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_T11_t7C837E9F48A2E8C9B15235A51206FB9C006A21D2);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_T12_t4E7A67E513B26E4671A9FB067AEA87AAF5C5F73A);
|
|
const Il2CppFullySharedGenericAny L_13 = alloca(SizeOf_T13_tF0589C88D4BFB5D632BEE4EE5655B57B8ED92D08);
|
|
const Il2CppFullySharedGenericAny L_14 = alloca(SizeOf_T14_t72E7027C8410DDBC15031811FA3B2B47F0050884);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0039:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t0130B680A85827A2EBCC18CAF1CAC7726658A3C2);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_tFD14E815E3EE478273EB09E8DF1C724703118282);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t89A99205691A0705D88EFB9FBF5648F8AE56C3AE);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_tDA00985352A59CF1AE7B3B3E5DB816E507819237);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_t10CF58228340F574371529B1BC7552CA3B23F17B);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t5A8B205D9A8CEDE1A1ED27173143577813ACDD8E);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_tE6FB51B9A68188BBB7BEBCE012278D5E761C16BA);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_t2334DB0F6AB85D72671DCED19F8AA44842390C5B);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_t315A23AEE8271087AA7CF0E28BEDB017097A1D65);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_tBB49431978B990AA09279F6BC0F4EC07F313A20B);
|
|
il2cpp_codegen_memcpy(L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___11_arg11 : &___11_arg11), SizeOf_T11_t7C837E9F48A2E8C9B15235A51206FB9C006A21D2);
|
|
il2cpp_codegen_memcpy(L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? ___12_arg12 : &___12_arg12), SizeOf_T12_t4E7A67E513B26E4671A9FB067AEA87AAF5C5F73A);
|
|
il2cpp_codegen_memcpy(L_13, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___13_arg13 : &___13_arg13), SizeOf_T13_tF0589C88D4BFB5D632BEE4EE5655B57B8ED92D08);
|
|
il2cpp_codegen_memcpy(L_14, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___14_arg14 : &___14_arg14), SizeOf_T14_t72E7027C8410DDBC15031811FA3B2B47F0050884);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker15< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 14)), il2cpp_rgctx_method(method->rgctx_data, 14), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_11: *(void**)L_11), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? L_12: *(void**)L_12), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_13: *(void**)L_13), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? L_14: *(void**)L_14));
|
|
String_t* L_15;
|
|
L_15 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_15;
|
|
goto IL_0041;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
String_t* L_16 = V_1;
|
|
return L_16;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m2B28EE6EB99EF618E595B0BA50286ECC570CBB5D_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, Il2CppFullySharedGenericAny ___11_arg11, Il2CppFullySharedGenericAny ___12_arg12, Il2CppFullySharedGenericAny ___13_arg13, Il2CppFullySharedGenericAny ___14_arg14, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tB68E1E2BD7371881393D853C5381933F9B44571B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tDB4357372B440EC975701EDBA4333CA3A2087F09 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_tF90395C937ECAD626945867F66DFC8E6173DC521 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_tE6B3101493359BEC1D842271CE8507FAA1AF01BF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_tF251CAC1E2085A65AF30F876CAA347F83769920C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t68D454FCC9E9736B06F4CA7A674A077368548FAF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_tF089E1C7FC4DAB9BB31321BEC148E17A66754595 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_tF1BF94F3A7E242C3E0875B5434305C109B52A720 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_tC8B832E9B6C95B02CF9A4FFF1B9F49486603B643 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_tED52343933F9B91151DF836D41CF76E75CA415A4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T11_t261F9E8364CD993FEC6160E5DDAFBD0CBF3E41D1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T12_tAE813B0D5F53C5FB38B3D1941A0F1A72F3EF9C60 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T13_tD307CA3D88054E6C6BC7EC526D2643BF1BADA57B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T14_t754244CA94B302EDEA6348829155D47B307155CA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_tB68E1E2BD7371881393D853C5381933F9B44571B);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_tDB4357372B440EC975701EDBA4333CA3A2087F09);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_tF90395C937ECAD626945867F66DFC8E6173DC521);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_tE6B3101493359BEC1D842271CE8507FAA1AF01BF);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_tF251CAC1E2085A65AF30F876CAA347F83769920C);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t68D454FCC9E9736B06F4CA7A674A077368548FAF);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_tF089E1C7FC4DAB9BB31321BEC148E17A66754595);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_tF1BF94F3A7E242C3E0875B5434305C109B52A720);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_tC8B832E9B6C95B02CF9A4FFF1B9F49486603B643);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_tED52343933F9B91151DF836D41CF76E75CA415A4);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_T11_t261F9E8364CD993FEC6160E5DDAFBD0CBF3E41D1);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_T12_tAE813B0D5F53C5FB38B3D1941A0F1A72F3EF9C60);
|
|
const Il2CppFullySharedGenericAny L_13 = alloca(SizeOf_T13_tD307CA3D88054E6C6BC7EC526D2643BF1BADA57B);
|
|
const Il2CppFullySharedGenericAny L_14 = alloca(SizeOf_T14_t754244CA94B302EDEA6348829155D47B307155CA);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0039:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_tB68E1E2BD7371881393D853C5381933F9B44571B);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_tDB4357372B440EC975701EDBA4333CA3A2087F09);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_tF90395C937ECAD626945867F66DFC8E6173DC521);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_tE6B3101493359BEC1D842271CE8507FAA1AF01BF);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_tF251CAC1E2085A65AF30F876CAA347F83769920C);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t68D454FCC9E9736B06F4CA7A674A077368548FAF);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_tF089E1C7FC4DAB9BB31321BEC148E17A66754595);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_tF1BF94F3A7E242C3E0875B5434305C109B52A720);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_tC8B832E9B6C95B02CF9A4FFF1B9F49486603B643);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_tED52343933F9B91151DF836D41CF76E75CA415A4);
|
|
il2cpp_codegen_memcpy(L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___11_arg11 : &___11_arg11), SizeOf_T11_t261F9E8364CD993FEC6160E5DDAFBD0CBF3E41D1);
|
|
il2cpp_codegen_memcpy(L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? ___12_arg12 : &___12_arg12), SizeOf_T12_tAE813B0D5F53C5FB38B3D1941A0F1A72F3EF9C60);
|
|
il2cpp_codegen_memcpy(L_13, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___13_arg13 : &___13_arg13), SizeOf_T13_tD307CA3D88054E6C6BC7EC526D2643BF1BADA57B);
|
|
il2cpp_codegen_memcpy(L_14, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___14_arg14 : &___14_arg14), SizeOf_T14_t754244CA94B302EDEA6348829155D47B307155CA);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker15< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 14)), il2cpp_rgctx_method(method->rgctx_data, 14), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_11: *(void**)L_11), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? L_12: *(void**)L_12), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_13: *(void**)L_13), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? L_14: *(void**)L_14));
|
|
String_t* L_15;
|
|
L_15 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_15;
|
|
goto IL_0041;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
String_t* L_16 = V_1;
|
|
return L_16;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mCCC68F13C949898829E4C2A102068D84C55EDFBC_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, Il2CppFullySharedGenericAny ___11_arg11, Il2CppFullySharedGenericAny ___12_arg12, Il2CppFullySharedGenericAny ___13_arg13, Il2CppFullySharedGenericAny ___14_arg14, Il2CppFullySharedGenericAny ___15_arg15, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t3EA3AB162C016EA758A5352A6CE89A30E670C9AF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t8A4F208C0FC0E157137A01BFA78BE6CCD7215873 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t46AFD6F297DFA30575E48981EDAA23F4AE16D49E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_tAA755604367994C426590A6BBFF897B617276F41 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_tDDF13F6B56B5DBD78EE8F02FAE34787BF3C95D14 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_tFD5C72FE0C72B2560EB52A29B2943F03EB06748E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_t4A14F29C8769C77D515E14EF0E46EF5366936086 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_t2C0B31D7DF54688944367BB28391B5937FD9BD0C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_t59D1AA860F6D5932E74AAC3533F90C0B4075E607 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_t9B3DFAB4E8DEFEA993D67BDF84D7D1573E258CFC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T11_t1D896844737DF0B69128AE179F5BF8DC4A58CD90 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T12_tD034CDA5CE790C8C46AF7FF2E25FC8E4EF7DBB2E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T13_t8EBAF4AC07B42AECA8D004556A9465CC3FFE1CB2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T14_t83260C450A1FC73415C11CD515DAF5FAB15535C3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const uint32_t SizeOf_T15_t178694B2B8B669430BFF48DC71A0726D3AD9EEBD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t3EA3AB162C016EA758A5352A6CE89A30E670C9AF);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t8A4F208C0FC0E157137A01BFA78BE6CCD7215873);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t46AFD6F297DFA30575E48981EDAA23F4AE16D49E);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_tAA755604367994C426590A6BBFF897B617276F41);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_tDDF13F6B56B5DBD78EE8F02FAE34787BF3C95D14);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_tFD5C72FE0C72B2560EB52A29B2943F03EB06748E);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_t4A14F29C8769C77D515E14EF0E46EF5366936086);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_t2C0B31D7DF54688944367BB28391B5937FD9BD0C);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_t59D1AA860F6D5932E74AAC3533F90C0B4075E607);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_t9B3DFAB4E8DEFEA993D67BDF84D7D1573E258CFC);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_T11_t1D896844737DF0B69128AE179F5BF8DC4A58CD90);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_T12_tD034CDA5CE790C8C46AF7FF2E25FC8E4EF7DBB2E);
|
|
const Il2CppFullySharedGenericAny L_13 = alloca(SizeOf_T13_t8EBAF4AC07B42AECA8D004556A9465CC3FFE1CB2);
|
|
const Il2CppFullySharedGenericAny L_14 = alloca(SizeOf_T14_t83260C450A1FC73415C11CD515DAF5FAB15535C3);
|
|
const Il2CppFullySharedGenericAny L_15 = alloca(SizeOf_T15_t178694B2B8B669430BFF48DC71A0726D3AD9EEBD);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t3EA3AB162C016EA758A5352A6CE89A30E670C9AF);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t8A4F208C0FC0E157137A01BFA78BE6CCD7215873);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t46AFD6F297DFA30575E48981EDAA23F4AE16D49E);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_tAA755604367994C426590A6BBFF897B617276F41);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_tDDF13F6B56B5DBD78EE8F02FAE34787BF3C95D14);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_tFD5C72FE0C72B2560EB52A29B2943F03EB06748E);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_t4A14F29C8769C77D515E14EF0E46EF5366936086);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_t2C0B31D7DF54688944367BB28391B5937FD9BD0C);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_t59D1AA860F6D5932E74AAC3533F90C0B4075E607);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_t9B3DFAB4E8DEFEA993D67BDF84D7D1573E258CFC);
|
|
il2cpp_codegen_memcpy(L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___11_arg11 : &___11_arg11), SizeOf_T11_t1D896844737DF0B69128AE179F5BF8DC4A58CD90);
|
|
il2cpp_codegen_memcpy(L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? ___12_arg12 : &___12_arg12), SizeOf_T12_tD034CDA5CE790C8C46AF7FF2E25FC8E4EF7DBB2E);
|
|
il2cpp_codegen_memcpy(L_13, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___13_arg13 : &___13_arg13), SizeOf_T13_t8EBAF4AC07B42AECA8D004556A9465CC3FFE1CB2);
|
|
il2cpp_codegen_memcpy(L_14, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___14_arg14 : &___14_arg14), SizeOf_T14_t83260C450A1FC73415C11CD515DAF5FAB15535C3);
|
|
il2cpp_codegen_memcpy(L_15, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? ___15_arg15 : &___15_arg15), SizeOf_T15_t178694B2B8B669430BFF48DC71A0726D3AD9EEBD);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker16< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_11: *(void**)L_11), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? L_12: *(void**)L_12), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_13: *(void**)L_13), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? L_14: *(void**)L_14), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_15: *(void**)L_15));
|
|
String_t* L_16;
|
|
L_16 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_16;
|
|
goto IL_0043;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
String_t* L_17 = V_1;
|
|
return L_17;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mBB2F21CFA79BC763000963BA82C1149A57B1BE3B_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, Il2CppFullySharedGenericAny ___11_arg11, Il2CppFullySharedGenericAny ___12_arg12, Il2CppFullySharedGenericAny ___13_arg13, Il2CppFullySharedGenericAny ___14_arg14, Il2CppFullySharedGenericAny ___15_arg15, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t973C700CAD9B4AF32DDDEC198B63372FF4116669 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tD03CBA1B15DF58B5F80EA6F0932B1A25BBE235C7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t575378F8AA31391D6291DC9728F09082B8F05D6D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_tB15094E5C765C5E262B1E329FD0300219C4DF0F5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_tE5D41C832711B1618F4C68B5947ABBE89372E60D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t0643A9EEFB0EC845D2062B577C7614D03C56EFF3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_tA6A9F4A3BC714C7F747C7100644248216F53BFE4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_t95B3845F877E6DB1A1CB9CC872D7173531D2A518 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_t5F797F270440334E81B8F15539D8B137D5D8B5AB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_tE4098021B6A41E0C04C37F0EB0C471BB1A0A1B9A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T11_t80D2F26D5B68F03F861ED2FB21891270779EE423 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T12_t4D79784CD5FEC29DFA26D71EEB1E914D9090DDC6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T13_t3F63E40998308E5DC8E4BBE22931AB65B213A4F8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T14_tFE283E8D10570827CC728AA099209610FA8BD5FA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const uint32_t SizeOf_T15_t0AB37561C6FA0C00C278D0809A1A7890C77F785C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t973C700CAD9B4AF32DDDEC198B63372FF4116669);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_tD03CBA1B15DF58B5F80EA6F0932B1A25BBE235C7);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t575378F8AA31391D6291DC9728F09082B8F05D6D);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_tB15094E5C765C5E262B1E329FD0300219C4DF0F5);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_tE5D41C832711B1618F4C68B5947ABBE89372E60D);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t0643A9EEFB0EC845D2062B577C7614D03C56EFF3);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_tA6A9F4A3BC714C7F747C7100644248216F53BFE4);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_t95B3845F877E6DB1A1CB9CC872D7173531D2A518);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_t5F797F270440334E81B8F15539D8B137D5D8B5AB);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_tE4098021B6A41E0C04C37F0EB0C471BB1A0A1B9A);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_T11_t80D2F26D5B68F03F861ED2FB21891270779EE423);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_T12_t4D79784CD5FEC29DFA26D71EEB1E914D9090DDC6);
|
|
const Il2CppFullySharedGenericAny L_13 = alloca(SizeOf_T13_t3F63E40998308E5DC8E4BBE22931AB65B213A4F8);
|
|
const Il2CppFullySharedGenericAny L_14 = alloca(SizeOf_T14_tFE283E8D10570827CC728AA099209610FA8BD5FA);
|
|
const Il2CppFullySharedGenericAny L_15 = alloca(SizeOf_T15_t0AB37561C6FA0C00C278D0809A1A7890C77F785C);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003b:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t973C700CAD9B4AF32DDDEC198B63372FF4116669);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_tD03CBA1B15DF58B5F80EA6F0932B1A25BBE235C7);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t575378F8AA31391D6291DC9728F09082B8F05D6D);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_tB15094E5C765C5E262B1E329FD0300219C4DF0F5);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_tE5D41C832711B1618F4C68B5947ABBE89372E60D);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t0643A9EEFB0EC845D2062B577C7614D03C56EFF3);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_tA6A9F4A3BC714C7F747C7100644248216F53BFE4);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_t95B3845F877E6DB1A1CB9CC872D7173531D2A518);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_t5F797F270440334E81B8F15539D8B137D5D8B5AB);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_tE4098021B6A41E0C04C37F0EB0C471BB1A0A1B9A);
|
|
il2cpp_codegen_memcpy(L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___11_arg11 : &___11_arg11), SizeOf_T11_t80D2F26D5B68F03F861ED2FB21891270779EE423);
|
|
il2cpp_codegen_memcpy(L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? ___12_arg12 : &___12_arg12), SizeOf_T12_t4D79784CD5FEC29DFA26D71EEB1E914D9090DDC6);
|
|
il2cpp_codegen_memcpy(L_13, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___13_arg13 : &___13_arg13), SizeOf_T13_t3F63E40998308E5DC8E4BBE22931AB65B213A4F8);
|
|
il2cpp_codegen_memcpy(L_14, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___14_arg14 : &___14_arg14), SizeOf_T14_tFE283E8D10570827CC728AA099209610FA8BD5FA);
|
|
il2cpp_codegen_memcpy(L_15, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? ___15_arg15 : &___15_arg15), SizeOf_T15_t0AB37561C6FA0C00C278D0809A1A7890C77F785C);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker16< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_11: *(void**)L_11), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? L_12: *(void**)L_12), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_13: *(void**)L_13), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? L_14: *(void**)L_14), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_15: *(void**)L_15));
|
|
String_t* L_16;
|
|
L_16 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_16;
|
|
goto IL_0043;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
String_t* L_17 = V_1;
|
|
return L_17;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m900F84201DA279FDA20270D2881676243DFFC5B8_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, Il2CppFullySharedGenericAny ___11_arg11, Il2CppFullySharedGenericAny ___12_arg12, Il2CppFullySharedGenericAny ___13_arg13, Il2CppFullySharedGenericAny ___14_arg14, Il2CppFullySharedGenericAny ___15_arg15, Il2CppFullySharedGenericAny ___16_arg16, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tCCA9D313C8B4D62178E8C6DDEB2666EEF6BDD692 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tF3D5BA8F820DDA89C0B5C777C328F93B2B228AD0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t5CF59B2CE352778D3E8D046BE2AE69BAFAE79EFC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_tA8F0D8F1DC3BCC23922AFDBCF19DF8AED6A52694 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_tEA06F25CC470222F3F947C8040831C2BD5A7782E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t90121F29BA7DA8CA023CFC1643125E261BEF481F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_t277ABE6EF72FB863C7C70B73F02CE12A181F28D1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_tCA5A6F3BF130DDE97922A0C080C9CFCDA2EDE5FF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_tA330AEED6B264234BE88330284B925FAD76AD393 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_t6A6377384F6166D0B5CBA4BB77067EF48961F4CF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T11_t3FF2C61CE89DD9B984E5BE3F0C419C93ABF0AF69 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T12_tD3C75CAA29621585468DED987011069373CC43F6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T13_t4EEB4CD2F0474A85551BBE88CD68D127B3B28209 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T14_tB2C34B427E5C8181C098763D5DD7DBB9CD2E5EB7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const uint32_t SizeOf_T15_t181789268D4EEB857E17BE4F56117DCC3A166686 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T16_t83D29590F00695F0FFBF8C4FA54FB207923DC1A6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 15));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_tCCA9D313C8B4D62178E8C6DDEB2666EEF6BDD692);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_tF3D5BA8F820DDA89C0B5C777C328F93B2B228AD0);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t5CF59B2CE352778D3E8D046BE2AE69BAFAE79EFC);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_tA8F0D8F1DC3BCC23922AFDBCF19DF8AED6A52694);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_tEA06F25CC470222F3F947C8040831C2BD5A7782E);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t90121F29BA7DA8CA023CFC1643125E261BEF481F);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_t277ABE6EF72FB863C7C70B73F02CE12A181F28D1);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_tCA5A6F3BF130DDE97922A0C080C9CFCDA2EDE5FF);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_tA330AEED6B264234BE88330284B925FAD76AD393);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_t6A6377384F6166D0B5CBA4BB77067EF48961F4CF);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_T11_t3FF2C61CE89DD9B984E5BE3F0C419C93ABF0AF69);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_T12_tD3C75CAA29621585468DED987011069373CC43F6);
|
|
const Il2CppFullySharedGenericAny L_13 = alloca(SizeOf_T13_t4EEB4CD2F0474A85551BBE88CD68D127B3B28209);
|
|
const Il2CppFullySharedGenericAny L_14 = alloca(SizeOf_T14_tB2C34B427E5C8181C098763D5DD7DBB9CD2E5EB7);
|
|
const Il2CppFullySharedGenericAny L_15 = alloca(SizeOf_T15_t181789268D4EEB857E17BE4F56117DCC3A166686);
|
|
const Il2CppFullySharedGenericAny L_16 = alloca(SizeOf_T16_t83D29590F00695F0FFBF8C4FA54FB207923DC1A6);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003d:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_tCCA9D313C8B4D62178E8C6DDEB2666EEF6BDD692);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_tF3D5BA8F820DDA89C0B5C777C328F93B2B228AD0);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t5CF59B2CE352778D3E8D046BE2AE69BAFAE79EFC);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_tA8F0D8F1DC3BCC23922AFDBCF19DF8AED6A52694);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_tEA06F25CC470222F3F947C8040831C2BD5A7782E);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t90121F29BA7DA8CA023CFC1643125E261BEF481F);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_t277ABE6EF72FB863C7C70B73F02CE12A181F28D1);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_tCA5A6F3BF130DDE97922A0C080C9CFCDA2EDE5FF);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_tA330AEED6B264234BE88330284B925FAD76AD393);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_t6A6377384F6166D0B5CBA4BB77067EF48961F4CF);
|
|
il2cpp_codegen_memcpy(L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___11_arg11 : &___11_arg11), SizeOf_T11_t3FF2C61CE89DD9B984E5BE3F0C419C93ABF0AF69);
|
|
il2cpp_codegen_memcpy(L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? ___12_arg12 : &___12_arg12), SizeOf_T12_tD3C75CAA29621585468DED987011069373CC43F6);
|
|
il2cpp_codegen_memcpy(L_13, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___13_arg13 : &___13_arg13), SizeOf_T13_t4EEB4CD2F0474A85551BBE88CD68D127B3B28209);
|
|
il2cpp_codegen_memcpy(L_14, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___14_arg14 : &___14_arg14), SizeOf_T14_tB2C34B427E5C8181C098763D5DD7DBB9CD2E5EB7);
|
|
il2cpp_codegen_memcpy(L_15, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? ___15_arg15 : &___15_arg15), SizeOf_T15_t181789268D4EEB857E17BE4F56117DCC3A166686);
|
|
il2cpp_codegen_memcpy(L_16, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 15)) ? ___16_arg16 : &___16_arg16), SizeOf_T16_t83D29590F00695F0FFBF8C4FA54FB207923DC1A6);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker17< ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 16)), il2cpp_rgctx_method(method->rgctx_data, 16), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_11: *(void**)L_11), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? L_12: *(void**)L_12), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_13: *(void**)L_13), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? L_14: *(void**)L_14), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_15: *(void**)L_15), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 15)) ? L_16: *(void**)L_16));
|
|
String_t* L_17;
|
|
L_17 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_17;
|
|
goto IL_0045;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
String_t* L_18 = V_1;
|
|
return L_18;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m3BA77A6177E08914D68BED90DBAB58526F5EBA59_gshared (String_t* ___0_format, Il2CppFullySharedGenericAny ___1_arg1, Il2CppFullySharedGenericAny ___2_arg2, Il2CppFullySharedGenericAny ___3_arg3, Il2CppFullySharedGenericAny ___4_arg4, Il2CppFullySharedGenericAny ___5_arg5, Il2CppFullySharedGenericAny ___6_arg6, Il2CppFullySharedGenericAny ___7_arg7, Il2CppFullySharedGenericAny ___8_arg8, Il2CppFullySharedGenericAny ___9_arg9, Il2CppFullySharedGenericAny ___10_arg10, Il2CppFullySharedGenericAny ___11_arg11, Il2CppFullySharedGenericAny ___12_arg12, Il2CppFullySharedGenericAny ___13_arg13, Il2CppFullySharedGenericAny ___14_arg14, Il2CppFullySharedGenericAny ___15_arg15, Il2CppFullySharedGenericAny ___16_arg16, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t63F7FCACB3425E9C37409D64C5F89F9D62EF5113 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t226816F69009A7E52736B15A1CF1572554251674 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 1));
|
|
const uint32_t SizeOf_T3_t2991B61285BB952D5FDE569A455FA8E3F3CD4320 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T4_tA53BD4634EB6D42ACCBEA8A0DBF22B89C04E0FD9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 3));
|
|
const uint32_t SizeOf_T5_tFE39227A5D9C58C68E75E12CE4EBAEA689D91143 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T6_t142D61480D3A7F3AB22D2B5397188E9493F73B01 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 5));
|
|
const uint32_t SizeOf_T7_t29E65879A84346023A509DDF8EF44D6DA96F1111 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T8_tC354ACAD9A323556F4DAF6D8953408AAD2E6B1B2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 7));
|
|
const uint32_t SizeOf_T9_t49891B2A7CB3A8EBCEF5F967B74AEA25E18D9DD4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T10_t511BDD1FB694F4422BD289BDFF7435006D1221A9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 9));
|
|
const uint32_t SizeOf_T11_tB633290DEE7169CFBEE5544E40485B470EB71E3D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T12_tCA954589742F12F2DC0F8744E7243D91D931A62A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 11));
|
|
const uint32_t SizeOf_T13_tE31EE2B1492044364A9660EC951DA89C40124E0D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T14_tC84D038A632FFB44994F7323FD36C45A3808D3F1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 13));
|
|
const uint32_t SizeOf_T15_tB5030E875B203970B695AA8CFFF07A7FC1FC3CC1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T16_t059984F01F1657107869560242EE4F251D111F8C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 15));
|
|
const Il2CppFullySharedGenericAny L_1 = alloca(SizeOf_T1_t63F7FCACB3425E9C37409D64C5F89F9D62EF5113);
|
|
const Il2CppFullySharedGenericAny L_2 = alloca(SizeOf_T2_t226816F69009A7E52736B15A1CF1572554251674);
|
|
const Il2CppFullySharedGenericAny L_3 = alloca(SizeOf_T3_t2991B61285BB952D5FDE569A455FA8E3F3CD4320);
|
|
const Il2CppFullySharedGenericAny L_4 = alloca(SizeOf_T4_tA53BD4634EB6D42ACCBEA8A0DBF22B89C04E0FD9);
|
|
const Il2CppFullySharedGenericAny L_5 = alloca(SizeOf_T5_tFE39227A5D9C58C68E75E12CE4EBAEA689D91143);
|
|
const Il2CppFullySharedGenericAny L_6 = alloca(SizeOf_T6_t142D61480D3A7F3AB22D2B5397188E9493F73B01);
|
|
const Il2CppFullySharedGenericAny L_7 = alloca(SizeOf_T7_t29E65879A84346023A509DDF8EF44D6DA96F1111);
|
|
const Il2CppFullySharedGenericAny L_8 = alloca(SizeOf_T8_tC354ACAD9A323556F4DAF6D8953408AAD2E6B1B2);
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T9_t49891B2A7CB3A8EBCEF5F967B74AEA25E18D9DD4);
|
|
const Il2CppFullySharedGenericAny L_10 = alloca(SizeOf_T10_t511BDD1FB694F4422BD289BDFF7435006D1221A9);
|
|
const Il2CppFullySharedGenericAny L_11 = alloca(SizeOf_T11_tB633290DEE7169CFBEE5544E40485B470EB71E3D);
|
|
const Il2CppFullySharedGenericAny L_12 = alloca(SizeOf_T12_tCA954589742F12F2DC0F8744E7243D91D931A62A);
|
|
const Il2CppFullySharedGenericAny L_13 = alloca(SizeOf_T13_tE31EE2B1492044364A9660EC951DA89C40124E0D);
|
|
const Il2CppFullySharedGenericAny L_14 = alloca(SizeOf_T14_tC84D038A632FFB44994F7323FD36C45A3808D3F1);
|
|
const Il2CppFullySharedGenericAny L_15 = alloca(SizeOf_T15_tB5030E875B203970B695AA8CFFF07A7FC1FC3CC1);
|
|
const Il2CppFullySharedGenericAny L_16 = alloca(SizeOf_T16_t059984F01F1657107869560242EE4F251D111F8C);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003d:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
il2cpp_codegen_memcpy(L_1, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___1_arg1 : &___1_arg1), SizeOf_T1_t63F7FCACB3425E9C37409D64C5F89F9D62EF5113);
|
|
il2cpp_codegen_memcpy(L_2, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? ___2_arg2 : &___2_arg2), SizeOf_T2_t226816F69009A7E52736B15A1CF1572554251674);
|
|
il2cpp_codegen_memcpy(L_3, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg3 : &___3_arg3), SizeOf_T3_t2991B61285BB952D5FDE569A455FA8E3F3CD4320);
|
|
il2cpp_codegen_memcpy(L_4, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? ___4_arg4 : &___4_arg4), SizeOf_T4_tA53BD4634EB6D42ACCBEA8A0DBF22B89C04E0FD9);
|
|
il2cpp_codegen_memcpy(L_5, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___5_arg5 : &___5_arg5), SizeOf_T5_tFE39227A5D9C58C68E75E12CE4EBAEA689D91143);
|
|
il2cpp_codegen_memcpy(L_6, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? ___6_arg6 : &___6_arg6), SizeOf_T6_t142D61480D3A7F3AB22D2B5397188E9493F73B01);
|
|
il2cpp_codegen_memcpy(L_7, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___7_arg7 : &___7_arg7), SizeOf_T7_t29E65879A84346023A509DDF8EF44D6DA96F1111);
|
|
il2cpp_codegen_memcpy(L_8, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? ___8_arg8 : &___8_arg8), SizeOf_T8_tC354ACAD9A323556F4DAF6D8953408AAD2E6B1B2);
|
|
il2cpp_codegen_memcpy(L_9, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___9_arg9 : &___9_arg9), SizeOf_T9_t49891B2A7CB3A8EBCEF5F967B74AEA25E18D9DD4);
|
|
il2cpp_codegen_memcpy(L_10, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? ___10_arg10 : &___10_arg10), SizeOf_T10_t511BDD1FB694F4422BD289BDFF7435006D1221A9);
|
|
il2cpp_codegen_memcpy(L_11, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___11_arg11 : &___11_arg11), SizeOf_T11_tB633290DEE7169CFBEE5544E40485B470EB71E3D);
|
|
il2cpp_codegen_memcpy(L_12, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? ___12_arg12 : &___12_arg12), SizeOf_T12_tCA954589742F12F2DC0F8744E7243D91D931A62A);
|
|
il2cpp_codegen_memcpy(L_13, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___13_arg13 : &___13_arg13), SizeOf_T13_tE31EE2B1492044364A9660EC951DA89C40124E0D);
|
|
il2cpp_codegen_memcpy(L_14, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? ___14_arg14 : &___14_arg14), SizeOf_T14_tC84D038A632FFB44994F7323FD36C45A3808D3F1);
|
|
il2cpp_codegen_memcpy(L_15, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? ___15_arg15 : &___15_arg15), SizeOf_T15_tB5030E875B203970B695AA8CFFF07A7FC1FC3CC1);
|
|
il2cpp_codegen_memcpy(L_16, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 15)) ? ___16_arg16 : &___16_arg16), SizeOf_T16_t059984F01F1657107869560242EE4F251D111F8C);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
InvokerActionInvoker17< String_t*, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny, Il2CppFullySharedGenericAny >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 16)), il2cpp_rgctx_method(method->rgctx_data, 16), (&V_0), L_0, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_1: *(void**)L_1), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 1)) ? L_2: *(void**)L_2), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_3: *(void**)L_3), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 3)) ? L_4: *(void**)L_4), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_5: *(void**)L_5), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 5)) ? L_6: *(void**)L_6), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_7: *(void**)L_7), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 7)) ? L_8: *(void**)L_8), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_9: *(void**)L_9), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 9)) ? L_10: *(void**)L_10), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_11: *(void**)L_11), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 11)) ? L_12: *(void**)L_12), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_13: *(void**)L_13), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 13)) ? L_14: *(void**)L_14), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_15: *(void**)L_15), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 15)) ? L_16: *(void**)L_16));
|
|
String_t* L_17;
|
|
L_17 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_17;
|
|
goto IL_0045;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
String_t* L_18 = V_1;
|
|
return L_18;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_m00F562CCDFDAA5BFD9DFEC16EEDA78957C898A1B_gshared (Il2CppChar ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
uintptr_t L_0 = ((uintptr_t)2);
|
|
int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL);
|
|
memset(L_1, 0, L_0);
|
|
int8_t* L_2 = (L_1);
|
|
Il2CppChar L_3 = ___0_separator;
|
|
*((int16_t*)L_2) = (int16_t)L_3;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_4), (void*)L_2, 1, Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
|
|
L_5 = Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4(L_4, Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
RuntimeObject* L_6 = ___1_values;
|
|
RuntimeObject* L_7;
|
|
L_7 = (( RuntimeObject* (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))((RuntimeObject*)L_6, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_8;
|
|
L_8 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_5, L_7, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_mEE5EC51F492D37BD22B2540C75BE945D9046D18D_gshared (Il2CppChar ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
uintptr_t L_0 = ((uintptr_t)2);
|
|
int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL);
|
|
memset(L_1, 0, L_0);
|
|
int8_t* L_2 = (L_1);
|
|
Il2CppChar L_3 = ___0_separator;
|
|
*((int16_t*)L_2) = (int16_t)L_3;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_4), (void*)L_2, 1, Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
|
|
L_5 = Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4(L_4, Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
RuntimeObject* L_6 = ___1_values;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_7;
|
|
L_7 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_5, L_6, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_mA7854C64B11C08BC4A1121A3C8BFAC091F610B75_gshared (Il2CppChar ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
uintptr_t L_0 = ((uintptr_t)2);
|
|
int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL);
|
|
memset(L_1, 0, L_0);
|
|
int8_t* L_2 = (L_1);
|
|
Il2CppChar L_3 = ___0_separator;
|
|
*((int16_t*)L_2) = (int16_t)L_3;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_4), (void*)L_2, 1, Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
|
|
L_5 = Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4(L_4, Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
RuntimeObject* L_6 = ___1_values;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_7;
|
|
L_7 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_5, L_6, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_m004D28FAD9A65D8EEDD9B87848BE454B67AA174D_gshared (Il2CppChar ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
uintptr_t L_0 = ((uintptr_t)2);
|
|
int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL);
|
|
memset(L_1, 0, L_0);
|
|
int8_t* L_2 = (L_1);
|
|
Il2CppChar L_3 = ___0_separator;
|
|
*((int16_t*)L_2) = (int16_t)L_3;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_4), (void*)L_2, 1, Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
|
|
L_5 = Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4(L_4, Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
RuntimeObject* L_6 = ___1_values;
|
|
RuntimeObject* L_7;
|
|
L_7 = (( RuntimeObject* (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))((RuntimeObject*)L_6, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_8;
|
|
L_8 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_5, L_7, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
return L_8;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_m11FB5A84D21D0926BC31C274E280F200B4ABB618_gshared (Il2CppChar ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
uintptr_t L_0 = ((uintptr_t)2);
|
|
int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL);
|
|
memset(L_1, 0, L_0);
|
|
int8_t* L_2 = (L_1);
|
|
Il2CppChar L_3 = ___0_separator;
|
|
*((int16_t*)L_2) = (int16_t)L_3;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_4), (void*)L_2, 1, Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
|
|
L_5 = Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4(L_4, Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
RuntimeObject* L_6 = ___1_values;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_7;
|
|
L_7 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_5, L_6, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_m059B9563E1E46A906F0FB76055921600019BB4E9_gshared (Il2CppChar ___0_separator, List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
uintptr_t L_0 = ((uintptr_t)2);
|
|
int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL);
|
|
memset(L_1, 0, L_0);
|
|
int8_t* L_2 = (L_1);
|
|
Il2CppChar L_3 = ___0_separator;
|
|
*((int16_t*)L_2) = (int16_t)L_3;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_4), (void*)L_2, 1, Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
|
|
L_5 = Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4(L_4, Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* L_6 = ___1_values;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_7;
|
|
L_7 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_5, (RuntimeObject*)L_6, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_m4B42C05377EEA56040350847EDFEFDC90D9AEC86_gshared (Il2CppChar ___0_separator, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
uintptr_t L_0 = ((uintptr_t)2);
|
|
int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL);
|
|
memset(L_1, 0, L_0);
|
|
int8_t* L_2 = (L_1);
|
|
Il2CppChar L_3 = ___0_separator;
|
|
*((int16_t*)L_2) = (int16_t)L_3;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_4), (void*)L_2, 1, Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
|
|
L_5 = Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4(L_4, Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC L_6 = ___1_values;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_7;
|
|
L_7 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_5, L_6, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_7;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_m90F026AFA9D499830F5B2450A7B62C22707D400A_gshared (Il2CppChar ___0_separator, __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
uintptr_t L_0 = ((uintptr_t)2);
|
|
int8_t* L_1 = (int8_t*) (L_0 ? alloca(L_0) : NULL);
|
|
memset(L_1, 0, L_0);
|
|
int8_t* L_2 = (L_1);
|
|
Il2CppChar L_3 = ___0_separator;
|
|
*((int16_t*)L_2) = (int16_t)L_3;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_inline((&L_4), (void*)L_2, 1, Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_RuntimeMethod_var);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_5;
|
|
L_5 = Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4(L_4, Span_1_op_Implicit_m03D0CEDC1BC95844236105D1DE24A702B956BFE4_RuntimeMethod_var);
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_6 = ___1_values;
|
|
Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54 L_7;
|
|
L_7 = (( Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54 (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_6, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC L_8;
|
|
L_8 = (( ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC (*) (Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_7, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_9;
|
|
L_9 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(L_5, L_8, il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_mD8F678A602BA198648AF5A72D19C73F318DA03EC_gshared (String_t* ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_separator;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
|
|
L_1 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_0, NULL);
|
|
RuntimeObject* L_2 = ___1_values;
|
|
RuntimeObject* L_3;
|
|
L_3 = (( RuntimeObject* (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))((RuntimeObject*)L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_4;
|
|
L_4 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_1, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_mACF7AF74D1FE49BFA68461964AB44DEED862DD0B_gshared (String_t* ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_separator;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
|
|
L_1 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_0, NULL);
|
|
RuntimeObject* L_2 = ___1_values;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_3;
|
|
L_3 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_m046021215B3565792C34D9A37E4434050605C139_gshared (String_t* ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_separator;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
|
|
L_1 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_0, NULL);
|
|
RuntimeObject* L_2 = ___1_values;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_3;
|
|
L_3 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_m48FA411515F7019ED892A81F4D4E0DA8664898AD_gshared (String_t* ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_separator;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
|
|
L_1 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_0, NULL);
|
|
RuntimeObject* L_2 = ___1_values;
|
|
RuntimeObject* L_3;
|
|
L_3 = (( RuntimeObject* (*) (RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))((RuntimeObject*)L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_4;
|
|
L_4 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_1, L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_m4682179D57F4ED2DFA4FEED95061432AF2425110_gshared (String_t* ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_separator;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
|
|
L_1 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_0, NULL);
|
|
RuntimeObject* L_2 = ___1_values;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_3;
|
|
L_3 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_m6D53831321884E44C4CBF1A052DE6CDD82FBAEC6_gshared (String_t* ___0_separator, List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_separator;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
|
|
L_1 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_0, NULL);
|
|
List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* L_2 = ___1_values;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_3;
|
|
L_3 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, (RuntimeObject*)L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_mC742A8112657F0848BE986053D750C76D8567925_gshared (String_t* ___0_separator, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_separator;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
|
|
L_1 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_0, NULL);
|
|
ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC L_2 = ___1_values;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_3;
|
|
L_3 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_Join_TisIl2CppFullySharedGenericAny_m770615FFAB07A2C9C9C2810E36EA31FB7DAC4522_gshared (String_t* ___0_separator, __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_separator;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
|
|
L_1 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_0, NULL);
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* L_2 = ___1_values;
|
|
Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54 L_3;
|
|
L_3 = (( Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54 (*) (__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_2, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC L_4;
|
|
L_4 = (( ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC (*) (Span_1_tDEB40BEFA77B5E4BB49B058CD3050EEA4DD36C54, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))(L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_5;
|
|
L_5 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 6)))(L_1, L_4, il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_JoinInternal_TisIl2CppFullySharedGenericAny_m61D783814C2A851B00552253231E54E6B4CA4E8E_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0021:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_0 = ___0_separator;
|
|
RuntimeObject* L_1 = ___1_values;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))((&V_0), L_0, L_1, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
String_t* L_2;
|
|
L_2 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_2;
|
|
goto IL_0029;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
String_t* L_3 = V_1;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_JoinInternal_TisIl2CppFullySharedGenericAny_m3966D2AB7638A8C6ADDD83DAA6F0AE974E96E1AE_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* G_B2_0 = NULL;
|
|
RuntimeObject* G_B1_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___1_values;
|
|
V_0 = ((RuntimeObject*)IsInst((RuntimeObject*)L_0, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
RuntimeObject* L_1 = V_0;
|
|
RuntimeObject* L_2 = L_1;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
goto IL_0017;
|
|
}
|
|
G_B1_0 = L_2;
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___1_values;
|
|
ReadOnlyListAdaptor_1_tBFCA480E6C2E698D93F07ACF26582DF92E020484 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
ReadOnlyListAdaptor_1__ctor_m2D097C7912B71BFF8538B85CB906070396EF38E0_inline((&L_4), L_3, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
ReadOnlyListAdaptor_1_tBFCA480E6C2E698D93F07ACF26582DF92E020484 L_5 = L_4;
|
|
RuntimeObject* L_6 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 2), &L_5);
|
|
G_B2_0 = ((RuntimeObject*)(L_6));
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
V_0 = G_B2_0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_7 = ___0_separator;
|
|
RuntimeObject* L_8 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
String_t* L_9;
|
|
L_9 = (( String_t* (*) (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))(L_7, L_8, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
return L_9;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_JoinInternal_TisIl2CppFullySharedGenericAny_m8BAC3E5E8CDB12E19A88AB1C546DDA7B9FC6BB17_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_separator, RuntimeObject* ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___1_values;
|
|
NullCheck((RuntimeObject*)L_0);
|
|
int32_t L_1;
|
|
L_1 = InterfaceFuncInvoker0< int32_t >::Invoke(0, il2cpp_rgctx_data(method->rgctx_data, 1), (RuntimeObject*)L_0);
|
|
if (L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_defaults.string_class))->___Empty;
|
|
return L_2;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002f:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = ___0_separator;
|
|
RuntimeObject* L_4 = ___1_values;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, RuntimeObject*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)))((&V_0), L_3, L_4, il2cpp_rgctx_method(method->rgctx_data, 3));
|
|
String_t* L_5;
|
|
L_5 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_5;
|
|
goto IL_0037;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
String_t* L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* ZString_JoinInternal_TisIl2CppFullySharedGenericAny_m6E1B615DDED6659112890711DDFCC2655FE3CFC9_gshared (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_separator, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC ___1_values, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T_tC4F6B49FA8C7B18A500B562163E6E7F5F06FE3C1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const Il2CppFullySharedGenericAny L_9 = alloca(SizeOf_T_tC4F6B49FA8C7B18A500B562163E6E7F5F06FE3C1);
|
|
Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = (( int32_t (*) (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))((&___1_values), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if (L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_defaults.string_class))->___Empty;
|
|
return L_1;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_2 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 3)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_3;
|
|
L_3 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_2, NULL);
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_4 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
Type_t* L_5;
|
|
L_5 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_4, NULL);
|
|
bool L_6;
|
|
L_6 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_3, L_5, NULL);
|
|
if (!L_6)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7;
|
|
L_7 = (( int32_t (*) (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))((&___1_values), il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
if ((!(((uint32_t)L_7) == ((uint32_t)1))))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
Il2CppFullySharedGenericAny* L_8;
|
|
L_8 = (( Il2CppFullySharedGenericAny* (*) (ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC*, int32_t, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 4)))((&___1_values), 0, il2cpp_rgctx_method(method->rgctx_data, 4));
|
|
il2cpp_codegen_memcpy(L_9, L_8, SizeOf_T_tC4F6B49FA8C7B18A500B562163E6E7F5F06FE3C1);
|
|
RuntimeObject* L_10 = Box(il2cpp_rgctx_data_no_init(method->rgctx_data, 6), L_9);
|
|
String_t* L_11;
|
|
L_11 = il2cpp_unsafe_as<String_t*>(L_10);
|
|
return L_11;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline((&V_0), (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_006d:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline((&V_0), NULL);
|
|
return;
|
|
}
|
|
});
|
|
try
|
|
{
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_12 = ___0_separator;
|
|
ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC L_13 = ___1_values;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
(( void (*) (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172*, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, ReadOnlySpan_1_tC416A5627E04F69CA2947A2A13F0A1DF096CABAC, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)))((&V_0), L_12, L_13, il2cpp_rgctx_method(method->rgctx_data, 7));
|
|
String_t* L_14;
|
|
L_14 = Utf16ValueStringBuilder_ToString_mD8BDFA7C96C81488D6C165C3AEE5FECED4C5E731((&V_0), NULL);
|
|
V_1 = L_14;
|
|
goto IL_0075;
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0075:
|
|
{
|
|
String_t* L_15 = V_1;
|
|
return L_15;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_1_t60AA6D7289E66C218E9B23A43BFD4CCFCEE335B7* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_mD87A43027D73A22AD14029A6C0E518D669724B08_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_1_t60AA6D7289E66C218E9B23A43BFD4CCFCEE335B7* L_1 = (Utf16PreparedFormat_1_t60AA6D7289E66C218E9B23A43BFD4CCFCEE335B7*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_1_t60AA6D7289E66C218E9B23A43BFD4CCFCEE335B7*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_2_tD3031B67D1A7D86B1928D0D533CB1E1AC3610E43* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m1FE43E7F1305E6849721BB86EAF873C77A014CD6_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_2_tD3031B67D1A7D86B1928D0D533CB1E1AC3610E43* L_1 = (Utf16PreparedFormat_2_tD3031B67D1A7D86B1928D0D533CB1E1AC3610E43*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_2_tD3031B67D1A7D86B1928D0D533CB1E1AC3610E43*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_3_t5BDCB8E7AFE578EA50FEB5CF69D2841F3327915F* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m91763686E79FFDF996C04CADBDB765F5357BFFB4_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_3_t5BDCB8E7AFE578EA50FEB5CF69D2841F3327915F* L_1 = (Utf16PreparedFormat_3_t5BDCB8E7AFE578EA50FEB5CF69D2841F3327915F*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_3_t5BDCB8E7AFE578EA50FEB5CF69D2841F3327915F*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_4_tB767097A6FE1957B0076A9561DC3E3C95246364C* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m76FA35E38171E4BDA852F23EC6FEF0529A8C8F1D_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_4_tB767097A6FE1957B0076A9561DC3E3C95246364C* L_1 = (Utf16PreparedFormat_4_tB767097A6FE1957B0076A9561DC3E3C95246364C*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_4_tB767097A6FE1957B0076A9561DC3E3C95246364C*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_5_t7ADFB7D8098889C9454E18C865CA7F296D478D76* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mFD6F35C19151FD9B06F3F008E9C8B2BFD9D02429_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_5_t7ADFB7D8098889C9454E18C865CA7F296D478D76* L_1 = (Utf16PreparedFormat_5_t7ADFB7D8098889C9454E18C865CA7F296D478D76*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_5_t7ADFB7D8098889C9454E18C865CA7F296D478D76*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_6_t263378D82056B59A487F4274A92C51F1043AB9A2* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mF47AB1281520814FA85FD1B37C3837D6EB8D146D_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_6_t263378D82056B59A487F4274A92C51F1043AB9A2* L_1 = (Utf16PreparedFormat_6_t263378D82056B59A487F4274A92C51F1043AB9A2*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_6_t263378D82056B59A487F4274A92C51F1043AB9A2*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_7_t26B62A71D0F1D40B6685006B65C4F29E1BFE188A* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m443B8C1A91127AD8734E3B22C01BCCDB6A73CEEE_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_7_t26B62A71D0F1D40B6685006B65C4F29E1BFE188A* L_1 = (Utf16PreparedFormat_7_t26B62A71D0F1D40B6685006B65C4F29E1BFE188A*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_7_t26B62A71D0F1D40B6685006B65C4F29E1BFE188A*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_8_tC58368E378D3ABB4659AD20A6CD8572441B167A8* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mD9CDAD3FF5F319F96913892EF2F004852782DAE1_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_8_tC58368E378D3ABB4659AD20A6CD8572441B167A8* L_1 = (Utf16PreparedFormat_8_tC58368E378D3ABB4659AD20A6CD8572441B167A8*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_8_tC58368E378D3ABB4659AD20A6CD8572441B167A8*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_9_t18BCB7778CAD55FD9B8B3863D2BFF52680AAF201* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mB5D921B202A14EFFE313325FDC294F73B4591F9A_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_9_t18BCB7778CAD55FD9B8B3863D2BFF52680AAF201* L_1 = (Utf16PreparedFormat_9_t18BCB7778CAD55FD9B8B3863D2BFF52680AAF201*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_9_t18BCB7778CAD55FD9B8B3863D2BFF52680AAF201*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_10_t0167F0F0D00068E6C0FD6EDD05E17E3F66544297* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m535EC55AED6C79702A9A497313C1480FE4328C7A_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_10_t0167F0F0D00068E6C0FD6EDD05E17E3F66544297* L_1 = (Utf16PreparedFormat_10_t0167F0F0D00068E6C0FD6EDD05E17E3F66544297*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_10_t0167F0F0D00068E6C0FD6EDD05E17E3F66544297*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_11_tA780F218A1C1897F0A4746DD6D1F28A1190F1157* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m6CFBDE4529FF26DCC42B40F62160CCFB89783EA0_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_11_tA780F218A1C1897F0A4746DD6D1F28A1190F1157* L_1 = (Utf16PreparedFormat_11_tA780F218A1C1897F0A4746DD6D1F28A1190F1157*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_11_tA780F218A1C1897F0A4746DD6D1F28A1190F1157*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_12_t55C3E518DE07513FCFCA08082119C8DD7BA93E20* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m0E86020EA51AF3BBFF176CE9A91C76A18890848A_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_12_t55C3E518DE07513FCFCA08082119C8DD7BA93E20* L_1 = (Utf16PreparedFormat_12_t55C3E518DE07513FCFCA08082119C8DD7BA93E20*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_12_t55C3E518DE07513FCFCA08082119C8DD7BA93E20*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_13_tBF8B8A3DDAD7C8427A2E3F9BB8189F7BF6E63951* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m674500FD04F407188409EA9F073640EE1D92CF46_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_13_tBF8B8A3DDAD7C8427A2E3F9BB8189F7BF6E63951* L_1 = (Utf16PreparedFormat_13_tBF8B8A3DDAD7C8427A2E3F9BB8189F7BF6E63951*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_13_tBF8B8A3DDAD7C8427A2E3F9BB8189F7BF6E63951*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_14_t98058A90B8B30BE357F614A9309CABB9AE506AE1* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m5BCF2A3E14195FF544DC705B788FB998A687C539_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_14_t98058A90B8B30BE357F614A9309CABB9AE506AE1* L_1 = (Utf16PreparedFormat_14_t98058A90B8B30BE357F614A9309CABB9AE506AE1*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_14_t98058A90B8B30BE357F614A9309CABB9AE506AE1*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_15_tCEB9EAA2FAD3899307E759DB0C832C2AAA48FA92* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m07D56B6A3AE9E49ACB1AD7FEE33AE05E75BF9A4F_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_15_tCEB9EAA2FAD3899307E759DB0C832C2AAA48FA92* L_1 = (Utf16PreparedFormat_15_tCEB9EAA2FAD3899307E759DB0C832C2AAA48FA92*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_15_tCEB9EAA2FAD3899307E759DB0C832C2AAA48FA92*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf16PreparedFormat_16_t56B4B23B4FCE1DE8AF3A770E93055D7C715955F6* ZString_PrepareUtf16_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m0154C157725EB5A7B03C2A68CB24C0B3A88DCF56_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf16PreparedFormat_16_t56B4B23B4FCE1DE8AF3A770E93055D7C715955F6* L_1 = (Utf16PreparedFormat_16_t56B4B23B4FCE1DE8AF3A770E93055D7C715955F6*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf16PreparedFormat_16_t56B4B23B4FCE1DE8AF3A770E93055D7C715955F6*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_1_tD454008758C50824939B411D176B2F77663E4750* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_mF879E0F2F5AC2FEA97DDFF8626E8BCA02DA0F97A_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_1_tD454008758C50824939B411D176B2F77663E4750* L_1 = (Utf8PreparedFormat_1_tD454008758C50824939B411D176B2F77663E4750*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_1_tD454008758C50824939B411D176B2F77663E4750*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_2_t66606FEDF9EB7A4379FE82947579C3B8481B1C5B* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mDC2B9F8235701DFF41936F03C00CCA0B248C62BA_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_2_t66606FEDF9EB7A4379FE82947579C3B8481B1C5B* L_1 = (Utf8PreparedFormat_2_t66606FEDF9EB7A4379FE82947579C3B8481B1C5B*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_2_t66606FEDF9EB7A4379FE82947579C3B8481B1C5B*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_3_t1E85C2275649E0E6BA33822FEA565C0DAA66EF50* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m33CBCB45CDF82AC74B3BC898C2E583A0EC73D0CB_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_3_t1E85C2275649E0E6BA33822FEA565C0DAA66EF50* L_1 = (Utf8PreparedFormat_3_t1E85C2275649E0E6BA33822FEA565C0DAA66EF50*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_3_t1E85C2275649E0E6BA33822FEA565C0DAA66EF50*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_4_t9DFFC45B890CCA5C68ECAA678384E535793C8C72* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m3875150EEF28B742AFA4CCD5F713E38193CEDD24_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_4_t9DFFC45B890CCA5C68ECAA678384E535793C8C72* L_1 = (Utf8PreparedFormat_4_t9DFFC45B890CCA5C68ECAA678384E535793C8C72*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_4_t9DFFC45B890CCA5C68ECAA678384E535793C8C72*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_5_tC66C66B6D1843DECD21C3BC8CC014601B5A520E6* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m22AF14FB01B56DFCEEC4D5C93940ABEEAB14E912_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_5_tC66C66B6D1843DECD21C3BC8CC014601B5A520E6* L_1 = (Utf8PreparedFormat_5_tC66C66B6D1843DECD21C3BC8CC014601B5A520E6*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_5_tC66C66B6D1843DECD21C3BC8CC014601B5A520E6*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_6_t5C4EB71EFBEE03BA8AB84B26FDE19C6BD8C0B875* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m9D93CBDA651E1EA8E94871A8293674F2C320468A_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_6_t5C4EB71EFBEE03BA8AB84B26FDE19C6BD8C0B875* L_1 = (Utf8PreparedFormat_6_t5C4EB71EFBEE03BA8AB84B26FDE19C6BD8C0B875*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_6_t5C4EB71EFBEE03BA8AB84B26FDE19C6BD8C0B875*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_7_tBDAAD819BAC06FA8BFF62900540740801C9C2BC8* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m4F7EDE3A64EDF1BB39D3E74690F8E84865A37200_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_7_tBDAAD819BAC06FA8BFF62900540740801C9C2BC8* L_1 = (Utf8PreparedFormat_7_tBDAAD819BAC06FA8BFF62900540740801C9C2BC8*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_7_tBDAAD819BAC06FA8BFF62900540740801C9C2BC8*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_8_t16AFCCB68218D3307E3885204A139135B964B9D9* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m1DC4DAE3AEC16F4F5387000FEB071556394BE828_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_8_t16AFCCB68218D3307E3885204A139135B964B9D9* L_1 = (Utf8PreparedFormat_8_t16AFCCB68218D3307E3885204A139135B964B9D9*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_8_t16AFCCB68218D3307E3885204A139135B964B9D9*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_9_t9FCB52A02BA08D2460206E62E222B4A46C752EAF* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mC326395F0B88908DEA17EB49D209C983DD114F02_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_9_t9FCB52A02BA08D2460206E62E222B4A46C752EAF* L_1 = (Utf8PreparedFormat_9_t9FCB52A02BA08D2460206E62E222B4A46C752EAF*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_9_t9FCB52A02BA08D2460206E62E222B4A46C752EAF*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_10_t86A33189BF4F6AFD85748BAC517AD3E361B2E790* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mEB8380F2CCAE4FB8BDC65D5DDB4E7AB29569FCC4_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_10_t86A33189BF4F6AFD85748BAC517AD3E361B2E790* L_1 = (Utf8PreparedFormat_10_t86A33189BF4F6AFD85748BAC517AD3E361B2E790*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_10_t86A33189BF4F6AFD85748BAC517AD3E361B2E790*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_11_t1B23BB9DDB1721B20D72498F472DF327B4BF19B8* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m6AA7B7331880CEDE1C528365DC71342DBF174B75_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_11_t1B23BB9DDB1721B20D72498F472DF327B4BF19B8* L_1 = (Utf8PreparedFormat_11_t1B23BB9DDB1721B20D72498F472DF327B4BF19B8*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_11_t1B23BB9DDB1721B20D72498F472DF327B4BF19B8*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_12_tA10BF642422D6B7276ABDF5D30AE921997507334* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m397453B27FDB0327B790061623D8F9724F924794_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_12_tA10BF642422D6B7276ABDF5D30AE921997507334* L_1 = (Utf8PreparedFormat_12_tA10BF642422D6B7276ABDF5D30AE921997507334*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_12_tA10BF642422D6B7276ABDF5D30AE921997507334*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_13_t36CB94F85EF6948B8DBC74B7E2FBC72066A8D5D0* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mD6CA492E97D4189692796BC2611172B762FC486A_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_13_t36CB94F85EF6948B8DBC74B7E2FBC72066A8D5D0* L_1 = (Utf8PreparedFormat_13_t36CB94F85EF6948B8DBC74B7E2FBC72066A8D5D0*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_13_t36CB94F85EF6948B8DBC74B7E2FBC72066A8D5D0*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_14_tD9AA229E73E57FFFC24D7E6147723C4AD7BFC7F1* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m5508B6EF807B9155F7550AB6713B52CB15826362_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_14_tD9AA229E73E57FFFC24D7E6147723C4AD7BFC7F1* L_1 = (Utf8PreparedFormat_14_tD9AA229E73E57FFFC24D7E6147723C4AD7BFC7F1*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_14_tD9AA229E73E57FFFC24D7E6147723C4AD7BFC7F1*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_15_tE443889EE12CB72C0DB7A24461184B165EA6FBCB* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mED9F1D8AE0C943C9DBD61BF0CC7E502B46AD53DD_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_15_tE443889EE12CB72C0DB7A24461184B165EA6FBCB* L_1 = (Utf8PreparedFormat_15_tE443889EE12CB72C0DB7A24461184B165EA6FBCB*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_15_tE443889EE12CB72C0DB7A24461184B165EA6FBCB*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Utf8PreparedFormat_16_t71F70BCE926D660AB6A8363333DA0B66C71F272E* ZString_PrepareUtf8_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m483E2B28C7E30DF2307110097A2144494A2738CC_gshared (String_t* ___0_format, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
{
|
|
String_t* L_0 = ___0_format;
|
|
Utf8PreparedFormat_16_t71F70BCE926D660AB6A8363333DA0B66C71F272E* L_1 = (Utf8PreparedFormat_16_t71F70BCE926D660AB6A8363333DA0B66C71F272E*)il2cpp_codegen_object_new(il2cpp_rgctx_data(method->rgctx_data, 0));
|
|
(( void (*) (Utf8PreparedFormat_16_t71F70BCE926D660AB6A8363333DA0B66C71F272E*, String_t*, const RuntimeMethod*))il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)))(L_1, L_0, il2cpp_rgctx_method(method->rgctx_data, 1));
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_m49B20C33BB3A5C8D544F085C2A4F1AE3D44EF930_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tC1610A2B19E2437624FBF444E6A5CB5C78F9B480 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const Il2CppFullySharedGenericAny L_62 = alloca(SizeOf_T1_tC1610A2B19E2437624FBF444E6A5CB5C78F9B480);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_12;
|
|
memset((&V_12), 0, sizeof(V_12));
|
|
int32_t V_13 = 0;
|
|
int32_t V_14 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_15;
|
|
memset((&V_15), 0, sizeof(V_15));
|
|
int32_t V_16 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_0184;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_011e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_0180;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
if (L_61)
|
|
{
|
|
goto IL_0112;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_memcpy(L_62, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_tC1610A2B19E2437624FBF444E6A5CB5C78F9B480);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_63 = V_3;
|
|
int32_t L_64 = L_63.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_65 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_62: *(void**)L_62), L_64, L_65, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_0180;
|
|
}
|
|
|
|
IL_0112:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_0180;
|
|
}
|
|
|
|
IL_011e:
|
|
{
|
|
Il2CppChar L_66 = V_2;
|
|
if ((!(((uint32_t)L_66) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0180;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_67 = V_1;
|
|
String_t* L_68 = ___1_format;
|
|
NullCheck(L_68);
|
|
int32_t L_69;
|
|
L_69 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_68, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_67, 1))) >= ((int32_t)L_69)))
|
|
{
|
|
goto IL_017b;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_70 = ___1_format;
|
|
int32_t L_71 = V_1;
|
|
NullCheck(L_70);
|
|
Il2CppChar L_72;
|
|
L_72 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_70, ((int32_t)il2cpp_codegen_add(L_71, 1)), NULL);
|
|
if ((!(((uint32_t)L_72) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_017b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_73 = V_1;
|
|
int32_t L_74 = V_0;
|
|
V_11 = ((int32_t)il2cpp_codegen_subtract(L_73, L_74));
|
|
RuntimeObject* L_75 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_76 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_77 = V_11;
|
|
NullCheck(L_76);
|
|
int32_t L_78;
|
|
L_78 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_76, L_77);
|
|
NullCheck(L_75);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_79;
|
|
L_79 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_75, L_78);
|
|
V_12 = L_79;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_80 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_81 = ___1_format;
|
|
int32_t L_82 = V_0;
|
|
int32_t L_83 = V_11;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_84;
|
|
L_84 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_81, L_82, L_83, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_85 = V_12;
|
|
NullCheck(L_80);
|
|
int32_t L_86;
|
|
L_86 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_80, L_84, L_85);
|
|
V_13 = L_86;
|
|
RuntimeObject* L_87 = ___0_bufferWriter;
|
|
int32_t L_88 = V_13;
|
|
NullCheck(L_87);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_87, L_88);
|
|
int32_t L_89 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_89, 1));
|
|
int32_t L_90 = V_1;
|
|
V_0 = L_90;
|
|
goto IL_0180;
|
|
}
|
|
|
|
IL_017b:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_0180:
|
|
{
|
|
int32_t L_91 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_91, 1));
|
|
}
|
|
|
|
IL_0184:
|
|
{
|
|
int32_t L_92 = V_1;
|
|
String_t* L_93 = ___1_format;
|
|
NullCheck(L_93);
|
|
int32_t L_94;
|
|
L_94 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_93, NULL);
|
|
if ((((int32_t)L_92) < ((int32_t)L_94)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_95 = ___1_format;
|
|
NullCheck(L_95);
|
|
int32_t L_96;
|
|
L_96 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_95, NULL);
|
|
int32_t L_97 = V_0;
|
|
V_14 = ((int32_t)il2cpp_codegen_subtract(L_96, L_97));
|
|
int32_t L_98 = V_14;
|
|
if ((((int32_t)L_98) <= ((int32_t)0)))
|
|
{
|
|
goto IL_01d2;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_99 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_100 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_101 = V_14;
|
|
NullCheck(L_100);
|
|
int32_t L_102;
|
|
L_102 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_100, L_101);
|
|
NullCheck(L_99);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_103;
|
|
L_103 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_99, L_102);
|
|
V_15 = L_103;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_104 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_105 = ___1_format;
|
|
int32_t L_106 = V_0;
|
|
int32_t L_107 = V_14;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_108;
|
|
L_108 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_105, L_106, L_107, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_109 = V_15;
|
|
NullCheck(L_104);
|
|
int32_t L_110;
|
|
L_110 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_104, L_108, L_109);
|
|
V_16 = L_110;
|
|
RuntimeObject* L_111 = ___0_bufferWriter;
|
|
int32_t L_112 = V_16;
|
|
NullCheck(L_111);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_111, L_112);
|
|
}
|
|
|
|
IL_01d2:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m38FBD6B36DCAA180C3E845323017939D1E501447_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t95C0844084267F988EDB375C502C66E66058AC86 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tC8FA4F3541AEE98CF54A9B3D8AE3F8D982910951 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const Il2CppFullySharedGenericAny L_64 = alloca(SizeOf_T1_t95C0844084267F988EDB375C502C66E66058AC86);
|
|
const Il2CppFullySharedGenericAny L_68 = alloca(SizeOf_T2_tC8FA4F3541AEE98CF54A9B3D8AE3F8D982910951);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_01a9;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0143;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_01a5;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
if (!L_62)
|
|
{
|
|
goto IL_0106;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_63 = V_11;
|
|
if ((((int32_t)L_63) == ((int32_t)1)))
|
|
{
|
|
goto IL_0120;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0137;
|
|
}
|
|
|
|
IL_0106:
|
|
{
|
|
il2cpp_codegen_memcpy(L_64, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_t95C0844084267F988EDB375C502C66E66058AC86);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_65 = V_3;
|
|
int32_t L_66 = L_65.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_67 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_64: *(void**)L_64), L_66, L_67, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_01a5;
|
|
}
|
|
|
|
IL_0120:
|
|
{
|
|
il2cpp_codegen_memcpy(L_68, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_tC8FA4F3541AEE98CF54A9B3D8AE3F8D982910951);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_69 = V_3;
|
|
int32_t L_70 = L_69.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_71 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_68: *(void**)L_68), L_70, L_71, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_01a5;
|
|
}
|
|
|
|
IL_0137:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_01a5;
|
|
}
|
|
|
|
IL_0143:
|
|
{
|
|
Il2CppChar L_72 = V_2;
|
|
if ((!(((uint32_t)L_72) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_01a5;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_73 = V_1;
|
|
String_t* L_74 = ___1_format;
|
|
NullCheck(L_74);
|
|
int32_t L_75;
|
|
L_75 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_74, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_73, 1))) >= ((int32_t)L_75)))
|
|
{
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_76 = ___1_format;
|
|
int32_t L_77 = V_1;
|
|
NullCheck(L_76);
|
|
Il2CppChar L_78;
|
|
L_78 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_76, ((int32_t)il2cpp_codegen_add(L_77, 1)), NULL);
|
|
if ((!(((uint32_t)L_78) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_79 = V_1;
|
|
int32_t L_80 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_79, L_80));
|
|
RuntimeObject* L_81 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_82 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_83 = V_12;
|
|
NullCheck(L_82);
|
|
int32_t L_84;
|
|
L_84 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_82, L_83);
|
|
NullCheck(L_81);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_85;
|
|
L_85 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_81, L_84);
|
|
V_13 = L_85;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_86 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_87 = ___1_format;
|
|
int32_t L_88 = V_0;
|
|
int32_t L_89 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_90;
|
|
L_90 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_87, L_88, L_89, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_91 = V_13;
|
|
NullCheck(L_86);
|
|
int32_t L_92;
|
|
L_92 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_86, L_90, L_91);
|
|
V_14 = L_92;
|
|
RuntimeObject* L_93 = ___0_bufferWriter;
|
|
int32_t L_94 = V_14;
|
|
NullCheck(L_93);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_93, L_94);
|
|
int32_t L_95 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_95, 1));
|
|
int32_t L_96 = V_1;
|
|
V_0 = L_96;
|
|
goto IL_01a5;
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_01a5:
|
|
{
|
|
int32_t L_97 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_97, 1));
|
|
}
|
|
|
|
IL_01a9:
|
|
{
|
|
int32_t L_98 = V_1;
|
|
String_t* L_99 = ___1_format;
|
|
NullCheck(L_99);
|
|
int32_t L_100;
|
|
L_100 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_99, NULL);
|
|
if ((((int32_t)L_98) < ((int32_t)L_100)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_101 = ___1_format;
|
|
NullCheck(L_101);
|
|
int32_t L_102;
|
|
L_102 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_101, NULL);
|
|
int32_t L_103 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_102, L_103));
|
|
int32_t L_104 = V_15;
|
|
if ((((int32_t)L_104) <= ((int32_t)0)))
|
|
{
|
|
goto IL_01f7;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_105 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_106 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_107 = V_15;
|
|
NullCheck(L_106);
|
|
int32_t L_108;
|
|
L_108 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_106, L_107);
|
|
NullCheck(L_105);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_109;
|
|
L_109 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_105, L_108);
|
|
V_16 = L_109;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_110 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_111 = ___1_format;
|
|
int32_t L_112 = V_0;
|
|
int32_t L_113 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_114;
|
|
L_114 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_111, L_112, L_113, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_115 = V_16;
|
|
NullCheck(L_110);
|
|
int32_t L_116;
|
|
L_116 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_110, L_114, L_115);
|
|
V_17 = L_116;
|
|
RuntimeObject* L_117 = ___0_bufferWriter;
|
|
int32_t L_118 = V_17;
|
|
NullCheck(L_117);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_117, L_118);
|
|
}
|
|
|
|
IL_01f7:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m4958790926B8A1423445BE0A4AA5F104E616209D_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t229D632F05E2760771EFF819B135410459F8E481 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t751A77861167940F56BA2B31084BDD442452E1C4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_t250704187835E115259AD487BFF475CE46B33031 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_t229D632F05E2760771EFF819B135410459F8E481);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_t751A77861167940F56BA2B31084BDD442452E1C4);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_t250704187835E115259AD487BFF475CE46B33031);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_01ce;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0168;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_01ca;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_012a;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0144;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_015c;
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_t229D632F05E2760771EFF819B135410459F8E481);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_01ca;
|
|
}
|
|
|
|
IL_012a:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_t751A77861167940F56BA2B31084BDD442452E1C4);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_01ca;
|
|
}
|
|
|
|
IL_0144:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_t250704187835E115259AD487BFF475CE46B33031);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_01ca;
|
|
}
|
|
|
|
IL_015c:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_01ca;
|
|
}
|
|
|
|
IL_0168:
|
|
{
|
|
Il2CppChar L_75 = V_2;
|
|
if ((!(((uint32_t)L_75) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_01ca;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_76 = V_1;
|
|
String_t* L_77 = ___1_format;
|
|
NullCheck(L_77);
|
|
int32_t L_78;
|
|
L_78 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_77, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_76, 1))) >= ((int32_t)L_78)))
|
|
{
|
|
goto IL_01c5;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_79 = ___1_format;
|
|
int32_t L_80 = V_1;
|
|
NullCheck(L_79);
|
|
Il2CppChar L_81;
|
|
L_81 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_79, ((int32_t)il2cpp_codegen_add(L_80, 1)), NULL);
|
|
if ((!(((uint32_t)L_81) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_01c5;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_82 = V_1;
|
|
int32_t L_83 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_82, L_83));
|
|
RuntimeObject* L_84 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_85 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_86 = V_12;
|
|
NullCheck(L_85);
|
|
int32_t L_87;
|
|
L_87 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_85, L_86);
|
|
NullCheck(L_84);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_88;
|
|
L_88 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_84, L_87);
|
|
V_13 = L_88;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_89 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_90 = ___1_format;
|
|
int32_t L_91 = V_0;
|
|
int32_t L_92 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_93;
|
|
L_93 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_90, L_91, L_92, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_94 = V_13;
|
|
NullCheck(L_89);
|
|
int32_t L_95;
|
|
L_95 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_89, L_93, L_94);
|
|
V_14 = L_95;
|
|
RuntimeObject* L_96 = ___0_bufferWriter;
|
|
int32_t L_97 = V_14;
|
|
NullCheck(L_96);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_96, L_97);
|
|
int32_t L_98 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_98, 1));
|
|
int32_t L_99 = V_1;
|
|
V_0 = L_99;
|
|
goto IL_01ca;
|
|
}
|
|
|
|
IL_01c5:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_01ca:
|
|
{
|
|
int32_t L_100 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_100, 1));
|
|
}
|
|
|
|
IL_01ce:
|
|
{
|
|
int32_t L_101 = V_1;
|
|
String_t* L_102 = ___1_format;
|
|
NullCheck(L_102);
|
|
int32_t L_103;
|
|
L_103 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_102, NULL);
|
|
if ((((int32_t)L_101) < ((int32_t)L_103)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_104 = ___1_format;
|
|
NullCheck(L_104);
|
|
int32_t L_105;
|
|
L_105 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_104, NULL);
|
|
int32_t L_106 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_105, L_106));
|
|
int32_t L_107 = V_15;
|
|
if ((((int32_t)L_107) <= ((int32_t)0)))
|
|
{
|
|
goto IL_021c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_108 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_109 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_110 = V_15;
|
|
NullCheck(L_109);
|
|
int32_t L_111;
|
|
L_111 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_109, L_110);
|
|
NullCheck(L_108);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_112;
|
|
L_112 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_108, L_111);
|
|
V_16 = L_112;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_113 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_114 = ___1_format;
|
|
int32_t L_115 = V_0;
|
|
int32_t L_116 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_117;
|
|
L_117 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_114, L_115, L_116, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_118 = V_16;
|
|
NullCheck(L_113);
|
|
int32_t L_119;
|
|
L_119 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_113, L_117, L_118);
|
|
V_17 = L_119;
|
|
RuntimeObject* L_120 = ___0_bufferWriter;
|
|
int32_t L_121 = V_17;
|
|
NullCheck(L_120);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_120, L_121);
|
|
}
|
|
|
|
IL_021c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m5D3A238F8F42928810C5FCB342792F63D9F2CCDC_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, Il2CppFullySharedGenericAny ___5_arg4, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tE7D114A06F996B90809206E8A8484CFF5DCB674B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t9E45D0AE5FBE8532170214DBE0900BF6FE01DDBE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_t027E6B1CECF01A2C320ED4AF282AE0FB6F78742A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T4_tEA2D0655C4F80B93C28DE5AAF2305B26D1CE97DC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_tE7D114A06F996B90809206E8A8484CFF5DCB674B);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_t9E45D0AE5FBE8532170214DBE0900BF6FE01DDBE);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_t027E6B1CECF01A2C320ED4AF282AE0FB6F78742A);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T4_tEA2D0655C4F80B93C28DE5AAF2305B26D1CE97DC);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_01ed;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0187;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_01e9;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0114;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_012e;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0148;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0163;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_017b;
|
|
}
|
|
|
|
IL_0114:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_tE7D114A06F996B90809206E8A8484CFF5DCB674B);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_01e9;
|
|
}
|
|
|
|
IL_012e:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_t9E45D0AE5FBE8532170214DBE0900BF6FE01DDBE);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_01e9;
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_t027E6B1CECF01A2C320ED4AF282AE0FB6F78742A);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_01e9;
|
|
}
|
|
|
|
IL_0163:
|
|
{
|
|
il2cpp_codegen_memcpy(L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg4 : &___5_arg4), SizeOf_T4_tEA2D0655C4F80B93C28DE5AAF2305B26D1CE97DC);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_76 = V_3;
|
|
int32_t L_77 = L_76.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_78 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_75: *(void**)L_75), L_77, L_78, _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
goto IL_01e9;
|
|
}
|
|
|
|
IL_017b:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_01e9;
|
|
}
|
|
|
|
IL_0187:
|
|
{
|
|
Il2CppChar L_79 = V_2;
|
|
if ((!(((uint32_t)L_79) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_01e9;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_80 = V_1;
|
|
String_t* L_81 = ___1_format;
|
|
NullCheck(L_81);
|
|
int32_t L_82;
|
|
L_82 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_81, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_80, 1))) >= ((int32_t)L_82)))
|
|
{
|
|
goto IL_01e4;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_83 = ___1_format;
|
|
int32_t L_84 = V_1;
|
|
NullCheck(L_83);
|
|
Il2CppChar L_85;
|
|
L_85 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_83, ((int32_t)il2cpp_codegen_add(L_84, 1)), NULL);
|
|
if ((!(((uint32_t)L_85) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_01e4;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_86 = V_1;
|
|
int32_t L_87 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_86, L_87));
|
|
RuntimeObject* L_88 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_89 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_90 = V_12;
|
|
NullCheck(L_89);
|
|
int32_t L_91;
|
|
L_91 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_89, L_90);
|
|
NullCheck(L_88);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_92;
|
|
L_92 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_88, L_91);
|
|
V_13 = L_92;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_93 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_94 = ___1_format;
|
|
int32_t L_95 = V_0;
|
|
int32_t L_96 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_97;
|
|
L_97 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_94, L_95, L_96, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_98 = V_13;
|
|
NullCheck(L_93);
|
|
int32_t L_99;
|
|
L_99 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_93, L_97, L_98);
|
|
V_14 = L_99;
|
|
RuntimeObject* L_100 = ___0_bufferWriter;
|
|
int32_t L_101 = V_14;
|
|
NullCheck(L_100);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_100, L_101);
|
|
int32_t L_102 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_102, 1));
|
|
int32_t L_103 = V_1;
|
|
V_0 = L_103;
|
|
goto IL_01e9;
|
|
}
|
|
|
|
IL_01e4:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_01e9:
|
|
{
|
|
int32_t L_104 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_104, 1));
|
|
}
|
|
|
|
IL_01ed:
|
|
{
|
|
int32_t L_105 = V_1;
|
|
String_t* L_106 = ___1_format;
|
|
NullCheck(L_106);
|
|
int32_t L_107;
|
|
L_107 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_106, NULL);
|
|
if ((((int32_t)L_105) < ((int32_t)L_107)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_108 = ___1_format;
|
|
NullCheck(L_108);
|
|
int32_t L_109;
|
|
L_109 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_108, NULL);
|
|
int32_t L_110 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_109, L_110));
|
|
int32_t L_111 = V_15;
|
|
if ((((int32_t)L_111) <= ((int32_t)0)))
|
|
{
|
|
goto IL_023b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_112 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_113 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_114 = V_15;
|
|
NullCheck(L_113);
|
|
int32_t L_115;
|
|
L_115 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_113, L_114);
|
|
NullCheck(L_112);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_116;
|
|
L_116 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_112, L_115);
|
|
V_16 = L_116;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_117 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_118 = ___1_format;
|
|
int32_t L_119 = V_0;
|
|
int32_t L_120 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_121;
|
|
L_121 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_118, L_119, L_120, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_122 = V_16;
|
|
NullCheck(L_117);
|
|
int32_t L_123;
|
|
L_123 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_117, L_121, L_122);
|
|
V_17 = L_123;
|
|
RuntimeObject* L_124 = ___0_bufferWriter;
|
|
int32_t L_125 = V_17;
|
|
NullCheck(L_124);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_124, L_125);
|
|
}
|
|
|
|
IL_023b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mCE11A4AA89404CA45CE2115B21F5956388114041_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, Il2CppFullySharedGenericAny ___5_arg4, Il2CppFullySharedGenericAny ___6_arg5, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tB27C6524490FD32651A397F96B415B2BE8E9D4F4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tCDD8F2146428A7B8701125144B37B9CF7D5DC71A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_t002D5579172501F779F67EC96974C17D4A0D7CA8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T4_tCD64A5A099BE81FC4F59BB93353C326531E65558 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T5_tAF9D8EE808F2244C2725CE3AE0EB4491D7CFAB80 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_tB27C6524490FD32651A397F96B415B2BE8E9D4F4);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_tCDD8F2146428A7B8701125144B37B9CF7D5DC71A);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_t002D5579172501F779F67EC96974C17D4A0D7CA8);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T4_tCD64A5A099BE81FC4F59BB93353C326531E65558);
|
|
const Il2CppFullySharedGenericAny L_79 = alloca(SizeOf_T5_tAF9D8EE808F2244C2725CE3AE0EB4491D7CFAB80);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_020f;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_01a9;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_020b;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_011b;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0135;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_014f;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_016a;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0185;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_019d;
|
|
}
|
|
|
|
IL_011b:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_tB27C6524490FD32651A397F96B415B2BE8E9D4F4);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_020b;
|
|
}
|
|
|
|
IL_0135:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_tCDD8F2146428A7B8701125144B37B9CF7D5DC71A);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_020b;
|
|
}
|
|
|
|
IL_014f:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_t002D5579172501F779F67EC96974C17D4A0D7CA8);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_020b;
|
|
}
|
|
|
|
IL_016a:
|
|
{
|
|
il2cpp_codegen_memcpy(L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg4 : &___5_arg4), SizeOf_T4_tCD64A5A099BE81FC4F59BB93353C326531E65558);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_76 = V_3;
|
|
int32_t L_77 = L_76.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_78 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_75: *(void**)L_75), L_77, L_78, _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
goto IL_020b;
|
|
}
|
|
|
|
IL_0185:
|
|
{
|
|
il2cpp_codegen_memcpy(L_79, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___6_arg5 : &___6_arg5), SizeOf_T5_tAF9D8EE808F2244C2725CE3AE0EB4491D7CFAB80);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_80 = V_3;
|
|
int32_t L_81 = L_80.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_82 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_79: *(void**)L_79), L_81, L_82, _stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
goto IL_020b;
|
|
}
|
|
|
|
IL_019d:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_020b;
|
|
}
|
|
|
|
IL_01a9:
|
|
{
|
|
Il2CppChar L_83 = V_2;
|
|
if ((!(((uint32_t)L_83) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_020b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_84 = V_1;
|
|
String_t* L_85 = ___1_format;
|
|
NullCheck(L_85);
|
|
int32_t L_86;
|
|
L_86 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_85, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_84, 1))) >= ((int32_t)L_86)))
|
|
{
|
|
goto IL_0206;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_87 = ___1_format;
|
|
int32_t L_88 = V_1;
|
|
NullCheck(L_87);
|
|
Il2CppChar L_89;
|
|
L_89 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_87, ((int32_t)il2cpp_codegen_add(L_88, 1)), NULL);
|
|
if ((!(((uint32_t)L_89) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0206;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_90 = V_1;
|
|
int32_t L_91 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_90, L_91));
|
|
RuntimeObject* L_92 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_93 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_94 = V_12;
|
|
NullCheck(L_93);
|
|
int32_t L_95;
|
|
L_95 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_93, L_94);
|
|
NullCheck(L_92);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_96;
|
|
L_96 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_92, L_95);
|
|
V_13 = L_96;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_97 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_98 = ___1_format;
|
|
int32_t L_99 = V_0;
|
|
int32_t L_100 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_101;
|
|
L_101 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_98, L_99, L_100, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_102 = V_13;
|
|
NullCheck(L_97);
|
|
int32_t L_103;
|
|
L_103 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_97, L_101, L_102);
|
|
V_14 = L_103;
|
|
RuntimeObject* L_104 = ___0_bufferWriter;
|
|
int32_t L_105 = V_14;
|
|
NullCheck(L_104);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_104, L_105);
|
|
int32_t L_106 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_106, 1));
|
|
int32_t L_107 = V_1;
|
|
V_0 = L_107;
|
|
goto IL_020b;
|
|
}
|
|
|
|
IL_0206:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_020b:
|
|
{
|
|
int32_t L_108 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_108, 1));
|
|
}
|
|
|
|
IL_020f:
|
|
{
|
|
int32_t L_109 = V_1;
|
|
String_t* L_110 = ___1_format;
|
|
NullCheck(L_110);
|
|
int32_t L_111;
|
|
L_111 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_110, NULL);
|
|
if ((((int32_t)L_109) < ((int32_t)L_111)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_112 = ___1_format;
|
|
NullCheck(L_112);
|
|
int32_t L_113;
|
|
L_113 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_112, NULL);
|
|
int32_t L_114 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_113, L_114));
|
|
int32_t L_115 = V_15;
|
|
if ((((int32_t)L_115) <= ((int32_t)0)))
|
|
{
|
|
goto IL_025d;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_116 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_117 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_118 = V_15;
|
|
NullCheck(L_117);
|
|
int32_t L_119;
|
|
L_119 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_117, L_118);
|
|
NullCheck(L_116);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_120;
|
|
L_120 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_116, L_119);
|
|
V_16 = L_120;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_121 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_122 = ___1_format;
|
|
int32_t L_123 = V_0;
|
|
int32_t L_124 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_125;
|
|
L_125 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_122, L_123, L_124, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_126 = V_16;
|
|
NullCheck(L_121);
|
|
int32_t L_127;
|
|
L_127 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_121, L_125, L_126);
|
|
V_17 = L_127;
|
|
RuntimeObject* L_128 = ___0_bufferWriter;
|
|
int32_t L_129 = V_17;
|
|
NullCheck(L_128);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_128, L_129);
|
|
}
|
|
|
|
IL_025d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m3D9F9AB812D919E9C4526066B5A3F706A1E2FB22_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, Il2CppFullySharedGenericAny ___5_arg4, Il2CppFullySharedGenericAny ___6_arg5, Il2CppFullySharedGenericAny ___7_arg6, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tF7916F64628A0E7043A7D93F697268723E323AA5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t925172A9505C13840CFE6CD16E2D3591A001EF16 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_tD69023AF6232E2AE21C480FD268B19416936CA2D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T4_tF5727AD0AB294E59EF26C9B2CD192FA0E47C236F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T5_t15B20B9D62C7B046B8F00B0AE61F1C94B821D582 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T6_t556E34C980615464B12BAD3FA6CF73DFC5AAA2EC = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_tF7916F64628A0E7043A7D93F697268723E323AA5);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_t925172A9505C13840CFE6CD16E2D3591A001EF16);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_tD69023AF6232E2AE21C480FD268B19416936CA2D);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T4_tF5727AD0AB294E59EF26C9B2CD192FA0E47C236F);
|
|
const Il2CppFullySharedGenericAny L_79 = alloca(SizeOf_T5_t15B20B9D62C7B046B8F00B0AE61F1C94B821D582);
|
|
const Il2CppFullySharedGenericAny L_83 = alloca(SizeOf_T6_t556E34C980615464B12BAD3FA6CF73DFC5AAA2EC);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_022e;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_01c8;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_022a;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_011f;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0153;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_016e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0189;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01a4;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
|
|
IL_011f:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_tF7916F64628A0E7043A7D93F697268723E323AA5);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_022a;
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_t925172A9505C13840CFE6CD16E2D3591A001EF16);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_022a;
|
|
}
|
|
|
|
IL_0153:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_tD69023AF6232E2AE21C480FD268B19416936CA2D);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_022a;
|
|
}
|
|
|
|
IL_016e:
|
|
{
|
|
il2cpp_codegen_memcpy(L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg4 : &___5_arg4), SizeOf_T4_tF5727AD0AB294E59EF26C9B2CD192FA0E47C236F);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_76 = V_3;
|
|
int32_t L_77 = L_76.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_78 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_75: *(void**)L_75), L_77, L_78, _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
goto IL_022a;
|
|
}
|
|
|
|
IL_0189:
|
|
{
|
|
il2cpp_codegen_memcpy(L_79, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___6_arg5 : &___6_arg5), SizeOf_T5_t15B20B9D62C7B046B8F00B0AE61F1C94B821D582);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_80 = V_3;
|
|
int32_t L_81 = L_80.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_82 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_79: *(void**)L_79), L_81, L_82, _stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
goto IL_022a;
|
|
}
|
|
|
|
IL_01a4:
|
|
{
|
|
il2cpp_codegen_memcpy(L_83, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___7_arg6 : &___7_arg6), SizeOf_T6_t556E34C980615464B12BAD3FA6CF73DFC5AAA2EC);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_84 = V_3;
|
|
int32_t L_85 = L_84.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_86 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_83: *(void**)L_83), L_85, L_86, _stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
goto IL_022a;
|
|
}
|
|
|
|
IL_01bc:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_022a;
|
|
}
|
|
|
|
IL_01c8:
|
|
{
|
|
Il2CppChar L_87 = V_2;
|
|
if ((!(((uint32_t)L_87) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_022a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_88 = V_1;
|
|
String_t* L_89 = ___1_format;
|
|
NullCheck(L_89);
|
|
int32_t L_90;
|
|
L_90 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_89, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_88, 1))) >= ((int32_t)L_90)))
|
|
{
|
|
goto IL_0225;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_91 = ___1_format;
|
|
int32_t L_92 = V_1;
|
|
NullCheck(L_91);
|
|
Il2CppChar L_93;
|
|
L_93 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_91, ((int32_t)il2cpp_codegen_add(L_92, 1)), NULL);
|
|
if ((!(((uint32_t)L_93) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0225;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_94 = V_1;
|
|
int32_t L_95 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_94, L_95));
|
|
RuntimeObject* L_96 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_97 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_98 = V_12;
|
|
NullCheck(L_97);
|
|
int32_t L_99;
|
|
L_99 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_97, L_98);
|
|
NullCheck(L_96);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_100;
|
|
L_100 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_96, L_99);
|
|
V_13 = L_100;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_101 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_102 = ___1_format;
|
|
int32_t L_103 = V_0;
|
|
int32_t L_104 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_105;
|
|
L_105 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_102, L_103, L_104, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_106 = V_13;
|
|
NullCheck(L_101);
|
|
int32_t L_107;
|
|
L_107 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_101, L_105, L_106);
|
|
V_14 = L_107;
|
|
RuntimeObject* L_108 = ___0_bufferWriter;
|
|
int32_t L_109 = V_14;
|
|
NullCheck(L_108);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_108, L_109);
|
|
int32_t L_110 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_110, 1));
|
|
int32_t L_111 = V_1;
|
|
V_0 = L_111;
|
|
goto IL_022a;
|
|
}
|
|
|
|
IL_0225:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_022a:
|
|
{
|
|
int32_t L_112 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_112, 1));
|
|
}
|
|
|
|
IL_022e:
|
|
{
|
|
int32_t L_113 = V_1;
|
|
String_t* L_114 = ___1_format;
|
|
NullCheck(L_114);
|
|
int32_t L_115;
|
|
L_115 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_114, NULL);
|
|
if ((((int32_t)L_113) < ((int32_t)L_115)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_116 = ___1_format;
|
|
NullCheck(L_116);
|
|
int32_t L_117;
|
|
L_117 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_116, NULL);
|
|
int32_t L_118 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_117, L_118));
|
|
int32_t L_119 = V_15;
|
|
if ((((int32_t)L_119) <= ((int32_t)0)))
|
|
{
|
|
goto IL_027c;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_120 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_121 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_122 = V_15;
|
|
NullCheck(L_121);
|
|
int32_t L_123;
|
|
L_123 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_121, L_122);
|
|
NullCheck(L_120);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_124;
|
|
L_124 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_120, L_123);
|
|
V_16 = L_124;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_125 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_126 = ___1_format;
|
|
int32_t L_127 = V_0;
|
|
int32_t L_128 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_129;
|
|
L_129 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_126, L_127, L_128, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_130 = V_16;
|
|
NullCheck(L_125);
|
|
int32_t L_131;
|
|
L_131 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_125, L_129, L_130);
|
|
V_17 = L_131;
|
|
RuntimeObject* L_132 = ___0_bufferWriter;
|
|
int32_t L_133 = V_17;
|
|
NullCheck(L_132);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_132, L_133);
|
|
}
|
|
|
|
IL_027c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m6ABEA0A8CB3B06CEFA759572DDA5258670FE9D44_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, Il2CppFullySharedGenericAny ___5_arg4, Il2CppFullySharedGenericAny ___6_arg5, Il2CppFullySharedGenericAny ___7_arg6, Il2CppFullySharedGenericAny ___8_arg7, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t9CD43A59AF1B630B51AD05C33265C45297242F43 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t1D048A0D5AF415D433A5FC12FF46D3B94BE4A195 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_tBCB052585D7C6583F149CC57FE268A976C719E0F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T4_t86DED74056611C09871F8E03E596B09854260465 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T5_tE291B2C77FB4154C5839ED43DB429D8E6AFE5DB0 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T6_t4134993412088C9DE02B12612717EE1DA5BC9ED3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T7_t9B2A7996E0DF4D454AE5D951F2258F8E96314110 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_t9CD43A59AF1B630B51AD05C33265C45297242F43);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_t1D048A0D5AF415D433A5FC12FF46D3B94BE4A195);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_tBCB052585D7C6583F149CC57FE268A976C719E0F);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T4_t86DED74056611C09871F8E03E596B09854260465);
|
|
const Il2CppFullySharedGenericAny L_79 = alloca(SizeOf_T5_tE291B2C77FB4154C5839ED43DB429D8E6AFE5DB0);
|
|
const Il2CppFullySharedGenericAny L_83 = alloca(SizeOf_T6_t4134993412088C9DE02B12612717EE1DA5BC9ED3);
|
|
const Il2CppFullySharedGenericAny L_87 = alloca(SizeOf_T7_t9B2A7996E0DF4D454AE5D951F2258F8E96314110);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_024d;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_01e7;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0123;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_013d;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0157;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0172;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_018d;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01a8;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_01c3;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_01db;
|
|
}
|
|
|
|
IL_0123:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_t9CD43A59AF1B630B51AD05C33265C45297242F43);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_013d:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_t1D048A0D5AF415D433A5FC12FF46D3B94BE4A195);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_0157:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_tBCB052585D7C6583F149CC57FE268A976C719E0F);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_0172:
|
|
{
|
|
il2cpp_codegen_memcpy(L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg4 : &___5_arg4), SizeOf_T4_t86DED74056611C09871F8E03E596B09854260465);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_76 = V_3;
|
|
int32_t L_77 = L_76.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_78 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_75: *(void**)L_75), L_77, L_78, _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_018d:
|
|
{
|
|
il2cpp_codegen_memcpy(L_79, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___6_arg5 : &___6_arg5), SizeOf_T5_tE291B2C77FB4154C5839ED43DB429D8E6AFE5DB0);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_80 = V_3;
|
|
int32_t L_81 = L_80.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_82 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_79: *(void**)L_79), L_81, L_82, _stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_01a8:
|
|
{
|
|
il2cpp_codegen_memcpy(L_83, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___7_arg6 : &___7_arg6), SizeOf_T6_t4134993412088C9DE02B12612717EE1DA5BC9ED3);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_84 = V_3;
|
|
int32_t L_85 = L_84.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_86 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_83: *(void**)L_83), L_85, L_86, _stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_01c3:
|
|
{
|
|
il2cpp_codegen_memcpy(L_87, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___8_arg7 : &___8_arg7), SizeOf_T7_t9B2A7996E0DF4D454AE5D951F2258F8E96314110);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_88 = V_3;
|
|
int32_t L_89 = L_88.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_90 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_87: *(void**)L_87), L_89, L_90, _stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_01db:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_01e7:
|
|
{
|
|
Il2CppChar L_91 = V_2;
|
|
if ((!(((uint32_t)L_91) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0249;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_92 = V_1;
|
|
String_t* L_93 = ___1_format;
|
|
NullCheck(L_93);
|
|
int32_t L_94;
|
|
L_94 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_93, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_92, 1))) >= ((int32_t)L_94)))
|
|
{
|
|
goto IL_0244;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_95 = ___1_format;
|
|
int32_t L_96 = V_1;
|
|
NullCheck(L_95);
|
|
Il2CppChar L_97;
|
|
L_97 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_95, ((int32_t)il2cpp_codegen_add(L_96, 1)), NULL);
|
|
if ((!(((uint32_t)L_97) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0244;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_98 = V_1;
|
|
int32_t L_99 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_98, L_99));
|
|
RuntimeObject* L_100 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_101 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_102 = V_12;
|
|
NullCheck(L_101);
|
|
int32_t L_103;
|
|
L_103 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_101, L_102);
|
|
NullCheck(L_100);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_104;
|
|
L_104 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_100, L_103);
|
|
V_13 = L_104;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_105 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_106 = ___1_format;
|
|
int32_t L_107 = V_0;
|
|
int32_t L_108 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_109;
|
|
L_109 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_106, L_107, L_108, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_110 = V_13;
|
|
NullCheck(L_105);
|
|
int32_t L_111;
|
|
L_111 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_105, L_109, L_110);
|
|
V_14 = L_111;
|
|
RuntimeObject* L_112 = ___0_bufferWriter;
|
|
int32_t L_113 = V_14;
|
|
NullCheck(L_112);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_112, L_113);
|
|
int32_t L_114 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_114, 1));
|
|
int32_t L_115 = V_1;
|
|
V_0 = L_115;
|
|
goto IL_0249;
|
|
}
|
|
|
|
IL_0244:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_0249:
|
|
{
|
|
int32_t L_116 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_116, 1));
|
|
}
|
|
|
|
IL_024d:
|
|
{
|
|
int32_t L_117 = V_1;
|
|
String_t* L_118 = ___1_format;
|
|
NullCheck(L_118);
|
|
int32_t L_119;
|
|
L_119 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_118, NULL);
|
|
if ((((int32_t)L_117) < ((int32_t)L_119)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_120 = ___1_format;
|
|
NullCheck(L_120);
|
|
int32_t L_121;
|
|
L_121 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_120, NULL);
|
|
int32_t L_122 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_121, L_122));
|
|
int32_t L_123 = V_15;
|
|
if ((((int32_t)L_123) <= ((int32_t)0)))
|
|
{
|
|
goto IL_029b;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_124 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_125 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_126 = V_15;
|
|
NullCheck(L_125);
|
|
int32_t L_127;
|
|
L_127 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_125, L_126);
|
|
NullCheck(L_124);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_128;
|
|
L_128 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_124, L_127);
|
|
V_16 = L_128;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_129 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_130 = ___1_format;
|
|
int32_t L_131 = V_0;
|
|
int32_t L_132 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_133;
|
|
L_133 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_130, L_131, L_132, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_134 = V_16;
|
|
NullCheck(L_129);
|
|
int32_t L_135;
|
|
L_135 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_129, L_133, L_134);
|
|
V_17 = L_135;
|
|
RuntimeObject* L_136 = ___0_bufferWriter;
|
|
int32_t L_137 = V_17;
|
|
NullCheck(L_136);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_136, L_137);
|
|
}
|
|
|
|
IL_029b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mD768C3E8EE1DB9A07EB8D0BA134A66B705C16F74_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, Il2CppFullySharedGenericAny ___5_arg4, Il2CppFullySharedGenericAny ___6_arg5, Il2CppFullySharedGenericAny ___7_arg6, Il2CppFullySharedGenericAny ___8_arg7, Il2CppFullySharedGenericAny ___9_arg8, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t7CCDED1BD39EFB2E43F705CAF6660A74BA7FA159 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tF7EC934708CB3ECDDADBA93C5AD8681B4A0B8382 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_tE2513C8E251B58AF3CB4C2EFCFD05B80A56C53DA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T4_t0B4696E868E93FD30DDBE8FF801103ED6C7E01C5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T5_t90326B932C09EB900234DF398F976E80164AF16A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T6_tCCB23680E3A16C2E9F86EC5F61754C6511F3DFA4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T7_t55277D7074CA59E1E6A0BEF717F5377F17B512FB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T8_tF9857016251F83AE867DE0706F1E7581123AD190 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_t7CCDED1BD39EFB2E43F705CAF6660A74BA7FA159);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_tF7EC934708CB3ECDDADBA93C5AD8681B4A0B8382);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_tE2513C8E251B58AF3CB4C2EFCFD05B80A56C53DA);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T4_t0B4696E868E93FD30DDBE8FF801103ED6C7E01C5);
|
|
const Il2CppFullySharedGenericAny L_79 = alloca(SizeOf_T5_t90326B932C09EB900234DF398F976E80164AF16A);
|
|
const Il2CppFullySharedGenericAny L_83 = alloca(SizeOf_T6_tCCB23680E3A16C2E9F86EC5F61754C6511F3DFA4);
|
|
const Il2CppFullySharedGenericAny L_87 = alloca(SizeOf_T7_t55277D7074CA59E1E6A0BEF717F5377F17B512FB);
|
|
const Il2CppFullySharedGenericAny L_91 = alloca(SizeOf_T8_tF9857016251F83AE867DE0706F1E7581123AD190);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_026c;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0206;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_0268;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0127;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0141;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0176;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0191;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01ac;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_01c7;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_01e2;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_01fa;
|
|
}
|
|
|
|
IL_0127:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_t7CCDED1BD39EFB2E43F705CAF6660A74BA7FA159);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_0268;
|
|
}
|
|
|
|
IL_0141:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_tF7EC934708CB3ECDDADBA93C5AD8681B4A0B8382);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_0268;
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_tE2513C8E251B58AF3CB4C2EFCFD05B80A56C53DA);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_0268;
|
|
}
|
|
|
|
IL_0176:
|
|
{
|
|
il2cpp_codegen_memcpy(L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg4 : &___5_arg4), SizeOf_T4_t0B4696E868E93FD30DDBE8FF801103ED6C7E01C5);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_76 = V_3;
|
|
int32_t L_77 = L_76.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_78 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_75: *(void**)L_75), L_77, L_78, _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
goto IL_0268;
|
|
}
|
|
|
|
IL_0191:
|
|
{
|
|
il2cpp_codegen_memcpy(L_79, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___6_arg5 : &___6_arg5), SizeOf_T5_t90326B932C09EB900234DF398F976E80164AF16A);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_80 = V_3;
|
|
int32_t L_81 = L_80.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_82 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_79: *(void**)L_79), L_81, L_82, _stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
goto IL_0268;
|
|
}
|
|
|
|
IL_01ac:
|
|
{
|
|
il2cpp_codegen_memcpy(L_83, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___7_arg6 : &___7_arg6), SizeOf_T6_tCCB23680E3A16C2E9F86EC5F61754C6511F3DFA4);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_84 = V_3;
|
|
int32_t L_85 = L_84.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_86 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_83: *(void**)L_83), L_85, L_86, _stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
goto IL_0268;
|
|
}
|
|
|
|
IL_01c7:
|
|
{
|
|
il2cpp_codegen_memcpy(L_87, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___8_arg7 : &___8_arg7), SizeOf_T7_t55277D7074CA59E1E6A0BEF717F5377F17B512FB);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_88 = V_3;
|
|
int32_t L_89 = L_88.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_90 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_87: *(void**)L_87), L_89, L_90, _stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
goto IL_0268;
|
|
}
|
|
|
|
IL_01e2:
|
|
{
|
|
il2cpp_codegen_memcpy(L_91, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? ___9_arg8 : &___9_arg8), SizeOf_T8_tF9857016251F83AE867DE0706F1E7581123AD190);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_92 = V_3;
|
|
int32_t L_93 = L_92.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_94 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_91: *(void**)L_91), L_93, L_94, _stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
goto IL_0268;
|
|
}
|
|
|
|
IL_01fa:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_0268;
|
|
}
|
|
|
|
IL_0206:
|
|
{
|
|
Il2CppChar L_95 = V_2;
|
|
if ((!(((uint32_t)L_95) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0268;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_96 = V_1;
|
|
String_t* L_97 = ___1_format;
|
|
NullCheck(L_97);
|
|
int32_t L_98;
|
|
L_98 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_97, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_96, 1))) >= ((int32_t)L_98)))
|
|
{
|
|
goto IL_0263;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_99 = ___1_format;
|
|
int32_t L_100 = V_1;
|
|
NullCheck(L_99);
|
|
Il2CppChar L_101;
|
|
L_101 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_99, ((int32_t)il2cpp_codegen_add(L_100, 1)), NULL);
|
|
if ((!(((uint32_t)L_101) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0263;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_102 = V_1;
|
|
int32_t L_103 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_102, L_103));
|
|
RuntimeObject* L_104 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_105 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_106 = V_12;
|
|
NullCheck(L_105);
|
|
int32_t L_107;
|
|
L_107 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_105, L_106);
|
|
NullCheck(L_104);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_108;
|
|
L_108 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_104, L_107);
|
|
V_13 = L_108;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_109 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_110 = ___1_format;
|
|
int32_t L_111 = V_0;
|
|
int32_t L_112 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_113;
|
|
L_113 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_110, L_111, L_112, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_114 = V_13;
|
|
NullCheck(L_109);
|
|
int32_t L_115;
|
|
L_115 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_109, L_113, L_114);
|
|
V_14 = L_115;
|
|
RuntimeObject* L_116 = ___0_bufferWriter;
|
|
int32_t L_117 = V_14;
|
|
NullCheck(L_116);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_116, L_117);
|
|
int32_t L_118 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_118, 1));
|
|
int32_t L_119 = V_1;
|
|
V_0 = L_119;
|
|
goto IL_0268;
|
|
}
|
|
|
|
IL_0263:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_0268:
|
|
{
|
|
int32_t L_120 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_120, 1));
|
|
}
|
|
|
|
IL_026c:
|
|
{
|
|
int32_t L_121 = V_1;
|
|
String_t* L_122 = ___1_format;
|
|
NullCheck(L_122);
|
|
int32_t L_123;
|
|
L_123 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_122, NULL);
|
|
if ((((int32_t)L_121) < ((int32_t)L_123)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_124 = ___1_format;
|
|
NullCheck(L_124);
|
|
int32_t L_125;
|
|
L_125 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_124, NULL);
|
|
int32_t L_126 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_125, L_126));
|
|
int32_t L_127 = V_15;
|
|
if ((((int32_t)L_127) <= ((int32_t)0)))
|
|
{
|
|
goto IL_02ba;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_128 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_129 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_130 = V_15;
|
|
NullCheck(L_129);
|
|
int32_t L_131;
|
|
L_131 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_129, L_130);
|
|
NullCheck(L_128);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_132;
|
|
L_132 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_128, L_131);
|
|
V_16 = L_132;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_133 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_134 = ___1_format;
|
|
int32_t L_135 = V_0;
|
|
int32_t L_136 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_137;
|
|
L_137 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_134, L_135, L_136, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_138 = V_16;
|
|
NullCheck(L_133);
|
|
int32_t L_139;
|
|
L_139 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_133, L_137, L_138);
|
|
V_17 = L_139;
|
|
RuntimeObject* L_140 = ___0_bufferWriter;
|
|
int32_t L_141 = V_17;
|
|
NullCheck(L_140);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_140, L_141);
|
|
}
|
|
|
|
IL_02ba:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mBB05AF6AD9FD9CFAC20C4E3FD64B1567A2B89F1D_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, Il2CppFullySharedGenericAny ___5_arg4, Il2CppFullySharedGenericAny ___6_arg5, Il2CppFullySharedGenericAny ___7_arg6, Il2CppFullySharedGenericAny ___8_arg7, Il2CppFullySharedGenericAny ___9_arg8, Il2CppFullySharedGenericAny ___10_arg9, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t6DDC53D13CCE30D66517F15417397F5E366AC823 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tAC747F9DCB5668379757C591DCAEABFE65C8C452 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_t21B99AF9B5151DF4473C9073949DFBD551394CCE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T4_t7B241F60055DE01D5BA7006F3E15EB3E6A09D390 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T5_tD358B0FEF0A4B445C1F36A888CFD9DA02DBB480F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T6_t431A258EC8E857939B22A8A779C1CBF90802DBD1 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T7_t04CBEF4CCC8C5E3EDA2CD1B985506803773B8A8D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T8_tB21607FBECEB7685C8D0D1BEA3AF3C995580AB3B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T9_t201338E805191BED80130A742ECEABCAC3EADD28 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_t6DDC53D13CCE30D66517F15417397F5E366AC823);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_tAC747F9DCB5668379757C591DCAEABFE65C8C452);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_t21B99AF9B5151DF4473C9073949DFBD551394CCE);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T4_t7B241F60055DE01D5BA7006F3E15EB3E6A09D390);
|
|
const Il2CppFullySharedGenericAny L_79 = alloca(SizeOf_T5_tD358B0FEF0A4B445C1F36A888CFD9DA02DBB480F);
|
|
const Il2CppFullySharedGenericAny L_83 = alloca(SizeOf_T6_t431A258EC8E857939B22A8A779C1CBF90802DBD1);
|
|
const Il2CppFullySharedGenericAny L_87 = alloca(SizeOf_T7_t04CBEF4CCC8C5E3EDA2CD1B985506803773B8A8D);
|
|
const Il2CppFullySharedGenericAny L_91 = alloca(SizeOf_T8_tB21607FBECEB7685C8D0D1BEA3AF3C995580AB3B);
|
|
const Il2CppFullySharedGenericAny L_95 = alloca(SizeOf_T9_t201338E805191BED80130A742ECEABCAC3EADD28);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_028b;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0225;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_0287;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_012b;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0145;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_015f;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_017a;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0195;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01b0;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_01cb;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_01e6;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0201;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0219;
|
|
}
|
|
|
|
IL_012b:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_t6DDC53D13CCE30D66517F15417397F5E366AC823);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_0287;
|
|
}
|
|
|
|
IL_0145:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_tAC747F9DCB5668379757C591DCAEABFE65C8C452);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_0287;
|
|
}
|
|
|
|
IL_015f:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_t21B99AF9B5151DF4473C9073949DFBD551394CCE);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_0287;
|
|
}
|
|
|
|
IL_017a:
|
|
{
|
|
il2cpp_codegen_memcpy(L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg4 : &___5_arg4), SizeOf_T4_t7B241F60055DE01D5BA7006F3E15EB3E6A09D390);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_76 = V_3;
|
|
int32_t L_77 = L_76.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_78 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_75: *(void**)L_75), L_77, L_78, _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
goto IL_0287;
|
|
}
|
|
|
|
IL_0195:
|
|
{
|
|
il2cpp_codegen_memcpy(L_79, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___6_arg5 : &___6_arg5), SizeOf_T5_tD358B0FEF0A4B445C1F36A888CFD9DA02DBB480F);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_80 = V_3;
|
|
int32_t L_81 = L_80.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_82 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_79: *(void**)L_79), L_81, L_82, _stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
goto IL_0287;
|
|
}
|
|
|
|
IL_01b0:
|
|
{
|
|
il2cpp_codegen_memcpy(L_83, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___7_arg6 : &___7_arg6), SizeOf_T6_t431A258EC8E857939B22A8A779C1CBF90802DBD1);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_84 = V_3;
|
|
int32_t L_85 = L_84.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_86 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_83: *(void**)L_83), L_85, L_86, _stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
goto IL_0287;
|
|
}
|
|
|
|
IL_01cb:
|
|
{
|
|
il2cpp_codegen_memcpy(L_87, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___8_arg7 : &___8_arg7), SizeOf_T7_t04CBEF4CCC8C5E3EDA2CD1B985506803773B8A8D);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_88 = V_3;
|
|
int32_t L_89 = L_88.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_90 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_87: *(void**)L_87), L_89, L_90, _stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
goto IL_0287;
|
|
}
|
|
|
|
IL_01e6:
|
|
{
|
|
il2cpp_codegen_memcpy(L_91, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? ___9_arg8 : &___9_arg8), SizeOf_T8_tB21607FBECEB7685C8D0D1BEA3AF3C995580AB3B);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_92 = V_3;
|
|
int32_t L_93 = L_92.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_94 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_91: *(void**)L_91), L_93, L_94, _stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
goto IL_0287;
|
|
}
|
|
|
|
IL_0201:
|
|
{
|
|
il2cpp_codegen_memcpy(L_95, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? ___10_arg9 : &___10_arg9), SizeOf_T9_t201338E805191BED80130A742ECEABCAC3EADD28);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_96 = V_3;
|
|
int32_t L_97 = L_96.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_98 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? L_95: *(void**)L_95), L_97, L_98, _stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
goto IL_0287;
|
|
}
|
|
|
|
IL_0219:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_0287;
|
|
}
|
|
|
|
IL_0225:
|
|
{
|
|
Il2CppChar L_99 = V_2;
|
|
if ((!(((uint32_t)L_99) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0287;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_100 = V_1;
|
|
String_t* L_101 = ___1_format;
|
|
NullCheck(L_101);
|
|
int32_t L_102;
|
|
L_102 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_101, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_100, 1))) >= ((int32_t)L_102)))
|
|
{
|
|
goto IL_0282;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_103 = ___1_format;
|
|
int32_t L_104 = V_1;
|
|
NullCheck(L_103);
|
|
Il2CppChar L_105;
|
|
L_105 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_103, ((int32_t)il2cpp_codegen_add(L_104, 1)), NULL);
|
|
if ((!(((uint32_t)L_105) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0282;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_106 = V_1;
|
|
int32_t L_107 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_106, L_107));
|
|
RuntimeObject* L_108 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_109 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_110 = V_12;
|
|
NullCheck(L_109);
|
|
int32_t L_111;
|
|
L_111 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_109, L_110);
|
|
NullCheck(L_108);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_112;
|
|
L_112 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_108, L_111);
|
|
V_13 = L_112;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_113 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_114 = ___1_format;
|
|
int32_t L_115 = V_0;
|
|
int32_t L_116 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_117;
|
|
L_117 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_114, L_115, L_116, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_118 = V_13;
|
|
NullCheck(L_113);
|
|
int32_t L_119;
|
|
L_119 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_113, L_117, L_118);
|
|
V_14 = L_119;
|
|
RuntimeObject* L_120 = ___0_bufferWriter;
|
|
int32_t L_121 = V_14;
|
|
NullCheck(L_120);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_120, L_121);
|
|
int32_t L_122 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_122, 1));
|
|
int32_t L_123 = V_1;
|
|
V_0 = L_123;
|
|
goto IL_0287;
|
|
}
|
|
|
|
IL_0282:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_0287:
|
|
{
|
|
int32_t L_124 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_124, 1));
|
|
}
|
|
|
|
IL_028b:
|
|
{
|
|
int32_t L_125 = V_1;
|
|
String_t* L_126 = ___1_format;
|
|
NullCheck(L_126);
|
|
int32_t L_127;
|
|
L_127 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_126, NULL);
|
|
if ((((int32_t)L_125) < ((int32_t)L_127)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_128 = ___1_format;
|
|
NullCheck(L_128);
|
|
int32_t L_129;
|
|
L_129 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_128, NULL);
|
|
int32_t L_130 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_129, L_130));
|
|
int32_t L_131 = V_15;
|
|
if ((((int32_t)L_131) <= ((int32_t)0)))
|
|
{
|
|
goto IL_02d9;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_132 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_133 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_134 = V_15;
|
|
NullCheck(L_133);
|
|
int32_t L_135;
|
|
L_135 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_133, L_134);
|
|
NullCheck(L_132);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_136;
|
|
L_136 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_132, L_135);
|
|
V_16 = L_136;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_137 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_138 = ___1_format;
|
|
int32_t L_139 = V_0;
|
|
int32_t L_140 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_141;
|
|
L_141 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_138, L_139, L_140, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_142 = V_16;
|
|
NullCheck(L_137);
|
|
int32_t L_143;
|
|
L_143 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_137, L_141, L_142);
|
|
V_17 = L_143;
|
|
RuntimeObject* L_144 = ___0_bufferWriter;
|
|
int32_t L_145 = V_17;
|
|
NullCheck(L_144);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_144, L_145);
|
|
}
|
|
|
|
IL_02d9:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mFFBC705D736F353B85F5AD53BC7CF77FF09EAF25_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, Il2CppFullySharedGenericAny ___5_arg4, Il2CppFullySharedGenericAny ___6_arg5, Il2CppFullySharedGenericAny ___7_arg6, Il2CppFullySharedGenericAny ___8_arg7, Il2CppFullySharedGenericAny ___9_arg8, Il2CppFullySharedGenericAny ___10_arg9, Il2CppFullySharedGenericAny ___11_arg10, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tE5360F54D17B42AACEBACF018AEB915A9A81D4B5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tBB2127659783859A964F22C675A261AFA95C20F2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_tD517E2EFC323AEFA2B838DC010D579EF52A84B8B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T4_tF84BFC3B7AAD8053BAEF11CD76220996A0913C12 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T5_t867C7D485E4444AD6A419117F220E1B0C82C7B46 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T6_t0CEA142070C6F165FA019F6A3CA6174CAA7F585A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T7_t953441217EE07E9A1CB572BE7CE258EB718DA403 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T8_t7B61F4FDEFD4F6F0583910FD97FE9B4D62D162DD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T9_t193CC42D6C5A672707B14CA01014437150A9B880 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T10_t120B3B4892AE513ACD46712CBF5D502F2FE0F6D7 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_tE5360F54D17B42AACEBACF018AEB915A9A81D4B5);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_tBB2127659783859A964F22C675A261AFA95C20F2);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_tD517E2EFC323AEFA2B838DC010D579EF52A84B8B);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T4_tF84BFC3B7AAD8053BAEF11CD76220996A0913C12);
|
|
const Il2CppFullySharedGenericAny L_79 = alloca(SizeOf_T5_t867C7D485E4444AD6A419117F220E1B0C82C7B46);
|
|
const Il2CppFullySharedGenericAny L_83 = alloca(SizeOf_T6_t0CEA142070C6F165FA019F6A3CA6174CAA7F585A);
|
|
const Il2CppFullySharedGenericAny L_87 = alloca(SizeOf_T7_t953441217EE07E9A1CB572BE7CE258EB718DA403);
|
|
const Il2CppFullySharedGenericAny L_91 = alloca(SizeOf_T8_t7B61F4FDEFD4F6F0583910FD97FE9B4D62D162DD);
|
|
const Il2CppFullySharedGenericAny L_95 = alloca(SizeOf_T9_t193CC42D6C5A672707B14CA01014437150A9B880);
|
|
const Il2CppFullySharedGenericAny L_99 = alloca(SizeOf_T10_t120B3B4892AE513ACD46712CBF5D502F2FE0F6D7);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_02aa;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0244;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_02a6;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_012f;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0149;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0163;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_017e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_0199;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01b4;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_01cf;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_01ea;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0205;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_0220;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0238;
|
|
}
|
|
|
|
IL_012f:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_tE5360F54D17B42AACEBACF018AEB915A9A81D4B5);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_02a6;
|
|
}
|
|
|
|
IL_0149:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_tBB2127659783859A964F22C675A261AFA95C20F2);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_02a6;
|
|
}
|
|
|
|
IL_0163:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_tD517E2EFC323AEFA2B838DC010D579EF52A84B8B);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_02a6;
|
|
}
|
|
|
|
IL_017e:
|
|
{
|
|
il2cpp_codegen_memcpy(L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg4 : &___5_arg4), SizeOf_T4_tF84BFC3B7AAD8053BAEF11CD76220996A0913C12);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_76 = V_3;
|
|
int32_t L_77 = L_76.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_78 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_75: *(void**)L_75), L_77, L_78, _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
goto IL_02a6;
|
|
}
|
|
|
|
IL_0199:
|
|
{
|
|
il2cpp_codegen_memcpy(L_79, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___6_arg5 : &___6_arg5), SizeOf_T5_t867C7D485E4444AD6A419117F220E1B0C82C7B46);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_80 = V_3;
|
|
int32_t L_81 = L_80.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_82 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_79: *(void**)L_79), L_81, L_82, _stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
goto IL_02a6;
|
|
}
|
|
|
|
IL_01b4:
|
|
{
|
|
il2cpp_codegen_memcpy(L_83, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___7_arg6 : &___7_arg6), SizeOf_T6_t0CEA142070C6F165FA019F6A3CA6174CAA7F585A);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_84 = V_3;
|
|
int32_t L_85 = L_84.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_86 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_83: *(void**)L_83), L_85, L_86, _stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
goto IL_02a6;
|
|
}
|
|
|
|
IL_01cf:
|
|
{
|
|
il2cpp_codegen_memcpy(L_87, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___8_arg7 : &___8_arg7), SizeOf_T7_t953441217EE07E9A1CB572BE7CE258EB718DA403);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_88 = V_3;
|
|
int32_t L_89 = L_88.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_90 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_87: *(void**)L_87), L_89, L_90, _stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
goto IL_02a6;
|
|
}
|
|
|
|
IL_01ea:
|
|
{
|
|
il2cpp_codegen_memcpy(L_91, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? ___9_arg8 : &___9_arg8), SizeOf_T8_t7B61F4FDEFD4F6F0583910FD97FE9B4D62D162DD);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_92 = V_3;
|
|
int32_t L_93 = L_92.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_94 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_91: *(void**)L_91), L_93, L_94, _stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
goto IL_02a6;
|
|
}
|
|
|
|
IL_0205:
|
|
{
|
|
il2cpp_codegen_memcpy(L_95, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? ___10_arg9 : &___10_arg9), SizeOf_T9_t193CC42D6C5A672707B14CA01014437150A9B880);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_96 = V_3;
|
|
int32_t L_97 = L_96.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_98 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? L_95: *(void**)L_95), L_97, L_98, _stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
goto IL_02a6;
|
|
}
|
|
|
|
IL_0220:
|
|
{
|
|
il2cpp_codegen_memcpy(L_99, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? ___11_arg10 : &___11_arg10), SizeOf_T10_t120B3B4892AE513ACD46712CBF5D502F2FE0F6D7);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_100 = V_3;
|
|
int32_t L_101 = L_100.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_102 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? L_99: *(void**)L_99), L_101, L_102, _stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
goto IL_02a6;
|
|
}
|
|
|
|
IL_0238:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_02a6;
|
|
}
|
|
|
|
IL_0244:
|
|
{
|
|
Il2CppChar L_103 = V_2;
|
|
if ((!(((uint32_t)L_103) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_02a6;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_104 = V_1;
|
|
String_t* L_105 = ___1_format;
|
|
NullCheck(L_105);
|
|
int32_t L_106;
|
|
L_106 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_105, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_104, 1))) >= ((int32_t)L_106)))
|
|
{
|
|
goto IL_02a1;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_107 = ___1_format;
|
|
int32_t L_108 = V_1;
|
|
NullCheck(L_107);
|
|
Il2CppChar L_109;
|
|
L_109 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_107, ((int32_t)il2cpp_codegen_add(L_108, 1)), NULL);
|
|
if ((!(((uint32_t)L_109) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_02a1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_110 = V_1;
|
|
int32_t L_111 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_110, L_111));
|
|
RuntimeObject* L_112 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_113 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_114 = V_12;
|
|
NullCheck(L_113);
|
|
int32_t L_115;
|
|
L_115 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_113, L_114);
|
|
NullCheck(L_112);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_116;
|
|
L_116 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_112, L_115);
|
|
V_13 = L_116;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_117 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_118 = ___1_format;
|
|
int32_t L_119 = V_0;
|
|
int32_t L_120 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_121;
|
|
L_121 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_118, L_119, L_120, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_122 = V_13;
|
|
NullCheck(L_117);
|
|
int32_t L_123;
|
|
L_123 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_117, L_121, L_122);
|
|
V_14 = L_123;
|
|
RuntimeObject* L_124 = ___0_bufferWriter;
|
|
int32_t L_125 = V_14;
|
|
NullCheck(L_124);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_124, L_125);
|
|
int32_t L_126 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_126, 1));
|
|
int32_t L_127 = V_1;
|
|
V_0 = L_127;
|
|
goto IL_02a6;
|
|
}
|
|
|
|
IL_02a1:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_02a6:
|
|
{
|
|
int32_t L_128 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_128, 1));
|
|
}
|
|
|
|
IL_02aa:
|
|
{
|
|
int32_t L_129 = V_1;
|
|
String_t* L_130 = ___1_format;
|
|
NullCheck(L_130);
|
|
int32_t L_131;
|
|
L_131 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_130, NULL);
|
|
if ((((int32_t)L_129) < ((int32_t)L_131)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_132 = ___1_format;
|
|
NullCheck(L_132);
|
|
int32_t L_133;
|
|
L_133 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_132, NULL);
|
|
int32_t L_134 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_133, L_134));
|
|
int32_t L_135 = V_15;
|
|
if ((((int32_t)L_135) <= ((int32_t)0)))
|
|
{
|
|
goto IL_02f8;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_136 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_137 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_138 = V_15;
|
|
NullCheck(L_137);
|
|
int32_t L_139;
|
|
L_139 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_137, L_138);
|
|
NullCheck(L_136);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_140;
|
|
L_140 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_136, L_139);
|
|
V_16 = L_140;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_141 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_142 = ___1_format;
|
|
int32_t L_143 = V_0;
|
|
int32_t L_144 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_145;
|
|
L_145 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_142, L_143, L_144, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_146 = V_16;
|
|
NullCheck(L_141);
|
|
int32_t L_147;
|
|
L_147 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_141, L_145, L_146);
|
|
V_17 = L_147;
|
|
RuntimeObject* L_148 = ___0_bufferWriter;
|
|
int32_t L_149 = V_17;
|
|
NullCheck(L_148);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_148, L_149);
|
|
}
|
|
|
|
IL_02f8:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m6DEABF7CE8B353C193A5BBABE646158288400D29_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, Il2CppFullySharedGenericAny ___5_arg4, Il2CppFullySharedGenericAny ___6_arg5, Il2CppFullySharedGenericAny ___7_arg6, Il2CppFullySharedGenericAny ___8_arg7, Il2CppFullySharedGenericAny ___9_arg8, Il2CppFullySharedGenericAny ___10_arg9, Il2CppFullySharedGenericAny ___11_arg10, Il2CppFullySharedGenericAny ___12_arg11, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE65C938B36DF53938C3DB40A7D8AE09A05ED61D9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t761F393CA74C3A6D3EAFF52FB67D41FE93582807 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t5245928E1ADD6CF39DA46E218AAC13FB5D8B8EF8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_t26660EAF547607CCA6421974D0A376F4873A8F9C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T4_t46EAB25CB7446F7B5B61C15F7D428677BDB4C95D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T5_t7959FE029299F66AFE0EA03BFAFE1A276050DC23 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T6_t8690BFDCB4B088027832ED61C693B0509E5A48A8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T7_t8399ED889F5F8A02D1CE9E42C334A4633934197B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T8_t286CF9793A4F65B0462D94AFBF91E40EFA0B3D51 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T9_t3F9EFF1BEE473A2BC41966A90DA263A5770AB725 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T10_t9382292E911944C58C030FA4CC0E4B41C6BCA584 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const uint32_t SizeOf_T11_t8973C81EFC5A0D3E92D37385A049009C0C6E23EB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 20));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_t761F393CA74C3A6D3EAFF52FB67D41FE93582807);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_t5245928E1ADD6CF39DA46E218AAC13FB5D8B8EF8);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_t26660EAF547607CCA6421974D0A376F4873A8F9C);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T4_t46EAB25CB7446F7B5B61C15F7D428677BDB4C95D);
|
|
const Il2CppFullySharedGenericAny L_79 = alloca(SizeOf_T5_t7959FE029299F66AFE0EA03BFAFE1A276050DC23);
|
|
const Il2CppFullySharedGenericAny L_83 = alloca(SizeOf_T6_t8690BFDCB4B088027832ED61C693B0509E5A48A8);
|
|
const Il2CppFullySharedGenericAny L_87 = alloca(SizeOf_T7_t8399ED889F5F8A02D1CE9E42C334A4633934197B);
|
|
const Il2CppFullySharedGenericAny L_91 = alloca(SizeOf_T8_t286CF9793A4F65B0462D94AFBF91E40EFA0B3D51);
|
|
const Il2CppFullySharedGenericAny L_95 = alloca(SizeOf_T9_t3F9EFF1BEE473A2BC41966A90DA263A5770AB725);
|
|
const Il2CppFullySharedGenericAny L_99 = alloca(SizeOf_T10_t9382292E911944C58C030FA4CC0E4B41C6BCA584);
|
|
const Il2CppFullySharedGenericAny L_103 = alloca(SizeOf_T11_t8973C81EFC5A0D3E92D37385A049009C0C6E23EB);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_02c9;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0263;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0133;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_014d;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0167;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0182;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_019d;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01b8;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_01d3;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0209;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_0224;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_023f;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0257;
|
|
}
|
|
|
|
IL_0133:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_t761F393CA74C3A6D3EAFF52FB67D41FE93582807);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_014d:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_t5245928E1ADD6CF39DA46E218AAC13FB5D8B8EF8);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_0167:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_t26660EAF547607CCA6421974D0A376F4873A8F9C);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_0182:
|
|
{
|
|
il2cpp_codegen_memcpy(L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg4 : &___5_arg4), SizeOf_T4_t46EAB25CB7446F7B5B61C15F7D428677BDB4C95D);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_76 = V_3;
|
|
int32_t L_77 = L_76.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_78 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_75: *(void**)L_75), L_77, L_78, _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_019d:
|
|
{
|
|
il2cpp_codegen_memcpy(L_79, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___6_arg5 : &___6_arg5), SizeOf_T5_t7959FE029299F66AFE0EA03BFAFE1A276050DC23);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_80 = V_3;
|
|
int32_t L_81 = L_80.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_82 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_79: *(void**)L_79), L_81, L_82, _stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_01b8:
|
|
{
|
|
il2cpp_codegen_memcpy(L_83, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___7_arg6 : &___7_arg6), SizeOf_T6_t8690BFDCB4B088027832ED61C693B0509E5A48A8);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_84 = V_3;
|
|
int32_t L_85 = L_84.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_86 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_83: *(void**)L_83), L_85, L_86, _stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_01d3:
|
|
{
|
|
il2cpp_codegen_memcpy(L_87, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___8_arg7 : &___8_arg7), SizeOf_T7_t8399ED889F5F8A02D1CE9E42C334A4633934197B);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_88 = V_3;
|
|
int32_t L_89 = L_88.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_90 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_87: *(void**)L_87), L_89, L_90, _stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_01ee:
|
|
{
|
|
il2cpp_codegen_memcpy(L_91, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? ___9_arg8 : &___9_arg8), SizeOf_T8_t286CF9793A4F65B0462D94AFBF91E40EFA0B3D51);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_92 = V_3;
|
|
int32_t L_93 = L_92.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_94 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_91: *(void**)L_91), L_93, L_94, _stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_0209:
|
|
{
|
|
il2cpp_codegen_memcpy(L_95, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? ___10_arg9 : &___10_arg9), SizeOf_T9_t3F9EFF1BEE473A2BC41966A90DA263A5770AB725);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_96 = V_3;
|
|
int32_t L_97 = L_96.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_98 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? L_95: *(void**)L_95), L_97, L_98, _stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_0224:
|
|
{
|
|
il2cpp_codegen_memcpy(L_99, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? ___11_arg10 : &___11_arg10), SizeOf_T10_t9382292E911944C58C030FA4CC0E4B41C6BCA584);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_100 = V_3;
|
|
int32_t L_101 = L_100.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_102 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? L_99: *(void**)L_99), L_101, L_102, _stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_023f:
|
|
{
|
|
il2cpp_codegen_memcpy(L_103, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 20)) ? ___12_arg11 : &___12_arg11), SizeOf_T11_t8973C81EFC5A0D3E92D37385A049009C0C6E23EB);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_104 = V_3;
|
|
int32_t L_105 = L_104.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_106 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 21)), il2cpp_rgctx_method(method->rgctx_data, 21), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 20)) ? L_103: *(void**)L_103), L_105, L_106, _stringLiteralE65C938B36DF53938C3DB40A7D8AE09A05ED61D9);
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_0257:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_0263:
|
|
{
|
|
Il2CppChar L_107 = V_2;
|
|
if ((!(((uint32_t)L_107) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_02c5;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_108 = V_1;
|
|
String_t* L_109 = ___1_format;
|
|
NullCheck(L_109);
|
|
int32_t L_110;
|
|
L_110 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_109, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_108, 1))) >= ((int32_t)L_110)))
|
|
{
|
|
goto IL_02c0;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_111 = ___1_format;
|
|
int32_t L_112 = V_1;
|
|
NullCheck(L_111);
|
|
Il2CppChar L_113;
|
|
L_113 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_111, ((int32_t)il2cpp_codegen_add(L_112, 1)), NULL);
|
|
if ((!(((uint32_t)L_113) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_02c0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_114 = V_1;
|
|
int32_t L_115 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_114, L_115));
|
|
RuntimeObject* L_116 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_117 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_118 = V_12;
|
|
NullCheck(L_117);
|
|
int32_t L_119;
|
|
L_119 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_117, L_118);
|
|
NullCheck(L_116);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_120;
|
|
L_120 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_116, L_119);
|
|
V_13 = L_120;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_121 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_122 = ___1_format;
|
|
int32_t L_123 = V_0;
|
|
int32_t L_124 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_125;
|
|
L_125 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_122, L_123, L_124, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_126 = V_13;
|
|
NullCheck(L_121);
|
|
int32_t L_127;
|
|
L_127 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_121, L_125, L_126);
|
|
V_14 = L_127;
|
|
RuntimeObject* L_128 = ___0_bufferWriter;
|
|
int32_t L_129 = V_14;
|
|
NullCheck(L_128);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_128, L_129);
|
|
int32_t L_130 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_130, 1));
|
|
int32_t L_131 = V_1;
|
|
V_0 = L_131;
|
|
goto IL_02c5;
|
|
}
|
|
|
|
IL_02c0:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_02c5:
|
|
{
|
|
int32_t L_132 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_132, 1));
|
|
}
|
|
|
|
IL_02c9:
|
|
{
|
|
int32_t L_133 = V_1;
|
|
String_t* L_134 = ___1_format;
|
|
NullCheck(L_134);
|
|
int32_t L_135;
|
|
L_135 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_134, NULL);
|
|
if ((((int32_t)L_133) < ((int32_t)L_135)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_136 = ___1_format;
|
|
NullCheck(L_136);
|
|
int32_t L_137;
|
|
L_137 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_136, NULL);
|
|
int32_t L_138 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_137, L_138));
|
|
int32_t L_139 = V_15;
|
|
if ((((int32_t)L_139) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0317;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_140 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_141 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_142 = V_15;
|
|
NullCheck(L_141);
|
|
int32_t L_143;
|
|
L_143 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_141, L_142);
|
|
NullCheck(L_140);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_144;
|
|
L_144 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_140, L_143);
|
|
V_16 = L_144;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_145 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_146 = ___1_format;
|
|
int32_t L_147 = V_0;
|
|
int32_t L_148 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_149;
|
|
L_149 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_146, L_147, L_148, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_150 = V_16;
|
|
NullCheck(L_145);
|
|
int32_t L_151;
|
|
L_151 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_145, L_149, L_150);
|
|
V_17 = L_151;
|
|
RuntimeObject* L_152 = ___0_bufferWriter;
|
|
int32_t L_153 = V_17;
|
|
NullCheck(L_152);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_152, L_153);
|
|
}
|
|
|
|
IL_0317:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mF1A736A7676FA1D5D26C0AA80244614AD309314F_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, Il2CppFullySharedGenericAny ___5_arg4, Il2CppFullySharedGenericAny ___6_arg5, Il2CppFullySharedGenericAny ___7_arg6, Il2CppFullySharedGenericAny ___8_arg7, Il2CppFullySharedGenericAny ___9_arg8, Il2CppFullySharedGenericAny ___10_arg9, Il2CppFullySharedGenericAny ___11_arg10, Il2CppFullySharedGenericAny ___12_arg11, Il2CppFullySharedGenericAny ___13_arg12, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83088F1068E2EA43519F1DC631CB4A130848670A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE65C938B36DF53938C3DB40A7D8AE09A05ED61D9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t4F85F61B6BED01F246BF6C3A15933A47B951E69B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tD807868F7246B50D954B27E5A63E52E774E6CD45 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_tC69BC19DFAE1523696C0D62CC435828202AA2DEE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T4_tDFF20574FE8C38408D46EEAEC8DB0C7900040E5A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T5_t5B51FE6CE4295A4C6A6820A1486D30BF8EF1E183 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T6_t34B085FE0FC70833771ECFE9B43B8E24CD31A52D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T7_t05D6790171BC568FB2C49A990F77A3E612F5C91C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T8_t3E6E7A0A912F51E469B1FDEABB2F1B1D9E0DB7BE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T9_tEA1F8DA0D4DC54139B408677BB87C084976037FD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T10_t1223C5C4BE9BDF0EFAD8C65C5F68AC12153E065B = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const uint32_t SizeOf_T11_t24A99DC09814AFF08DEB121DD3C4D359FC7759CE = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 20));
|
|
const uint32_t SizeOf_T12_t61B3259A3328D2E4449EE95A60538177B295AFD3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_t4F85F61B6BED01F246BF6C3A15933A47B951E69B);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_tD807868F7246B50D954B27E5A63E52E774E6CD45);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_tC69BC19DFAE1523696C0D62CC435828202AA2DEE);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T4_tDFF20574FE8C38408D46EEAEC8DB0C7900040E5A);
|
|
const Il2CppFullySharedGenericAny L_79 = alloca(SizeOf_T5_t5B51FE6CE4295A4C6A6820A1486D30BF8EF1E183);
|
|
const Il2CppFullySharedGenericAny L_83 = alloca(SizeOf_T6_t34B085FE0FC70833771ECFE9B43B8E24CD31A52D);
|
|
const Il2CppFullySharedGenericAny L_87 = alloca(SizeOf_T7_t05D6790171BC568FB2C49A990F77A3E612F5C91C);
|
|
const Il2CppFullySharedGenericAny L_91 = alloca(SizeOf_T8_t3E6E7A0A912F51E469B1FDEABB2F1B1D9E0DB7BE);
|
|
const Il2CppFullySharedGenericAny L_95 = alloca(SizeOf_T9_tEA1F8DA0D4DC54139B408677BB87C084976037FD);
|
|
const Il2CppFullySharedGenericAny L_99 = alloca(SizeOf_T10_t1223C5C4BE9BDF0EFAD8C65C5F68AC12153E065B);
|
|
const Il2CppFullySharedGenericAny L_103 = alloca(SizeOf_T11_t24A99DC09814AFF08DEB121DD3C4D359FC7759CE);
|
|
const Il2CppFullySharedGenericAny L_107 = alloca(SizeOf_T12_t61B3259A3328D2E4449EE95A60538177B295AFD3);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_02e8;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0282;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0137;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0151;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_016b;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0186;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_01a1;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01bc;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_01d7;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_01f2;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_020d;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_0228;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_0243;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_025e;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0276;
|
|
}
|
|
|
|
IL_0137:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_t4F85F61B6BED01F246BF6C3A15933A47B951E69B);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_0151:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_tD807868F7246B50D954B27E5A63E52E774E6CD45);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_016b:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_tC69BC19DFAE1523696C0D62CC435828202AA2DEE);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_0186:
|
|
{
|
|
il2cpp_codegen_memcpy(L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg4 : &___5_arg4), SizeOf_T4_tDFF20574FE8C38408D46EEAEC8DB0C7900040E5A);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_76 = V_3;
|
|
int32_t L_77 = L_76.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_78 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_75: *(void**)L_75), L_77, L_78, _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_01a1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_79, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___6_arg5 : &___6_arg5), SizeOf_T5_t5B51FE6CE4295A4C6A6820A1486D30BF8EF1E183);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_80 = V_3;
|
|
int32_t L_81 = L_80.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_82 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_79: *(void**)L_79), L_81, L_82, _stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_01bc:
|
|
{
|
|
il2cpp_codegen_memcpy(L_83, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___7_arg6 : &___7_arg6), SizeOf_T6_t34B085FE0FC70833771ECFE9B43B8E24CD31A52D);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_84 = V_3;
|
|
int32_t L_85 = L_84.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_86 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_83: *(void**)L_83), L_85, L_86, _stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_01d7:
|
|
{
|
|
il2cpp_codegen_memcpy(L_87, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___8_arg7 : &___8_arg7), SizeOf_T7_t05D6790171BC568FB2C49A990F77A3E612F5C91C);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_88 = V_3;
|
|
int32_t L_89 = L_88.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_90 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_87: *(void**)L_87), L_89, L_90, _stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_01f2:
|
|
{
|
|
il2cpp_codegen_memcpy(L_91, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? ___9_arg8 : &___9_arg8), SizeOf_T8_t3E6E7A0A912F51E469B1FDEABB2F1B1D9E0DB7BE);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_92 = V_3;
|
|
int32_t L_93 = L_92.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_94 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_91: *(void**)L_91), L_93, L_94, _stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_020d:
|
|
{
|
|
il2cpp_codegen_memcpy(L_95, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? ___10_arg9 : &___10_arg9), SizeOf_T9_tEA1F8DA0D4DC54139B408677BB87C084976037FD);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_96 = V_3;
|
|
int32_t L_97 = L_96.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_98 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? L_95: *(void**)L_95), L_97, L_98, _stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_0228:
|
|
{
|
|
il2cpp_codegen_memcpy(L_99, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? ___11_arg10 : &___11_arg10), SizeOf_T10_t1223C5C4BE9BDF0EFAD8C65C5F68AC12153E065B);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_100 = V_3;
|
|
int32_t L_101 = L_100.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_102 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? L_99: *(void**)L_99), L_101, L_102, _stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_0243:
|
|
{
|
|
il2cpp_codegen_memcpy(L_103, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 20)) ? ___12_arg11 : &___12_arg11), SizeOf_T11_t24A99DC09814AFF08DEB121DD3C4D359FC7759CE);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_104 = V_3;
|
|
int32_t L_105 = L_104.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_106 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 21)), il2cpp_rgctx_method(method->rgctx_data, 21), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 20)) ? L_103: *(void**)L_103), L_105, L_106, _stringLiteralE65C938B36DF53938C3DB40A7D8AE09A05ED61D9);
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_025e:
|
|
{
|
|
il2cpp_codegen_memcpy(L_107, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 22)) ? ___13_arg12 : &___13_arg12), SizeOf_T12_t61B3259A3328D2E4449EE95A60538177B295AFD3);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_108 = V_3;
|
|
int32_t L_109 = L_108.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_110 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 22)) ? L_107: *(void**)L_107), L_109, L_110, _stringLiteral83088F1068E2EA43519F1DC631CB4A130848670A);
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_0276:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_0282:
|
|
{
|
|
Il2CppChar L_111 = V_2;
|
|
if ((!(((uint32_t)L_111) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_02e4;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_112 = V_1;
|
|
String_t* L_113 = ___1_format;
|
|
NullCheck(L_113);
|
|
int32_t L_114;
|
|
L_114 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_113, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_112, 1))) >= ((int32_t)L_114)))
|
|
{
|
|
goto IL_02df;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_115 = ___1_format;
|
|
int32_t L_116 = V_1;
|
|
NullCheck(L_115);
|
|
Il2CppChar L_117;
|
|
L_117 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_115, ((int32_t)il2cpp_codegen_add(L_116, 1)), NULL);
|
|
if ((!(((uint32_t)L_117) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_02df;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_118 = V_1;
|
|
int32_t L_119 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_118, L_119));
|
|
RuntimeObject* L_120 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_121 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_122 = V_12;
|
|
NullCheck(L_121);
|
|
int32_t L_123;
|
|
L_123 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_121, L_122);
|
|
NullCheck(L_120);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_124;
|
|
L_124 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_120, L_123);
|
|
V_13 = L_124;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_125 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_126 = ___1_format;
|
|
int32_t L_127 = V_0;
|
|
int32_t L_128 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_129;
|
|
L_129 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_126, L_127, L_128, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_130 = V_13;
|
|
NullCheck(L_125);
|
|
int32_t L_131;
|
|
L_131 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_125, L_129, L_130);
|
|
V_14 = L_131;
|
|
RuntimeObject* L_132 = ___0_bufferWriter;
|
|
int32_t L_133 = V_14;
|
|
NullCheck(L_132);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_132, L_133);
|
|
int32_t L_134 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_134, 1));
|
|
int32_t L_135 = V_1;
|
|
V_0 = L_135;
|
|
goto IL_02e4;
|
|
}
|
|
|
|
IL_02df:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_02e4:
|
|
{
|
|
int32_t L_136 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_136, 1));
|
|
}
|
|
|
|
IL_02e8:
|
|
{
|
|
int32_t L_137 = V_1;
|
|
String_t* L_138 = ___1_format;
|
|
NullCheck(L_138);
|
|
int32_t L_139;
|
|
L_139 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_138, NULL);
|
|
if ((((int32_t)L_137) < ((int32_t)L_139)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_140 = ___1_format;
|
|
NullCheck(L_140);
|
|
int32_t L_141;
|
|
L_141 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_140, NULL);
|
|
int32_t L_142 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_141, L_142));
|
|
int32_t L_143 = V_15;
|
|
if ((((int32_t)L_143) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0336;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_144 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_145 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_146 = V_15;
|
|
NullCheck(L_145);
|
|
int32_t L_147;
|
|
L_147 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_145, L_146);
|
|
NullCheck(L_144);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_148;
|
|
L_148 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_144, L_147);
|
|
V_16 = L_148;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_149 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_150 = ___1_format;
|
|
int32_t L_151 = V_0;
|
|
int32_t L_152 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_153;
|
|
L_153 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_150, L_151, L_152, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_154 = V_16;
|
|
NullCheck(L_149);
|
|
int32_t L_155;
|
|
L_155 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_149, L_153, L_154);
|
|
V_17 = L_155;
|
|
RuntimeObject* L_156 = ___0_bufferWriter;
|
|
int32_t L_157 = V_17;
|
|
NullCheck(L_156);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_156, L_157);
|
|
}
|
|
|
|
IL_0336:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mD4321F33FFC9E39FFD79CCB996A06926A1DF375A_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, Il2CppFullySharedGenericAny ___5_arg4, Il2CppFullySharedGenericAny ___6_arg5, Il2CppFullySharedGenericAny ___7_arg6, Il2CppFullySharedGenericAny ___8_arg7, Il2CppFullySharedGenericAny ___9_arg8, Il2CppFullySharedGenericAny ___10_arg9, Il2CppFullySharedGenericAny ___11_arg10, Il2CppFullySharedGenericAny ___12_arg11, Il2CppFullySharedGenericAny ___13_arg12, Il2CppFullySharedGenericAny ___14_arg13, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83088F1068E2EA43519F1DC631CB4A130848670A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE65C938B36DF53938C3DB40A7D8AE09A05ED61D9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFB177A61A98D4F6101A8CD435D326073935BF35D);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tE4427130778C542E8CD9D17E219D58C383E75D9F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t8DD813C31A5972428B3536FBF8111B70156DB264 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_t7CF526C7A0DDA26236E47783245DCA557D174B5D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T4_t6ACFE1E77E0CEFB0E116A94087E20D4BDEA9D2C6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T5_t291A6DA47206568D026CDEF27CCA579DA349253C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T6_tC6099583335BA495EB04B8FE5B9AD69CB30DED36 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T7_t71D097F395AAEBB61A1B53E346F8D7082E0D12A6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T8_t6FF64D2DC7D6963A21288D8F81922380967FE443 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T9_t6792DA14DBF03B6281913E84C4374067096CD808 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T10_tDB177BD3DB176F3FCCD8CAC407E5F31DB73FD231 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const uint32_t SizeOf_T11_tCBB38AED662F04AC88C96E84DE64872AB269818A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 20));
|
|
const uint32_t SizeOf_T12_t4BF10212B1F914159A0619A91704D6D8B8524600 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const uint32_t SizeOf_T13_tF20E73BF2484DF831884A47A2B83A5F07C974CAB = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 24));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_tE4427130778C542E8CD9D17E219D58C383E75D9F);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_t8DD813C31A5972428B3536FBF8111B70156DB264);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_t7CF526C7A0DDA26236E47783245DCA557D174B5D);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T4_t6ACFE1E77E0CEFB0E116A94087E20D4BDEA9D2C6);
|
|
const Il2CppFullySharedGenericAny L_79 = alloca(SizeOf_T5_t291A6DA47206568D026CDEF27CCA579DA349253C);
|
|
const Il2CppFullySharedGenericAny L_83 = alloca(SizeOf_T6_tC6099583335BA495EB04B8FE5B9AD69CB30DED36);
|
|
const Il2CppFullySharedGenericAny L_87 = alloca(SizeOf_T7_t71D097F395AAEBB61A1B53E346F8D7082E0D12A6);
|
|
const Il2CppFullySharedGenericAny L_91 = alloca(SizeOf_T8_t6FF64D2DC7D6963A21288D8F81922380967FE443);
|
|
const Il2CppFullySharedGenericAny L_95 = alloca(SizeOf_T9_t6792DA14DBF03B6281913E84C4374067096CD808);
|
|
const Il2CppFullySharedGenericAny L_99 = alloca(SizeOf_T10_tDB177BD3DB176F3FCCD8CAC407E5F31DB73FD231);
|
|
const Il2CppFullySharedGenericAny L_103 = alloca(SizeOf_T11_tCBB38AED662F04AC88C96E84DE64872AB269818A);
|
|
const Il2CppFullySharedGenericAny L_107 = alloca(SizeOf_T12_t4BF10212B1F914159A0619A91704D6D8B8524600);
|
|
const Il2CppFullySharedGenericAny L_111 = alloca(SizeOf_T13_tF20E73BF2484DF831884A47A2B83A5F07C974CAB);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_0307;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_02a1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_013b;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0155;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_016f;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_018a;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_01a5;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01c0;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_01db;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_01f6;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0211;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_022c;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_0247;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_0262;
|
|
}
|
|
case 12:
|
|
{
|
|
goto IL_027d;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_0295;
|
|
}
|
|
|
|
IL_013b:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_tE4427130778C542E8CD9D17E219D58C383E75D9F);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_0155:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_t8DD813C31A5972428B3536FBF8111B70156DB264);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_016f:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_t7CF526C7A0DDA26236E47783245DCA557D174B5D);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_018a:
|
|
{
|
|
il2cpp_codegen_memcpy(L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg4 : &___5_arg4), SizeOf_T4_t6ACFE1E77E0CEFB0E116A94087E20D4BDEA9D2C6);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_76 = V_3;
|
|
int32_t L_77 = L_76.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_78 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_75: *(void**)L_75), L_77, L_78, _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_01a5:
|
|
{
|
|
il2cpp_codegen_memcpy(L_79, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___6_arg5 : &___6_arg5), SizeOf_T5_t291A6DA47206568D026CDEF27CCA579DA349253C);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_80 = V_3;
|
|
int32_t L_81 = L_80.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_82 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_79: *(void**)L_79), L_81, L_82, _stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_01c0:
|
|
{
|
|
il2cpp_codegen_memcpy(L_83, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___7_arg6 : &___7_arg6), SizeOf_T6_tC6099583335BA495EB04B8FE5B9AD69CB30DED36);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_84 = V_3;
|
|
int32_t L_85 = L_84.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_86 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_83: *(void**)L_83), L_85, L_86, _stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_01db:
|
|
{
|
|
il2cpp_codegen_memcpy(L_87, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___8_arg7 : &___8_arg7), SizeOf_T7_t71D097F395AAEBB61A1B53E346F8D7082E0D12A6);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_88 = V_3;
|
|
int32_t L_89 = L_88.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_90 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_87: *(void**)L_87), L_89, L_90, _stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_01f6:
|
|
{
|
|
il2cpp_codegen_memcpy(L_91, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? ___9_arg8 : &___9_arg8), SizeOf_T8_t6FF64D2DC7D6963A21288D8F81922380967FE443);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_92 = V_3;
|
|
int32_t L_93 = L_92.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_94 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_91: *(void**)L_91), L_93, L_94, _stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_0211:
|
|
{
|
|
il2cpp_codegen_memcpy(L_95, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? ___10_arg9 : &___10_arg9), SizeOf_T9_t6792DA14DBF03B6281913E84C4374067096CD808);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_96 = V_3;
|
|
int32_t L_97 = L_96.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_98 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? L_95: *(void**)L_95), L_97, L_98, _stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_022c:
|
|
{
|
|
il2cpp_codegen_memcpy(L_99, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? ___11_arg10 : &___11_arg10), SizeOf_T10_tDB177BD3DB176F3FCCD8CAC407E5F31DB73FD231);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_100 = V_3;
|
|
int32_t L_101 = L_100.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_102 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? L_99: *(void**)L_99), L_101, L_102, _stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_0247:
|
|
{
|
|
il2cpp_codegen_memcpy(L_103, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 20)) ? ___12_arg11 : &___12_arg11), SizeOf_T11_tCBB38AED662F04AC88C96E84DE64872AB269818A);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_104 = V_3;
|
|
int32_t L_105 = L_104.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_106 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 21)), il2cpp_rgctx_method(method->rgctx_data, 21), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 20)) ? L_103: *(void**)L_103), L_105, L_106, _stringLiteralE65C938B36DF53938C3DB40A7D8AE09A05ED61D9);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_0262:
|
|
{
|
|
il2cpp_codegen_memcpy(L_107, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 22)) ? ___13_arg12 : &___13_arg12), SizeOf_T12_t4BF10212B1F914159A0619A91704D6D8B8524600);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_108 = V_3;
|
|
int32_t L_109 = L_108.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_110 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 22)) ? L_107: *(void**)L_107), L_109, L_110, _stringLiteral83088F1068E2EA43519F1DC631CB4A130848670A);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_027d:
|
|
{
|
|
il2cpp_codegen_memcpy(L_111, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 24)) ? ___14_arg13 : &___14_arg13), SizeOf_T13_tF20E73BF2484DF831884A47A2B83A5F07C974CAB);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_112 = V_3;
|
|
int32_t L_113 = L_112.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_114 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 25)), il2cpp_rgctx_method(method->rgctx_data, 25), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 24)) ? L_111: *(void**)L_111), L_113, L_114, _stringLiteralFB177A61A98D4F6101A8CD435D326073935BF35D);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_0295:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_02a1:
|
|
{
|
|
Il2CppChar L_115 = V_2;
|
|
if ((!(((uint32_t)L_115) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0303;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_116 = V_1;
|
|
String_t* L_117 = ___1_format;
|
|
NullCheck(L_117);
|
|
int32_t L_118;
|
|
L_118 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_117, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_116, 1))) >= ((int32_t)L_118)))
|
|
{
|
|
goto IL_02fe;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_119 = ___1_format;
|
|
int32_t L_120 = V_1;
|
|
NullCheck(L_119);
|
|
Il2CppChar L_121;
|
|
L_121 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_119, ((int32_t)il2cpp_codegen_add(L_120, 1)), NULL);
|
|
if ((!(((uint32_t)L_121) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_02fe;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_122 = V_1;
|
|
int32_t L_123 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_122, L_123));
|
|
RuntimeObject* L_124 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_125 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_126 = V_12;
|
|
NullCheck(L_125);
|
|
int32_t L_127;
|
|
L_127 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_125, L_126);
|
|
NullCheck(L_124);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_128;
|
|
L_128 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_124, L_127);
|
|
V_13 = L_128;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_129 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_130 = ___1_format;
|
|
int32_t L_131 = V_0;
|
|
int32_t L_132 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_133;
|
|
L_133 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_130, L_131, L_132, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_134 = V_13;
|
|
NullCheck(L_129);
|
|
int32_t L_135;
|
|
L_135 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_129, L_133, L_134);
|
|
V_14 = L_135;
|
|
RuntimeObject* L_136 = ___0_bufferWriter;
|
|
int32_t L_137 = V_14;
|
|
NullCheck(L_136);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_136, L_137);
|
|
int32_t L_138 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_138, 1));
|
|
int32_t L_139 = V_1;
|
|
V_0 = L_139;
|
|
goto IL_0303;
|
|
}
|
|
|
|
IL_02fe:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_0303:
|
|
{
|
|
int32_t L_140 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_140, 1));
|
|
}
|
|
|
|
IL_0307:
|
|
{
|
|
int32_t L_141 = V_1;
|
|
String_t* L_142 = ___1_format;
|
|
NullCheck(L_142);
|
|
int32_t L_143;
|
|
L_143 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_142, NULL);
|
|
if ((((int32_t)L_141) < ((int32_t)L_143)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_144 = ___1_format;
|
|
NullCheck(L_144);
|
|
int32_t L_145;
|
|
L_145 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_144, NULL);
|
|
int32_t L_146 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_145, L_146));
|
|
int32_t L_147 = V_15;
|
|
if ((((int32_t)L_147) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0355;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_148 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_149 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_150 = V_15;
|
|
NullCheck(L_149);
|
|
int32_t L_151;
|
|
L_151 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_149, L_150);
|
|
NullCheck(L_148);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_152;
|
|
L_152 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_148, L_151);
|
|
V_16 = L_152;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_153 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_154 = ___1_format;
|
|
int32_t L_155 = V_0;
|
|
int32_t L_156 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_157;
|
|
L_157 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_154, L_155, L_156, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_158 = V_16;
|
|
NullCheck(L_153);
|
|
int32_t L_159;
|
|
L_159 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_153, L_157, L_158);
|
|
V_17 = L_159;
|
|
RuntimeObject* L_160 = ___0_bufferWriter;
|
|
int32_t L_161 = V_17;
|
|
NullCheck(L_160);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_160, L_161);
|
|
}
|
|
|
|
IL_0355:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m9E8019794652CB0EE55CFA1EE7DF222D737AF063_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, Il2CppFullySharedGenericAny ___5_arg4, Il2CppFullySharedGenericAny ___6_arg5, Il2CppFullySharedGenericAny ___7_arg6, Il2CppFullySharedGenericAny ___8_arg7, Il2CppFullySharedGenericAny ___9_arg8, Il2CppFullySharedGenericAny ___10_arg9, Il2CppFullySharedGenericAny ___11_arg10, Il2CppFullySharedGenericAny ___12_arg11, Il2CppFullySharedGenericAny ___13_arg12, Il2CppFullySharedGenericAny ___14_arg13, Il2CppFullySharedGenericAny ___15_arg14, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral256786EE327E637AAD0A04FC808B31A6B18120EA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83088F1068E2EA43519F1DC631CB4A130848670A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE65C938B36DF53938C3DB40A7D8AE09A05ED61D9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFB177A61A98D4F6101A8CD435D326073935BF35D);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tCEFB88AB029B2CA73A7FA320523E414F2A4CF943 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tF902236D7248D6CF9A192666E9D36815B2E461B5 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_tB8ACF05E479269C22015E35E4227E41BCD128A1E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T4_t0D65E8C6500E0C9D5AF9BDF6868B153EFC622F15 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T5_tE04C7BD6681635A1BDA51573E2F6BCBD0BC823A4 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T6_t3A408ED41F42E9657A2478FCFF2D724588388B00 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T7_tA2FF433E7227DEC72BAD7ED7BB23B4308B6B160F = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T8_t33A614D1CA5BFF32C0B94BEC933540EA7738F4D3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T9_t9F6DB79659A92B5EEFE614B95ABFEB27954BAB4A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T10_t264DF1EDFEB93011CCBBCB69F7007397E99ECF05 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const uint32_t SizeOf_T11_t9D54AB92F2CC2D2B72FA9F73666D2DBBE48A4754 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 20));
|
|
const uint32_t SizeOf_T12_t8E7378F812C9AF1B892569082DBE6B4F48D2ECDF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const uint32_t SizeOf_T13_t9C14AF84EB47D1F893F4BD0B170D5B4839E0CA17 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 24));
|
|
const uint32_t SizeOf_T14_tE25ACD2110EB68E0CFDD91B731348AA6616DCF81 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 26));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_tCEFB88AB029B2CA73A7FA320523E414F2A4CF943);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_tF902236D7248D6CF9A192666E9D36815B2E461B5);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_tB8ACF05E479269C22015E35E4227E41BCD128A1E);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T4_t0D65E8C6500E0C9D5AF9BDF6868B153EFC622F15);
|
|
const Il2CppFullySharedGenericAny L_79 = alloca(SizeOf_T5_tE04C7BD6681635A1BDA51573E2F6BCBD0BC823A4);
|
|
const Il2CppFullySharedGenericAny L_83 = alloca(SizeOf_T6_t3A408ED41F42E9657A2478FCFF2D724588388B00);
|
|
const Il2CppFullySharedGenericAny L_87 = alloca(SizeOf_T7_tA2FF433E7227DEC72BAD7ED7BB23B4308B6B160F);
|
|
const Il2CppFullySharedGenericAny L_91 = alloca(SizeOf_T8_t33A614D1CA5BFF32C0B94BEC933540EA7738F4D3);
|
|
const Il2CppFullySharedGenericAny L_95 = alloca(SizeOf_T9_t9F6DB79659A92B5EEFE614B95ABFEB27954BAB4A);
|
|
const Il2CppFullySharedGenericAny L_99 = alloca(SizeOf_T10_t264DF1EDFEB93011CCBBCB69F7007397E99ECF05);
|
|
const Il2CppFullySharedGenericAny L_103 = alloca(SizeOf_T11_t9D54AB92F2CC2D2B72FA9F73666D2DBBE48A4754);
|
|
const Il2CppFullySharedGenericAny L_107 = alloca(SizeOf_T12_t8E7378F812C9AF1B892569082DBE6B4F48D2ECDF);
|
|
const Il2CppFullySharedGenericAny L_111 = alloca(SizeOf_T13_t9C14AF84EB47D1F893F4BD0B170D5B4839E0CA17);
|
|
const Il2CppFullySharedGenericAny L_115 = alloca(SizeOf_T14_tE25ACD2110EB68E0CFDD91B731348AA6616DCF81);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_0326;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_02c0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_013f;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0159;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0173;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_01a9;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01c4;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_01df;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_01fa;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0215;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_0230;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_024b;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_0266;
|
|
}
|
|
case 12:
|
|
{
|
|
goto IL_0281;
|
|
}
|
|
case 13:
|
|
{
|
|
goto IL_029c;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_02b4;
|
|
}
|
|
|
|
IL_013f:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_tCEFB88AB029B2CA73A7FA320523E414F2A4CF943);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_0159:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_tF902236D7248D6CF9A192666E9D36815B2E461B5);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_0173:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_tB8ACF05E479269C22015E35E4227E41BCD128A1E);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
il2cpp_codegen_memcpy(L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg4 : &___5_arg4), SizeOf_T4_t0D65E8C6500E0C9D5AF9BDF6868B153EFC622F15);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_76 = V_3;
|
|
int32_t L_77 = L_76.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_78 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_75: *(void**)L_75), L_77, L_78, _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_01a9:
|
|
{
|
|
il2cpp_codegen_memcpy(L_79, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___6_arg5 : &___6_arg5), SizeOf_T5_tE04C7BD6681635A1BDA51573E2F6BCBD0BC823A4);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_80 = V_3;
|
|
int32_t L_81 = L_80.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_82 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_79: *(void**)L_79), L_81, L_82, _stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_01c4:
|
|
{
|
|
il2cpp_codegen_memcpy(L_83, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___7_arg6 : &___7_arg6), SizeOf_T6_t3A408ED41F42E9657A2478FCFF2D724588388B00);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_84 = V_3;
|
|
int32_t L_85 = L_84.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_86 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_83: *(void**)L_83), L_85, L_86, _stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_01df:
|
|
{
|
|
il2cpp_codegen_memcpy(L_87, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___8_arg7 : &___8_arg7), SizeOf_T7_tA2FF433E7227DEC72BAD7ED7BB23B4308B6B160F);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_88 = V_3;
|
|
int32_t L_89 = L_88.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_90 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_87: *(void**)L_87), L_89, L_90, _stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_01fa:
|
|
{
|
|
il2cpp_codegen_memcpy(L_91, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? ___9_arg8 : &___9_arg8), SizeOf_T8_t33A614D1CA5BFF32C0B94BEC933540EA7738F4D3);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_92 = V_3;
|
|
int32_t L_93 = L_92.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_94 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_91: *(void**)L_91), L_93, L_94, _stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_0215:
|
|
{
|
|
il2cpp_codegen_memcpy(L_95, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? ___10_arg9 : &___10_arg9), SizeOf_T9_t9F6DB79659A92B5EEFE614B95ABFEB27954BAB4A);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_96 = V_3;
|
|
int32_t L_97 = L_96.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_98 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? L_95: *(void**)L_95), L_97, L_98, _stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_0230:
|
|
{
|
|
il2cpp_codegen_memcpy(L_99, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? ___11_arg10 : &___11_arg10), SizeOf_T10_t264DF1EDFEB93011CCBBCB69F7007397E99ECF05);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_100 = V_3;
|
|
int32_t L_101 = L_100.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_102 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? L_99: *(void**)L_99), L_101, L_102, _stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_024b:
|
|
{
|
|
il2cpp_codegen_memcpy(L_103, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 20)) ? ___12_arg11 : &___12_arg11), SizeOf_T11_t9D54AB92F2CC2D2B72FA9F73666D2DBBE48A4754);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_104 = V_3;
|
|
int32_t L_105 = L_104.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_106 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 21)), il2cpp_rgctx_method(method->rgctx_data, 21), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 20)) ? L_103: *(void**)L_103), L_105, L_106, _stringLiteralE65C938B36DF53938C3DB40A7D8AE09A05ED61D9);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_0266:
|
|
{
|
|
il2cpp_codegen_memcpy(L_107, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 22)) ? ___13_arg12 : &___13_arg12), SizeOf_T12_t8E7378F812C9AF1B892569082DBE6B4F48D2ECDF);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_108 = V_3;
|
|
int32_t L_109 = L_108.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_110 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 22)) ? L_107: *(void**)L_107), L_109, L_110, _stringLiteral83088F1068E2EA43519F1DC631CB4A130848670A);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_0281:
|
|
{
|
|
il2cpp_codegen_memcpy(L_111, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 24)) ? ___14_arg13 : &___14_arg13), SizeOf_T13_t9C14AF84EB47D1F893F4BD0B170D5B4839E0CA17);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_112 = V_3;
|
|
int32_t L_113 = L_112.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_114 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 25)), il2cpp_rgctx_method(method->rgctx_data, 25), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 24)) ? L_111: *(void**)L_111), L_113, L_114, _stringLiteralFB177A61A98D4F6101A8CD435D326073935BF35D);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_029c:
|
|
{
|
|
il2cpp_codegen_memcpy(L_115, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 26)) ? ___15_arg14 : &___15_arg14), SizeOf_T14_tE25ACD2110EB68E0CFDD91B731348AA6616DCF81);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_116 = V_3;
|
|
int32_t L_117 = L_116.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_118 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 27)), il2cpp_rgctx_method(method->rgctx_data, 27), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 26)) ? L_115: *(void**)L_115), L_117, L_118, _stringLiteral256786EE327E637AAD0A04FC808B31A6B18120EA);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_02b4:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_02c0:
|
|
{
|
|
Il2CppChar L_119 = V_2;
|
|
if ((!(((uint32_t)L_119) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0322;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_120 = V_1;
|
|
String_t* L_121 = ___1_format;
|
|
NullCheck(L_121);
|
|
int32_t L_122;
|
|
L_122 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_121, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_120, 1))) >= ((int32_t)L_122)))
|
|
{
|
|
goto IL_031d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_123 = ___1_format;
|
|
int32_t L_124 = V_1;
|
|
NullCheck(L_123);
|
|
Il2CppChar L_125;
|
|
L_125 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_123, ((int32_t)il2cpp_codegen_add(L_124, 1)), NULL);
|
|
if ((!(((uint32_t)L_125) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_031d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_126 = V_1;
|
|
int32_t L_127 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_126, L_127));
|
|
RuntimeObject* L_128 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_129 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_130 = V_12;
|
|
NullCheck(L_129);
|
|
int32_t L_131;
|
|
L_131 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_129, L_130);
|
|
NullCheck(L_128);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_132;
|
|
L_132 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_128, L_131);
|
|
V_13 = L_132;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_133 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_134 = ___1_format;
|
|
int32_t L_135 = V_0;
|
|
int32_t L_136 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_137;
|
|
L_137 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_134, L_135, L_136, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_138 = V_13;
|
|
NullCheck(L_133);
|
|
int32_t L_139;
|
|
L_139 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_133, L_137, L_138);
|
|
V_14 = L_139;
|
|
RuntimeObject* L_140 = ___0_bufferWriter;
|
|
int32_t L_141 = V_14;
|
|
NullCheck(L_140);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_140, L_141);
|
|
int32_t L_142 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_142, 1));
|
|
int32_t L_143 = V_1;
|
|
V_0 = L_143;
|
|
goto IL_0322;
|
|
}
|
|
|
|
IL_031d:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_0322:
|
|
{
|
|
int32_t L_144 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_144, 1));
|
|
}
|
|
|
|
IL_0326:
|
|
{
|
|
int32_t L_145 = V_1;
|
|
String_t* L_146 = ___1_format;
|
|
NullCheck(L_146);
|
|
int32_t L_147;
|
|
L_147 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_146, NULL);
|
|
if ((((int32_t)L_145) < ((int32_t)L_147)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_148 = ___1_format;
|
|
NullCheck(L_148);
|
|
int32_t L_149;
|
|
L_149 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_148, NULL);
|
|
int32_t L_150 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_149, L_150));
|
|
int32_t L_151 = V_15;
|
|
if ((((int32_t)L_151) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0374;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_152 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_153 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_154 = V_15;
|
|
NullCheck(L_153);
|
|
int32_t L_155;
|
|
L_155 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_153, L_154);
|
|
NullCheck(L_152);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_156;
|
|
L_156 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_152, L_155);
|
|
V_16 = L_156;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_157 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_158 = ___1_format;
|
|
int32_t L_159 = V_0;
|
|
int32_t L_160 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_161;
|
|
L_161 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_158, L_159, L_160, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_162 = V_16;
|
|
NullCheck(L_157);
|
|
int32_t L_163;
|
|
L_163 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_157, L_161, L_162);
|
|
V_17 = L_163;
|
|
RuntimeObject* L_164 = ___0_bufferWriter;
|
|
int32_t L_165 = V_17;
|
|
NullCheck(L_164);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_164, L_165);
|
|
}
|
|
|
|
IL_0374:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_mF419FFAAE71016A94AEF4BC3C047BA1CB0CFE38C_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, Il2CppFullySharedGenericAny ___5_arg4, Il2CppFullySharedGenericAny ___6_arg5, Il2CppFullySharedGenericAny ___7_arg6, Il2CppFullySharedGenericAny ___8_arg7, Il2CppFullySharedGenericAny ___9_arg8, Il2CppFullySharedGenericAny ___10_arg9, Il2CppFullySharedGenericAny ___11_arg10, Il2CppFullySharedGenericAny ___12_arg11, Il2CppFullySharedGenericAny ___13_arg12, Il2CppFullySharedGenericAny ___14_arg13, Il2CppFullySharedGenericAny ___15_arg14, Il2CppFullySharedGenericAny ___16_arg15, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral256786EE327E637AAD0A04FC808B31A6B18120EA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33338DE87F2A029DA9317ECF1A93AF158A060E36);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83088F1068E2EA43519F1DC631CB4A130848670A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE65C938B36DF53938C3DB40A7D8AE09A05ED61D9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFB177A61A98D4F6101A8CD435D326073935BF35D);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_tFD7DE88AEB0BA842D38FD5C89D1AF3F54BA567DD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_t333748F927B64DA41204E6D655F3EF9ACB7DDE92 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_tB0FA2CECDA6D73CD17BF0C7578467C141BC28956 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T4_t980B330B1DFF9F1A9348316E53E95D1B651C1BE2 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T5_tCF8304079A8F67365922F83B15EC2056D8897068 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T6_tB029B1CB79FAF7F13A0BBEA01FA1FD75C89C3280 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T7_t5B739CE3A67B9AE6BE9A59D1CCD2E7D72AC62FBF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T8_t4F159F83808186A61BB2FA8C220F47EE7CA673BA = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T9_t8501CA68014BB9C43E2600510900A362CC6D4106 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T10_tCDAEA18ACC5E72699635E200F24E88332CE1702C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const uint32_t SizeOf_T11_t1DD89F55379422624BCB0125DF8749E8A0B3002D = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 20));
|
|
const uint32_t SizeOf_T12_tBC062B08C9DD02A7F4EDCA1EBD57325E4A4CFEB9 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const uint32_t SizeOf_T13_t9605B38A1286A39E2F785F957FC7405C432472FD = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 24));
|
|
const uint32_t SizeOf_T14_tE7A4007FB17FC0B6F23F8E6F139116C561225760 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 26));
|
|
const uint32_t SizeOf_T15_tC5B59EEB81B2D828B9F24B2ABF056D6B103A58F6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 28));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_tFD7DE88AEB0BA842D38FD5C89D1AF3F54BA567DD);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_t333748F927B64DA41204E6D655F3EF9ACB7DDE92);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_tB0FA2CECDA6D73CD17BF0C7578467C141BC28956);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T4_t980B330B1DFF9F1A9348316E53E95D1B651C1BE2);
|
|
const Il2CppFullySharedGenericAny L_79 = alloca(SizeOf_T5_tCF8304079A8F67365922F83B15EC2056D8897068);
|
|
const Il2CppFullySharedGenericAny L_83 = alloca(SizeOf_T6_tB029B1CB79FAF7F13A0BBEA01FA1FD75C89C3280);
|
|
const Il2CppFullySharedGenericAny L_87 = alloca(SizeOf_T7_t5B739CE3A67B9AE6BE9A59D1CCD2E7D72AC62FBF);
|
|
const Il2CppFullySharedGenericAny L_91 = alloca(SizeOf_T8_t4F159F83808186A61BB2FA8C220F47EE7CA673BA);
|
|
const Il2CppFullySharedGenericAny L_95 = alloca(SizeOf_T9_t8501CA68014BB9C43E2600510900A362CC6D4106);
|
|
const Il2CppFullySharedGenericAny L_99 = alloca(SizeOf_T10_tCDAEA18ACC5E72699635E200F24E88332CE1702C);
|
|
const Il2CppFullySharedGenericAny L_103 = alloca(SizeOf_T11_t1DD89F55379422624BCB0125DF8749E8A0B3002D);
|
|
const Il2CppFullySharedGenericAny L_107 = alloca(SizeOf_T12_tBC062B08C9DD02A7F4EDCA1EBD57325E4A4CFEB9);
|
|
const Il2CppFullySharedGenericAny L_111 = alloca(SizeOf_T13_t9605B38A1286A39E2F785F957FC7405C432472FD);
|
|
const Il2CppFullySharedGenericAny L_115 = alloca(SizeOf_T14_tE7A4007FB17FC0B6F23F8E6F139116C561225760);
|
|
const Il2CppFullySharedGenericAny L_119 = alloca(SizeOf_T15_tC5B59EEB81B2D828B9F24B2ABF056D6B103A58F6);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_0345;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_02df;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0143;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_015d;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_0177;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0192;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_01ad;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01c8;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_01e3;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_01fe;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_0219;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_0234;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_024f;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_026a;
|
|
}
|
|
case 12:
|
|
{
|
|
goto IL_0285;
|
|
}
|
|
case 13:
|
|
{
|
|
goto IL_02a0;
|
|
}
|
|
case 14:
|
|
{
|
|
goto IL_02bb;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_02d3;
|
|
}
|
|
|
|
IL_0143:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_tFD7DE88AEB0BA842D38FD5C89D1AF3F54BA567DD);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_015d:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_t333748F927B64DA41204E6D655F3EF9ACB7DDE92);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_0177:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_tB0FA2CECDA6D73CD17BF0C7578467C141BC28956);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_0192:
|
|
{
|
|
il2cpp_codegen_memcpy(L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg4 : &___5_arg4), SizeOf_T4_t980B330B1DFF9F1A9348316E53E95D1B651C1BE2);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_76 = V_3;
|
|
int32_t L_77 = L_76.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_78 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_75: *(void**)L_75), L_77, L_78, _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_01ad:
|
|
{
|
|
il2cpp_codegen_memcpy(L_79, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___6_arg5 : &___6_arg5), SizeOf_T5_tCF8304079A8F67365922F83B15EC2056D8897068);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_80 = V_3;
|
|
int32_t L_81 = L_80.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_82 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_79: *(void**)L_79), L_81, L_82, _stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_01c8:
|
|
{
|
|
il2cpp_codegen_memcpy(L_83, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___7_arg6 : &___7_arg6), SizeOf_T6_tB029B1CB79FAF7F13A0BBEA01FA1FD75C89C3280);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_84 = V_3;
|
|
int32_t L_85 = L_84.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_86 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_83: *(void**)L_83), L_85, L_86, _stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_01e3:
|
|
{
|
|
il2cpp_codegen_memcpy(L_87, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___8_arg7 : &___8_arg7), SizeOf_T7_t5B739CE3A67B9AE6BE9A59D1CCD2E7D72AC62FBF);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_88 = V_3;
|
|
int32_t L_89 = L_88.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_90 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_87: *(void**)L_87), L_89, L_90, _stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_01fe:
|
|
{
|
|
il2cpp_codegen_memcpy(L_91, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? ___9_arg8 : &___9_arg8), SizeOf_T8_t4F159F83808186A61BB2FA8C220F47EE7CA673BA);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_92 = V_3;
|
|
int32_t L_93 = L_92.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_94 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_91: *(void**)L_91), L_93, L_94, _stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_0219:
|
|
{
|
|
il2cpp_codegen_memcpy(L_95, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? ___10_arg9 : &___10_arg9), SizeOf_T9_t8501CA68014BB9C43E2600510900A362CC6D4106);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_96 = V_3;
|
|
int32_t L_97 = L_96.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_98 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? L_95: *(void**)L_95), L_97, L_98, _stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_0234:
|
|
{
|
|
il2cpp_codegen_memcpy(L_99, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? ___11_arg10 : &___11_arg10), SizeOf_T10_tCDAEA18ACC5E72699635E200F24E88332CE1702C);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_100 = V_3;
|
|
int32_t L_101 = L_100.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_102 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? L_99: *(void**)L_99), L_101, L_102, _stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_024f:
|
|
{
|
|
il2cpp_codegen_memcpy(L_103, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 20)) ? ___12_arg11 : &___12_arg11), SizeOf_T11_t1DD89F55379422624BCB0125DF8749E8A0B3002D);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_104 = V_3;
|
|
int32_t L_105 = L_104.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_106 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 21)), il2cpp_rgctx_method(method->rgctx_data, 21), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 20)) ? L_103: *(void**)L_103), L_105, L_106, _stringLiteralE65C938B36DF53938C3DB40A7D8AE09A05ED61D9);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_026a:
|
|
{
|
|
il2cpp_codegen_memcpy(L_107, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 22)) ? ___13_arg12 : &___13_arg12), SizeOf_T12_tBC062B08C9DD02A7F4EDCA1EBD57325E4A4CFEB9);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_108 = V_3;
|
|
int32_t L_109 = L_108.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_110 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 22)) ? L_107: *(void**)L_107), L_109, L_110, _stringLiteral83088F1068E2EA43519F1DC631CB4A130848670A);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_0285:
|
|
{
|
|
il2cpp_codegen_memcpy(L_111, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 24)) ? ___14_arg13 : &___14_arg13), SizeOf_T13_t9605B38A1286A39E2F785F957FC7405C432472FD);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_112 = V_3;
|
|
int32_t L_113 = L_112.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_114 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 25)), il2cpp_rgctx_method(method->rgctx_data, 25), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 24)) ? L_111: *(void**)L_111), L_113, L_114, _stringLiteralFB177A61A98D4F6101A8CD435D326073935BF35D);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_02a0:
|
|
{
|
|
il2cpp_codegen_memcpy(L_115, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 26)) ? ___15_arg14 : &___15_arg14), SizeOf_T14_tE7A4007FB17FC0B6F23F8E6F139116C561225760);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_116 = V_3;
|
|
int32_t L_117 = L_116.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_118 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 27)), il2cpp_rgctx_method(method->rgctx_data, 27), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 26)) ? L_115: *(void**)L_115), L_117, L_118, _stringLiteral256786EE327E637AAD0A04FC808B31A6B18120EA);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_02bb:
|
|
{
|
|
il2cpp_codegen_memcpy(L_119, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 28)) ? ___16_arg15 : &___16_arg15), SizeOf_T15_tC5B59EEB81B2D828B9F24B2ABF056D6B103A58F6);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_120 = V_3;
|
|
int32_t L_121 = L_120.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_122 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 29)), il2cpp_rgctx_method(method->rgctx_data, 29), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 28)) ? L_119: *(void**)L_119), L_121, L_122, _stringLiteral33338DE87F2A029DA9317ECF1A93AF158A060E36);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_02d3:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_02df:
|
|
{
|
|
Il2CppChar L_123 = V_2;
|
|
if ((!(((uint32_t)L_123) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0341;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_124 = V_1;
|
|
String_t* L_125 = ___1_format;
|
|
NullCheck(L_125);
|
|
int32_t L_126;
|
|
L_126 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_125, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_124, 1))) >= ((int32_t)L_126)))
|
|
{
|
|
goto IL_033c;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_127 = ___1_format;
|
|
int32_t L_128 = V_1;
|
|
NullCheck(L_127);
|
|
Il2CppChar L_129;
|
|
L_129 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_127, ((int32_t)il2cpp_codegen_add(L_128, 1)), NULL);
|
|
if ((!(((uint32_t)L_129) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_033c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_130 = V_1;
|
|
int32_t L_131 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_130, L_131));
|
|
RuntimeObject* L_132 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_133 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_134 = V_12;
|
|
NullCheck(L_133);
|
|
int32_t L_135;
|
|
L_135 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_133, L_134);
|
|
NullCheck(L_132);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_136;
|
|
L_136 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_132, L_135);
|
|
V_13 = L_136;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_137 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_138 = ___1_format;
|
|
int32_t L_139 = V_0;
|
|
int32_t L_140 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_141;
|
|
L_141 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_138, L_139, L_140, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_142 = V_13;
|
|
NullCheck(L_137);
|
|
int32_t L_143;
|
|
L_143 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_137, L_141, L_142);
|
|
V_14 = L_143;
|
|
RuntimeObject* L_144 = ___0_bufferWriter;
|
|
int32_t L_145 = V_14;
|
|
NullCheck(L_144);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_144, L_145);
|
|
int32_t L_146 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_146, 1));
|
|
int32_t L_147 = V_1;
|
|
V_0 = L_147;
|
|
goto IL_0341;
|
|
}
|
|
|
|
IL_033c:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_0341:
|
|
{
|
|
int32_t L_148 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_148, 1));
|
|
}
|
|
|
|
IL_0345:
|
|
{
|
|
int32_t L_149 = V_1;
|
|
String_t* L_150 = ___1_format;
|
|
NullCheck(L_150);
|
|
int32_t L_151;
|
|
L_151 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_150, NULL);
|
|
if ((((int32_t)L_149) < ((int32_t)L_151)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_152 = ___1_format;
|
|
NullCheck(L_152);
|
|
int32_t L_153;
|
|
L_153 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_152, NULL);
|
|
int32_t L_154 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_153, L_154));
|
|
int32_t L_155 = V_15;
|
|
if ((((int32_t)L_155) <= ((int32_t)0)))
|
|
{
|
|
goto IL_0393;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_156 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_157 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_158 = V_15;
|
|
NullCheck(L_157);
|
|
int32_t L_159;
|
|
L_159 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_157, L_158);
|
|
NullCheck(L_156);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_160;
|
|
L_160 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_156, L_159);
|
|
V_16 = L_160;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_161 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_162 = ___1_format;
|
|
int32_t L_163 = V_0;
|
|
int32_t L_164 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_165;
|
|
L_165 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_162, L_163, L_164, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_166 = V_16;
|
|
NullCheck(L_161);
|
|
int32_t L_167;
|
|
L_167 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_161, L_165, L_166);
|
|
V_17 = L_167;
|
|
RuntimeObject* L_168 = ___0_bufferWriter;
|
|
int32_t L_169 = V_17;
|
|
NullCheck(L_168);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_168, L_169);
|
|
}
|
|
|
|
IL_0393:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ZString_Utf8Format_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_TisIl2CppFullySharedGenericAny_m40F9FD57994196C8D12780596B443A045A60E01D_gshared (RuntimeObject* ___0_bufferWriter, String_t* ___1_format, Il2CppFullySharedGenericAny ___2_arg1, Il2CppFullySharedGenericAny ___3_arg2, Il2CppFullySharedGenericAny ___4_arg3, Il2CppFullySharedGenericAny ___5_arg4, Il2CppFullySharedGenericAny ___6_arg5, Il2CppFullySharedGenericAny ___7_arg6, Il2CppFullySharedGenericAny ___8_arg7, Il2CppFullySharedGenericAny ___9_arg8, Il2CppFullySharedGenericAny ___10_arg9, Il2CppFullySharedGenericAny ___11_arg10, Il2CppFullySharedGenericAny ___12_arg11, Il2CppFullySharedGenericAny ___13_arg12, Il2CppFullySharedGenericAny ___14_arg13, Il2CppFullySharedGenericAny ___15_arg14, Il2CppFullySharedGenericAny ___16_arg15, Il2CppFullySharedGenericAny ___17_arg16, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral256786EE327E637AAD0A04FC808B31A6B18120EA);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33338DE87F2A029DA9317ECF1A93AF158A060E36);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3B69DC5123902CCEB5F543CC8C90A7804B54259A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83088F1068E2EA43519F1DC631CB4A130848670A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE65C938B36DF53938C3DB40A7D8AE09A05ED61D9);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFB177A61A98D4F6101A8CD435D326073935BF35D);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
const uint32_t SizeOf_T1_t9C5DB1FCAB815E1133054728398B1BE52B4CB12C = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 0));
|
|
const uint32_t SizeOf_T2_tC95F8F25A2CD114541391C6719E39A6146437C96 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 2));
|
|
const uint32_t SizeOf_T3_tFF674A501E663F81CD832DC88AD2B2CB6D44B132 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 4));
|
|
const uint32_t SizeOf_T4_tA093AA48853D8F7468CFC79F1B44A84DF060E742 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 6));
|
|
const uint32_t SizeOf_T5_t7098343EDFCD544A1063CDC011D809119BC46BE3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 8));
|
|
const uint32_t SizeOf_T6_t9CCCA387F4A0AB98293FB064E9569568C1170E4E = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 10));
|
|
const uint32_t SizeOf_T7_t8D7DE77B9C5DD8A3405741CFDD2888D2E95351C8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 12));
|
|
const uint32_t SizeOf_T8_t080880C2DD384C960C43656F88EC87A455C197D6 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 14));
|
|
const uint32_t SizeOf_T9_tD23475B36C025DB6D2224C0D353E5D1123120488 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 16));
|
|
const uint32_t SizeOf_T10_t8E3A955CD221FC831AF9FDEF2B2C69992D52B871 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 18));
|
|
const uint32_t SizeOf_T11_t6B9BB9AA62CCAF9F2390C9FB5A6AF300B3F5AF3A = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 20));
|
|
const uint32_t SizeOf_T12_t0FABB1CFFCA1C28C4E5B56820F6A005080B8A3EF = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 22));
|
|
const uint32_t SizeOf_T13_t7576D7D7FC7A49180C681303274FF7F669BC63E3 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 24));
|
|
const uint32_t SizeOf_T14_t2A794BBAB35A700524640031C421BCEE33D28608 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 26));
|
|
const uint32_t SizeOf_T15_tC856CA6FD173A7968E8D2ED2CF4553315D25E572 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 28));
|
|
const uint32_t SizeOf_T16_t79D80A2097EF9A3389D7BEBDAC70E6034203EB32 = il2cpp_codegen_sizeof(il2cpp_rgctx_data_no_init(method->rgctx_data, 30));
|
|
const Il2CppFullySharedGenericAny L_63 = alloca(SizeOf_T1_t9C5DB1FCAB815E1133054728398B1BE52B4CB12C);
|
|
const Il2CppFullySharedGenericAny L_67 = alloca(SizeOf_T2_tC95F8F25A2CD114541391C6719E39A6146437C96);
|
|
const Il2CppFullySharedGenericAny L_71 = alloca(SizeOf_T3_tFF674A501E663F81CD832DC88AD2B2CB6D44B132);
|
|
const Il2CppFullySharedGenericAny L_75 = alloca(SizeOf_T4_tA093AA48853D8F7468CFC79F1B44A84DF060E742);
|
|
const Il2CppFullySharedGenericAny L_79 = alloca(SizeOf_T5_t7098343EDFCD544A1063CDC011D809119BC46BE3);
|
|
const Il2CppFullySharedGenericAny L_83 = alloca(SizeOf_T6_t9CCCA387F4A0AB98293FB064E9569568C1170E4E);
|
|
const Il2CppFullySharedGenericAny L_87 = alloca(SizeOf_T7_t8D7DE77B9C5DD8A3405741CFDD2888D2E95351C8);
|
|
const Il2CppFullySharedGenericAny L_91 = alloca(SizeOf_T8_t080880C2DD384C960C43656F88EC87A455C197D6);
|
|
const Il2CppFullySharedGenericAny L_95 = alloca(SizeOf_T9_tD23475B36C025DB6D2224C0D353E5D1123120488);
|
|
const Il2CppFullySharedGenericAny L_99 = alloca(SizeOf_T10_t8E3A955CD221FC831AF9FDEF2B2C69992D52B871);
|
|
const Il2CppFullySharedGenericAny L_103 = alloca(SizeOf_T11_t6B9BB9AA62CCAF9F2390C9FB5A6AF300B3F5AF3A);
|
|
const Il2CppFullySharedGenericAny L_107 = alloca(SizeOf_T12_t0FABB1CFFCA1C28C4E5B56820F6A005080B8A3EF);
|
|
const Il2CppFullySharedGenericAny L_111 = alloca(SizeOf_T13_t7576D7D7FC7A49180C681303274FF7F669BC63E3);
|
|
const Il2CppFullySharedGenericAny L_115 = alloca(SizeOf_T14_t2A794BBAB35A700524640031C421BCEE33D28608);
|
|
const Il2CppFullySharedGenericAny L_119 = alloca(SizeOf_T15_tC856CA6FD173A7968E8D2ED2CF4553315D25E572);
|
|
const Il2CppFullySharedGenericAny L_123 = alloca(SizeOf_T16_t79D80A2097EF9A3389D7BEBDAC70E6034203EB32);
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
Il2CppChar V_2 = 0x0;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_9;
|
|
memset((&V_9), 0, sizeof(V_9));
|
|
int32_t V_10 = 0;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_13;
|
|
memset((&V_13), 0, sizeof(V_13));
|
|
int32_t V_14 = 0;
|
|
int32_t V_15 = 0;
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 V_16;
|
|
memset((&V_16), 0, sizeof(V_16));
|
|
int32_t V_17 = 0;
|
|
{
|
|
String_t* L_0 = ___1_format;
|
|
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*)&_stringLiteral75C9716749EA210206E3467390B7A11F3F33DDFA)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, method);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
V_0 = 0;
|
|
V_1 = 0;
|
|
goto IL_0364;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
String_t* L_2 = ___1_format;
|
|
int32_t L_3 = V_1;
|
|
NullCheck(L_2);
|
|
Il2CppChar L_4;
|
|
L_4 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_2, L_3, NULL);
|
|
V_2 = L_4;
|
|
Il2CppChar L_5 = V_2;
|
|
if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_02fe;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_6 = V_1;
|
|
String_t* L_7 = ___1_format;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_7, NULL);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_8, 1))))))
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B* L_9 = (FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&FormatException_tCD210E92627903FFEDAAA706C08FB6222B4D012B_il2cpp_TypeInfo_var)));
|
|
FormatException__ctor_mE04AEA59C0EEFF4BD34B7CE8601F9D331D1D473E(L_9, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAE01B88F41754E12B7A6C516CA384305713ED601)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, method);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
String_t* L_11 = ___1_format;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_11, NULL);
|
|
if ((((int32_t)L_10) == ((int32_t)L_12)))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = ___1_format;
|
|
int32_t L_14 = V_1;
|
|
NullCheck(L_13);
|
|
Il2CppChar L_15;
|
|
L_15 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_13, ((int32_t)il2cpp_codegen_add(L_14, 1)), NULL);
|
|
if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_0096;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16 = V_1;
|
|
int32_t L_17 = V_0;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_16, L_17));
|
|
RuntimeObject* L_18 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_19 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_20 = V_5;
|
|
NullCheck(L_19);
|
|
int32_t L_21;
|
|
L_21 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_19, L_20);
|
|
NullCheck(L_18);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_22;
|
|
L_22 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_18, L_21);
|
|
V_6 = L_22;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_23 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_24 = ___1_format;
|
|
int32_t L_25 = V_0;
|
|
int32_t L_26 = V_5;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_27;
|
|
L_27 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_24, L_25, L_26, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_28 = V_6;
|
|
NullCheck(L_23);
|
|
int32_t L_29;
|
|
L_29 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_23, L_27, L_28);
|
|
V_7 = L_29;
|
|
RuntimeObject* L_30 = ___0_bufferWriter;
|
|
int32_t L_31 = V_7;
|
|
NullCheck(L_30);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_30, L_31);
|
|
int32_t L_32 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_32, 1));
|
|
int32_t L_33 = V_1;
|
|
V_0 = L_33;
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_0096:
|
|
{
|
|
int32_t L_34 = V_1;
|
|
int32_t L_35 = V_0;
|
|
V_8 = ((int32_t)il2cpp_codegen_subtract(L_34, L_35));
|
|
RuntimeObject* L_36 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_37 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_38 = V_8;
|
|
NullCheck(L_37);
|
|
int32_t L_39;
|
|
L_39 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_37, L_38);
|
|
NullCheck(L_36);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_40;
|
|
L_40 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_36, L_39);
|
|
V_9 = L_40;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_41 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_42 = ___1_format;
|
|
int32_t L_43 = V_0;
|
|
int32_t L_44 = V_8;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_45;
|
|
L_45 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_42, L_43, L_44, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_46 = V_9;
|
|
NullCheck(L_41);
|
|
int32_t L_47;
|
|
L_47 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_41, L_45, L_46);
|
|
V_10 = L_47;
|
|
RuntimeObject* L_48 = ___0_bufferWriter;
|
|
int32_t L_49 = V_10;
|
|
NullCheck(L_48);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_48, L_49);
|
|
String_t* L_50 = ___1_format;
|
|
int32_t L_51 = V_1;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_52;
|
|
L_52 = FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline(L_50, L_51, NULL);
|
|
V_3 = L_52;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_53 = V_3;
|
|
int32_t L_54 = L_53.___LastIndex;
|
|
V_0 = L_54;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_55 = V_3;
|
|
int32_t L_56 = L_55.___LastIndex;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_56, 1));
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_57 = V_3;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_58 = L_57.___FormatString;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_59;
|
|
L_59 = StandardFormat_Parse_m5C0D49A90E9266AF28929B12E44A1A402A629159(L_58, NULL);
|
|
V_4 = L_59;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_60 = V_3;
|
|
int32_t L_61 = L_60.___Index;
|
|
V_11 = L_61;
|
|
int32_t L_62 = V_11;
|
|
switch (L_62)
|
|
{
|
|
case 0:
|
|
{
|
|
goto IL_0147;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_017b;
|
|
}
|
|
case 3:
|
|
{
|
|
goto IL_0196;
|
|
}
|
|
case 4:
|
|
{
|
|
goto IL_01b1;
|
|
}
|
|
case 5:
|
|
{
|
|
goto IL_01cc;
|
|
}
|
|
case 6:
|
|
{
|
|
goto IL_01e7;
|
|
}
|
|
case 7:
|
|
{
|
|
goto IL_0202;
|
|
}
|
|
case 8:
|
|
{
|
|
goto IL_021d;
|
|
}
|
|
case 9:
|
|
{
|
|
goto IL_0238;
|
|
}
|
|
case 10:
|
|
{
|
|
goto IL_0253;
|
|
}
|
|
case 11:
|
|
{
|
|
goto IL_026e;
|
|
}
|
|
case 12:
|
|
{
|
|
goto IL_0289;
|
|
}
|
|
case 13:
|
|
{
|
|
goto IL_02a4;
|
|
}
|
|
case 14:
|
|
{
|
|
goto IL_02bf;
|
|
}
|
|
case 15:
|
|
{
|
|
goto IL_02da;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_02f2;
|
|
}
|
|
|
|
IL_0147:
|
|
{
|
|
il2cpp_codegen_memcpy(L_63, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? ___2_arg1 : &___2_arg1), SizeOf_T1_t9C5DB1FCAB815E1133054728398B1BE52B4CB12C);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_64 = V_3;
|
|
int32_t L_65 = L_64.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_66 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 1)), il2cpp_rgctx_method(method->rgctx_data, 1), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 0)) ? L_63: *(void**)L_63), L_65, L_66, _stringLiteralE5D28023E4DEDEB299411AB0D47A4CC790C9A657);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_0161:
|
|
{
|
|
il2cpp_codegen_memcpy(L_67, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? ___3_arg2 : &___3_arg2), SizeOf_T2_tC95F8F25A2CD114541391C6719E39A6146437C96);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_68 = V_3;
|
|
int32_t L_69 = L_68.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_70 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 3)), il2cpp_rgctx_method(method->rgctx_data, 3), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 2)) ? L_67: *(void**)L_67), L_69, L_70, _stringLiteralF4CBDB868B9B52BE880F247575047F1D295BE544);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_017b:
|
|
{
|
|
il2cpp_codegen_memcpy(L_71, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? ___4_arg3 : &___4_arg3), SizeOf_T3_tFF674A501E663F81CD832DC88AD2B2CB6D44B132);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_72 = V_3;
|
|
int32_t L_73 = L_72.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_74 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 5)), il2cpp_rgctx_method(method->rgctx_data, 5), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 4)) ? L_71: *(void**)L_71), L_73, L_74, _stringLiteralBF6B8A8B78E4B12B5765D5FE4217D5883FDFC73D);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_0196:
|
|
{
|
|
il2cpp_codegen_memcpy(L_75, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? ___5_arg4 : &___5_arg4), SizeOf_T4_tA093AA48853D8F7468CFC79F1B44A84DF060E742);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_76 = V_3;
|
|
int32_t L_77 = L_76.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_78 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 7)), il2cpp_rgctx_method(method->rgctx_data, 7), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 6)) ? L_75: *(void**)L_75), L_77, L_78, _stringLiteral7083F43578417B8D1EDDD30A745209CCC81E38B2);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_01b1:
|
|
{
|
|
il2cpp_codegen_memcpy(L_79, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? ___6_arg5 : &___6_arg5), SizeOf_T5_t7098343EDFCD544A1063CDC011D809119BC46BE3);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_80 = V_3;
|
|
int32_t L_81 = L_80.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_82 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 9)), il2cpp_rgctx_method(method->rgctx_data, 9), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 8)) ? L_79: *(void**)L_79), L_81, L_82, _stringLiteral27E787A21AE84475294456A823ACEB4C434F9F3E);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_01cc:
|
|
{
|
|
il2cpp_codegen_memcpy(L_83, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? ___7_arg6 : &___7_arg6), SizeOf_T6_t9CCCA387F4A0AB98293FB064E9569568C1170E4E);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_84 = V_3;
|
|
int32_t L_85 = L_84.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_86 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 11)), il2cpp_rgctx_method(method->rgctx_data, 11), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 10)) ? L_83: *(void**)L_83), L_85, L_86, _stringLiteral33F097C31CDF245DBAC4C776C3AC2EEDD98FC609);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_01e7:
|
|
{
|
|
il2cpp_codegen_memcpy(L_87, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? ___8_arg7 : &___8_arg7), SizeOf_T7_t8D7DE77B9C5DD8A3405741CFDD2888D2E95351C8);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_88 = V_3;
|
|
int32_t L_89 = L_88.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_90 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 13)), il2cpp_rgctx_method(method->rgctx_data, 13), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 12)) ? L_87: *(void**)L_87), L_89, L_90, _stringLiteral4CD8FFF53B280BB2B5DACE453313518D3AAF884C);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_0202:
|
|
{
|
|
il2cpp_codegen_memcpy(L_91, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? ___9_arg8 : &___9_arg8), SizeOf_T8_t080880C2DD384C960C43656F88EC87A455C197D6);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_92 = V_3;
|
|
int32_t L_93 = L_92.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_94 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 15)), il2cpp_rgctx_method(method->rgctx_data, 15), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 14)) ? L_91: *(void**)L_91), L_93, L_94, _stringLiteral4FD0393EFB52B4DB1340AA3174FB8ECBCBE90E27);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_021d:
|
|
{
|
|
il2cpp_codegen_memcpy(L_95, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? ___10_arg9 : &___10_arg9), SizeOf_T9_tD23475B36C025DB6D2224C0D353E5D1123120488);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_96 = V_3;
|
|
int32_t L_97 = L_96.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_98 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 17)), il2cpp_rgctx_method(method->rgctx_data, 17), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 16)) ? L_95: *(void**)L_95), L_97, L_98, _stringLiteral94C9109982CE682547D593C8CAAA36C48F7678A0);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_0238:
|
|
{
|
|
il2cpp_codegen_memcpy(L_99, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? ___11_arg10 : &___11_arg10), SizeOf_T10_t8E3A955CD221FC831AF9FDEF2B2C69992D52B871);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_100 = V_3;
|
|
int32_t L_101 = L_100.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_102 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 19)), il2cpp_rgctx_method(method->rgctx_data, 19), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 18)) ? L_99: *(void**)L_99), L_101, L_102, _stringLiteral9D185AF12E5ED0C922453F0E37EAAFC61F9E677A);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_0253:
|
|
{
|
|
il2cpp_codegen_memcpy(L_103, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 20)) ? ___12_arg11 : &___12_arg11), SizeOf_T11_t6B9BB9AA62CCAF9F2390C9FB5A6AF300B3F5AF3A);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_104 = V_3;
|
|
int32_t L_105 = L_104.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_106 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 21)), il2cpp_rgctx_method(method->rgctx_data, 21), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 20)) ? L_103: *(void**)L_103), L_105, L_106, _stringLiteralE65C938B36DF53938C3DB40A7D8AE09A05ED61D9);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_026e:
|
|
{
|
|
il2cpp_codegen_memcpy(L_107, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 22)) ? ___13_arg12 : &___13_arg12), SizeOf_T12_t0FABB1CFFCA1C28C4E5B56820F6A005080B8A3EF);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_108 = V_3;
|
|
int32_t L_109 = L_108.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_110 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 23)), il2cpp_rgctx_method(method->rgctx_data, 23), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 22)) ? L_107: *(void**)L_107), L_109, L_110, _stringLiteral83088F1068E2EA43519F1DC631CB4A130848670A);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_0289:
|
|
{
|
|
il2cpp_codegen_memcpy(L_111, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 24)) ? ___14_arg13 : &___14_arg13), SizeOf_T13_t7576D7D7FC7A49180C681303274FF7F669BC63E3);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_112 = V_3;
|
|
int32_t L_113 = L_112.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_114 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 25)), il2cpp_rgctx_method(method->rgctx_data, 25), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 24)) ? L_111: *(void**)L_111), L_113, L_114, _stringLiteralFB177A61A98D4F6101A8CD435D326073935BF35D);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_02a4:
|
|
{
|
|
il2cpp_codegen_memcpy(L_115, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 26)) ? ___15_arg14 : &___15_arg14), SizeOf_T14_t2A794BBAB35A700524640031C421BCEE33D28608);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_116 = V_3;
|
|
int32_t L_117 = L_116.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_118 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 27)), il2cpp_rgctx_method(method->rgctx_data, 27), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 26)) ? L_115: *(void**)L_115), L_117, L_118, _stringLiteral256786EE327E637AAD0A04FC808B31A6B18120EA);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_02bf:
|
|
{
|
|
il2cpp_codegen_memcpy(L_119, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 28)) ? ___16_arg15 : &___16_arg15), SizeOf_T15_tC856CA6FD173A7968E8D2ED2CF4553315D25E572);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_120 = V_3;
|
|
int32_t L_121 = L_120.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_122 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 29)), il2cpp_rgctx_method(method->rgctx_data, 29), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 28)) ? L_119: *(void**)L_119), L_121, L_122, _stringLiteral33338DE87F2A029DA9317ECF1A93AF158A060E36);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_02da:
|
|
{
|
|
il2cpp_codegen_memcpy(L_123, (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 30)) ? ___17_arg16 : &___17_arg16), SizeOf_T16_t79D80A2097EF9A3389D7BEBDAC70E6034203EB32);
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_124 = V_3;
|
|
int32_t L_125 = L_124.___Alignment;
|
|
StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF L_126 = V_4;
|
|
InvokerActionInvoker5< RuntimeObject**, Il2CppFullySharedGenericAny, int32_t, StandardFormat_tEEF45AD161B3118652894C0675C4C4D6AE4CB3BF, String_t* >::Invoke(il2cpp_codegen_get_direct_method_pointer(il2cpp_rgctx_method(method->rgctx_data, 31)), il2cpp_rgctx_method(method->rgctx_data, 31), NULL, (&___0_bufferWriter), (il2cpp_codegen_class_is_value_type(il2cpp_rgctx_data_no_init(method->rgctx_data, 30)) ? L_123: *(void**)L_123), L_125, L_126, _stringLiteral3B69DC5123902CCEB5F543CC8C90A7804B54259A);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_02f2:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_02fe:
|
|
{
|
|
Il2CppChar L_127 = V_2;
|
|
if ((!(((uint32_t)L_127) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_0360;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_128 = V_1;
|
|
String_t* L_129 = ___1_format;
|
|
NullCheck(L_129);
|
|
int32_t L_130;
|
|
L_130 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_129, NULL);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_add(L_128, 1))) >= ((int32_t)L_130)))
|
|
{
|
|
goto IL_035b;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_131 = ___1_format;
|
|
int32_t L_132 = V_1;
|
|
NullCheck(L_131);
|
|
Il2CppChar L_133;
|
|
L_133 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_131, ((int32_t)il2cpp_codegen_add(L_132, 1)), NULL);
|
|
if ((!(((uint32_t)L_133) == ((uint32_t)((int32_t)125)))))
|
|
{
|
|
goto IL_035b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_134 = V_1;
|
|
int32_t L_135 = V_0;
|
|
V_12 = ((int32_t)il2cpp_codegen_subtract(L_134, L_135));
|
|
RuntimeObject* L_136 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_137 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_138 = V_12;
|
|
NullCheck(L_137);
|
|
int32_t L_139;
|
|
L_139 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_137, L_138);
|
|
NullCheck(L_136);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_140;
|
|
L_140 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_136, L_139);
|
|
V_13 = L_140;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_141 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_142 = ___1_format;
|
|
int32_t L_143 = V_0;
|
|
int32_t L_144 = V_12;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_145;
|
|
L_145 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_142, L_143, L_144, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_146 = V_13;
|
|
NullCheck(L_141);
|
|
int32_t L_147;
|
|
L_147 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_141, L_145, L_146);
|
|
V_14 = L_147;
|
|
RuntimeObject* L_148 = ___0_bufferWriter;
|
|
int32_t L_149 = V_14;
|
|
NullCheck(L_148);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_148, L_149);
|
|
int32_t L_150 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_150, 1));
|
|
int32_t L_151 = V_1;
|
|
V_0 = L_151;
|
|
goto IL_0360;
|
|
}
|
|
|
|
IL_035b:
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
}
|
|
|
|
IL_0360:
|
|
{
|
|
int32_t L_152 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_152, 1));
|
|
}
|
|
|
|
IL_0364:
|
|
{
|
|
int32_t L_153 = V_1;
|
|
String_t* L_154 = ___1_format;
|
|
NullCheck(L_154);
|
|
int32_t L_155;
|
|
L_155 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_154, NULL);
|
|
if ((((int32_t)L_153) < ((int32_t)L_155)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_156 = ___1_format;
|
|
NullCheck(L_156);
|
|
int32_t L_157;
|
|
L_157 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_156, NULL);
|
|
int32_t L_158 = V_0;
|
|
V_15 = ((int32_t)il2cpp_codegen_subtract(L_157, L_158));
|
|
int32_t L_159 = V_15;
|
|
if ((((int32_t)L_159) <= ((int32_t)0)))
|
|
{
|
|
goto IL_03b2;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_160 = ___0_bufferWriter;
|
|
il2cpp_codegen_runtime_class_init_inline(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var);
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_161 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
int32_t L_162 = V_15;
|
|
NullCheck(L_161);
|
|
int32_t L_163;
|
|
L_163 = VirtualFuncInvoker1< int32_t, int32_t >::Invoke(33, L_161, L_162);
|
|
NullCheck(L_160);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_164;
|
|
L_164 = InterfaceFuncInvoker1< Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305, int32_t >::Invoke(2, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_160, L_163);
|
|
V_16 = L_164;
|
|
Encoding_t65CDEF28CF20A7B8C92E85A4E808920C2465F095* L_165 = ((ZString_t83B695B80A3D55672763B8459D632319061B6906_StaticFields*)il2cpp_codegen_static_fields_for(ZString_t83B695B80A3D55672763B8459D632319061B6906_il2cpp_TypeInfo_var))->___UTF8NoBom;
|
|
String_t* L_166 = ___1_format;
|
|
int32_t L_167 = V_0;
|
|
int32_t L_168 = V_15;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_169;
|
|
L_169 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_166, L_167, L_168, NULL);
|
|
Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 L_170 = V_16;
|
|
NullCheck(L_165);
|
|
int32_t L_171;
|
|
L_171 = VirtualFuncInvoker2< int32_t, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1, Span_1_tDADAC65069DFE6B57C458109115ECD795ED39305 >::Invoke(40, L_165, L_169, L_170);
|
|
V_17 = L_171;
|
|
RuntimeObject* L_172 = ___0_bufferWriter;
|
|
int32_t L_173 = V_17;
|
|
NullCheck(L_172);
|
|
InterfaceActionInvoker1< int32_t >::Invoke(0, IBufferWriter_1_t09B22D28ED83DD9237FC6D4E8014388593A8C897_il2cpp_TypeInfo_var, L_172, L_173);
|
|
}
|
|
|
|
IL_03b2:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool _AndroidJNIHelper_ConvertFromJNIArray_TisBoolean_t09A6377A54BE2F9E6985A8149F19234FD7DDFE22_mBF1AB84DE0B50E7C206BAD3C170D1F5AD2D9E343_gshared (intptr_t ___0_array, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
int32_t V_13 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
int32_t V_18 = 0;
|
|
intptr_t V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
bool V_20 = false;
|
|
bool V_21 = false;
|
|
bool V_22 = false;
|
|
bool V_23 = false;
|
|
int32_t V_24 = 0;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* V_25 = NULL;
|
|
int32_t V_26 = 0;
|
|
bool V_27 = false;
|
|
bool V_28 = false;
|
|
int32_t V_29 = 0;
|
|
intptr_t V_30;
|
|
memset((&V_30), 0, sizeof(V_30));
|
|
bool V_31 = false;
|
|
bool V_32 = false;
|
|
bool V_33 = false;
|
|
bool V_34 = false;
|
|
int32_t G_B26_0 = 0;
|
|
int32_t G_B43_0 = 0;
|
|
Type_t* G_B56_0 = NULL;
|
|
String_t* G_B56_1 = NULL;
|
|
Type_t* G_B55_0 = NULL;
|
|
String_t* G_B55_1 = NULL;
|
|
String_t* G_B57_0 = NULL;
|
|
String_t* G_B57_1 = NULL;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
NullCheck(L_1);
|
|
Type_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< Type_t* >::Invoke(64, L_1);
|
|
V_0 = L_2;
|
|
Type_t* L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = AndroidReflection_IsPrimitive_mA41A9ECECE3D73679C79DC8B0FDD32B59570DF25(L_3, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_6 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
bool L_9;
|
|
L_9 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_6, L_8, NULL);
|
|
V_2 = L_9;
|
|
bool L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_11 = ___0_array;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12;
|
|
L_12 = AndroidJNISafe_FromIntArray_mC4C4DC70FFA39CD6E3E02FDAC7192324E6D4614E(L_11, NULL);
|
|
V_3 = ((*(bool*)UnBox((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
Type_t* L_13 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.boolean_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
bool L_16;
|
|
L_16 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_13, L_15, NULL);
|
|
V_4 = L_16;
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_18 = ___0_array;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_19;
|
|
L_19 = AndroidJNISafe_FromBooleanArray_m36ED740401185EC0A959CA0F96A324A69E668646(L_18, NULL);
|
|
V_3 = ((*(bool*)UnBox((RuntimeObject*)L_19, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_22, NULL);
|
|
V_5 = L_23;
|
|
bool L_24 = V_5;
|
|
if (!L_24)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9((RuntimeObject*)_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2, NULL);
|
|
intptr_t L_25 = ___0_array;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26;
|
|
L_26 = AndroidJNISafe_FromByteArray_mB06EF0FDBF6C738231E8F9D4998C38551131C4C5(L_25, NULL);
|
|
V_3 = ((*(bool*)UnBox((RuntimeObject*)L_26, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
Type_t* L_27 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
bool L_30;
|
|
L_30 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_27, L_29, NULL);
|
|
V_6 = L_30;
|
|
bool L_31 = V_6;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_32 = ___0_array;
|
|
SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_33;
|
|
L_33 = AndroidJNISafe_FromSByteArray_m261D638D8B059AB777BEF0BEFDD0822717DFF2B1(L_32, NULL);
|
|
V_3 = ((*(bool*)UnBox((RuntimeObject*)L_33, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
Type_t* L_34 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
V_7 = L_37;
|
|
bool L_38 = V_7;
|
|
if (!L_38)
|
|
{
|
|
goto IL_00ec;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_39 = ___0_array;
|
|
Int16U5BU5D_t8175CE8DD9C9F9FB0CF4F58E45BC570575B43CFB* L_40;
|
|
L_40 = AndroidJNISafe_FromShortArray_m62C0CB2D0BAE96D4B8CE365630361150EBE884FC(L_39, NULL);
|
|
V_3 = ((*(bool*)UnBox((RuntimeObject*)L_40, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00ec:
|
|
{
|
|
Type_t* L_41 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
V_8 = L_44;
|
|
bool L_45 = V_8;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_46 = ___0_array;
|
|
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_47;
|
|
L_47 = AndroidJNISafe_FromLongArray_mC4D73C0DA27F212947AB85AA2030A35BECDF8288(L_46, NULL);
|
|
V_3 = ((*(bool*)UnBox((RuntimeObject*)L_47, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
Type_t* L_48 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
bool L_51;
|
|
L_51 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_48, L_50, NULL);
|
|
V_9 = L_51;
|
|
bool L_52 = V_9;
|
|
if (!L_52)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_53 = ___0_array;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_54;
|
|
L_54 = AndroidJNISafe_FromFloatArray_mDE02985159EEFD2CB28611C797AC21DE8B6300B8(L_53, NULL);
|
|
V_3 = ((*(bool*)UnBox((RuntimeObject*)L_54, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
Type_t* L_55 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
bool L_58;
|
|
L_58 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_55, L_57, NULL);
|
|
V_10 = L_58;
|
|
bool L_59 = V_10;
|
|
if (!L_59)
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_60 = ___0_array;
|
|
DoubleU5BU5D_tCC308475BD3B8229DB2582938669EF2F9ECC1FEE* L_61;
|
|
L_61 = AndroidJNISafe_FromDoubleArray_mDEA8F2C7854101272F3A2733F351B570AAD5D9D9(L_60, NULL);
|
|
V_3 = ((*(bool*)UnBox((RuntimeObject*)L_61, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0161:
|
|
{
|
|
Type_t* L_62 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.char_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
bool L_65;
|
|
L_65 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_62, L_64, NULL);
|
|
V_11 = L_65;
|
|
bool L_66 = V_11;
|
|
if (!L_66)
|
|
{
|
|
goto IL_0188;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_67 = ___0_array;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68;
|
|
L_68 = AndroidJNISafe_FromCharArray_m54EDC9D2BE92F9973F4E00EE953EE242B231EA96(L_67, NULL);
|
|
V_3 = ((*(bool*)UnBox((RuntimeObject*)L_68, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0188:
|
|
{
|
|
goto IL_0376;
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
Type_t* L_69 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_71;
|
|
L_71 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_70, NULL);
|
|
bool L_72;
|
|
L_72 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_69, L_71, NULL);
|
|
V_12 = L_72;
|
|
bool L_73 = V_12;
|
|
if (!L_73)
|
|
{
|
|
goto IL_0272;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_74 = ___0_array;
|
|
int32_t L_75;
|
|
L_75 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_74, NULL);
|
|
V_13 = L_75;
|
|
int32_t L_76 = V_13;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_77 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_76);
|
|
V_14 = L_77;
|
|
int32_t L_78 = V_13;
|
|
V_17 = (bool)((((int32_t)L_78) == ((int32_t)0))? 1 : 0);
|
|
bool L_79 = V_17;
|
|
if (!L_79)
|
|
{
|
|
goto IL_01d1;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_80 = V_14;
|
|
V_3 = ((*(bool*)UnBox((RuntimeObject*)L_80, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_01d1:
|
|
{
|
|
int32_t L_81 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_82 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_81) > ((int32_t)L_82)))
|
|
{
|
|
goto IL_01de;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_83 = V_13;
|
|
G_B26_0 = L_83;
|
|
goto IL_01e3;
|
|
}
|
|
|
|
IL_01de:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_84 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B26_0 = L_84;
|
|
}
|
|
|
|
IL_01e3:
|
|
{
|
|
V_15 = G_B26_0;
|
|
int32_t L_85 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_85, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_024f:
|
|
{
|
|
{
|
|
bool L_86 = V_16;
|
|
V_22 = L_86;
|
|
bool L_87 = V_22;
|
|
if (!L_87)
|
|
{
|
|
goto IL_0263;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_88;
|
|
L_88 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0263:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_18 = 0;
|
|
goto IL_0240_1;
|
|
}
|
|
|
|
IL_01f6_1:
|
|
{
|
|
int32_t L_89 = V_18;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_90 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_20 = (bool)((((int32_t)((int32_t)(L_89%L_90))) == ((int32_t)0))? 1 : 0);
|
|
bool L_91 = V_20;
|
|
if (!L_91)
|
|
{
|
|
goto IL_0223_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_92;
|
|
L_92 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_16 = (bool)0;
|
|
int32_t L_93 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_93, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
|
|
IL_0223_1:
|
|
{
|
|
intptr_t L_94 = ___0_array;
|
|
int32_t L_95 = V_18;
|
|
intptr_t L_96;
|
|
L_96 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_94, L_95, NULL);
|
|
V_19 = L_96;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_97 = V_14;
|
|
int32_t L_98 = V_18;
|
|
intptr_t L_99 = V_19;
|
|
String_t* L_100;
|
|
L_100 = AndroidJNISafe_GetStringChars_mE246814CD8FF4EDDEE6EBF107367C4A8EAF03849(L_99, NULL);
|
|
NullCheck(L_97);
|
|
(L_97)->SetAt(static_cast<il2cpp_array_size_t>(L_98), (String_t*)L_100);
|
|
int32_t L_101 = V_18;
|
|
V_18 = ((int32_t)il2cpp_codegen_add(L_101, 1));
|
|
}
|
|
|
|
IL_0240_1:
|
|
{
|
|
int32_t L_102 = V_18;
|
|
int32_t L_103 = V_13;
|
|
V_21 = (bool)((((int32_t)L_102) < ((int32_t)L_103))? 1 : 0);
|
|
bool L_104 = V_21;
|
|
if (L_104)
|
|
{
|
|
goto IL_01f6_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0265;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0265:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_105 = V_14;
|
|
V_3 = ((*(bool*)UnBox((RuntimeObject*)L_105, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0272:
|
|
{
|
|
Type_t* L_106 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_107 = { reinterpret_cast<intptr_t> (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_108;
|
|
L_108 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_107, NULL);
|
|
bool L_109;
|
|
L_109 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_106, L_108, NULL);
|
|
V_23 = L_109;
|
|
bool L_110 = V_23;
|
|
if (!L_110)
|
|
{
|
|
goto IL_0353;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_111 = ___0_array;
|
|
int32_t L_112;
|
|
L_112 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_111, NULL);
|
|
V_24 = L_112;
|
|
int32_t L_113 = V_24;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_114 = (AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)SZArrayNew(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var, (uint32_t)L_113);
|
|
V_25 = L_114;
|
|
int32_t L_115 = V_24;
|
|
V_28 = (bool)((((int32_t)L_115) == ((int32_t)0))? 1 : 0);
|
|
bool L_116 = V_28;
|
|
if (!L_116)
|
|
{
|
|
goto IL_02b5;
|
|
}
|
|
}
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_117 = V_25;
|
|
V_3 = ((*(bool*)UnBox((RuntimeObject*)L_117, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_02b5:
|
|
{
|
|
int32_t L_118 = V_24;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_119 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_118) > ((int32_t)L_119)))
|
|
{
|
|
goto IL_02c2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_120 = V_24;
|
|
G_B43_0 = L_120;
|
|
goto IL_02c7;
|
|
}
|
|
|
|
IL_02c2:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_121 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B43_0 = L_121;
|
|
}
|
|
|
|
IL_02c7:
|
|
{
|
|
V_26 = G_B43_0;
|
|
int32_t L_122 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_122, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0333:
|
|
{
|
|
{
|
|
bool L_123 = V_27;
|
|
V_33 = L_123;
|
|
bool L_124 = V_33;
|
|
if (!L_124)
|
|
{
|
|
goto IL_0347;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_125;
|
|
L_125 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0347:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_29 = 0;
|
|
goto IL_0324_1;
|
|
}
|
|
|
|
IL_02da_1:
|
|
{
|
|
int32_t L_126 = V_29;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_127 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_31 = (bool)((((int32_t)((int32_t)(L_126%L_127))) == ((int32_t)0))? 1 : 0);
|
|
bool L_128 = V_31;
|
|
if (!L_128)
|
|
{
|
|
goto IL_0307_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_129;
|
|
L_129 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_27 = (bool)0;
|
|
int32_t L_130 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_130, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
|
|
IL_0307_1:
|
|
{
|
|
intptr_t L_131 = ___0_array;
|
|
int32_t L_132 = V_29;
|
|
intptr_t L_133;
|
|
L_133 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_131, L_132, NULL);
|
|
V_30 = L_133;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_134 = V_25;
|
|
int32_t L_135 = V_29;
|
|
intptr_t L_136 = V_30;
|
|
AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* L_137 = (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)il2cpp_codegen_object_new(AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
AndroidJavaObject__ctor_m0CEE7D570807333CE2C193A82AB3AB8D4F873A6B(L_137, L_136, NULL);
|
|
NullCheck(L_134);
|
|
ArrayElementTypeCheck (L_134, L_137);
|
|
(L_134)->SetAt(static_cast<il2cpp_array_size_t>(L_135), (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)L_137);
|
|
int32_t L_138 = V_29;
|
|
V_29 = ((int32_t)il2cpp_codegen_add(L_138, 1));
|
|
}
|
|
|
|
IL_0324_1:
|
|
{
|
|
int32_t L_139 = V_29;
|
|
int32_t L_140 = V_24;
|
|
V_32 = (bool)((((int32_t)L_139) < ((int32_t)L_140))? 1 : 0);
|
|
bool L_141 = V_32;
|
|
if (L_141)
|
|
{
|
|
goto IL_02da_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0349;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0349:
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_142 = V_25;
|
|
V_3 = ((*(bool*)UnBox((RuntimeObject*)L_142, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0353:
|
|
{
|
|
Type_t* L_143 = V_0;
|
|
Type_t* L_144 = L_143;
|
|
if (L_144)
|
|
{
|
|
G_B56_0 = L_144;
|
|
G_B56_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
goto IL_0361;
|
|
}
|
|
G_B55_0 = L_144;
|
|
G_B55_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
}
|
|
{
|
|
G_B57_0 = ((String_t*)(NULL));
|
|
G_B57_1 = G_B55_1;
|
|
goto IL_0366;
|
|
}
|
|
|
|
IL_0361:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B56_0);
|
|
String_t* L_145;
|
|
L_145 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B56_0);
|
|
G_B57_0 = L_145;
|
|
G_B57_1 = G_B56_1;
|
|
}
|
|
|
|
IL_0366:
|
|
{
|
|
String_t* L_146;
|
|
L_146 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(G_B57_1, G_B57_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D)), NULL);
|
|
Exception_t* L_147 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
|
|
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_147, L_146, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_147, method);
|
|
}
|
|
|
|
IL_0376:
|
|
{
|
|
il2cpp_codegen_initobj((&V_34), sizeof(bool));
|
|
bool L_148 = V_34;
|
|
V_3 = L_148;
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0383:
|
|
{
|
|
bool L_149 = V_3;
|
|
return L_149;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Il2CppChar _AndroidJNIHelper_ConvertFromJNIArray_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_m9ECB51B699AB7B96368F39CC9F7C481340DD0BBC_gshared (intptr_t ___0_array, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
Il2CppChar V_3 = 0x0;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
int32_t V_13 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
int32_t V_18 = 0;
|
|
intptr_t V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
bool V_20 = false;
|
|
bool V_21 = false;
|
|
bool V_22 = false;
|
|
bool V_23 = false;
|
|
int32_t V_24 = 0;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* V_25 = NULL;
|
|
int32_t V_26 = 0;
|
|
bool V_27 = false;
|
|
bool V_28 = false;
|
|
int32_t V_29 = 0;
|
|
intptr_t V_30;
|
|
memset((&V_30), 0, sizeof(V_30));
|
|
bool V_31 = false;
|
|
bool V_32 = false;
|
|
bool V_33 = false;
|
|
Il2CppChar V_34 = 0x0;
|
|
int32_t G_B26_0 = 0;
|
|
int32_t G_B43_0 = 0;
|
|
Type_t* G_B56_0 = NULL;
|
|
String_t* G_B56_1 = NULL;
|
|
Type_t* G_B55_0 = NULL;
|
|
String_t* G_B55_1 = NULL;
|
|
String_t* G_B57_0 = NULL;
|
|
String_t* G_B57_1 = NULL;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
NullCheck(L_1);
|
|
Type_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< Type_t* >::Invoke(64, L_1);
|
|
V_0 = L_2;
|
|
Type_t* L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = AndroidReflection_IsPrimitive_mA41A9ECECE3D73679C79DC8B0FDD32B59570DF25(L_3, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_6 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
bool L_9;
|
|
L_9 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_6, L_8, NULL);
|
|
V_2 = L_9;
|
|
bool L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_11 = ___0_array;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12;
|
|
L_12 = AndroidJNISafe_FromIntArray_mC4C4DC70FFA39CD6E3E02FDAC7192324E6D4614E(L_11, NULL);
|
|
V_3 = ((*(Il2CppChar*)UnBox((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
Type_t* L_13 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.boolean_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
bool L_16;
|
|
L_16 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_13, L_15, NULL);
|
|
V_4 = L_16;
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_18 = ___0_array;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_19;
|
|
L_19 = AndroidJNISafe_FromBooleanArray_m36ED740401185EC0A959CA0F96A324A69E668646(L_18, NULL);
|
|
V_3 = ((*(Il2CppChar*)UnBox((RuntimeObject*)L_19, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_22, NULL);
|
|
V_5 = L_23;
|
|
bool L_24 = V_5;
|
|
if (!L_24)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9((RuntimeObject*)_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2, NULL);
|
|
intptr_t L_25 = ___0_array;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26;
|
|
L_26 = AndroidJNISafe_FromByteArray_mB06EF0FDBF6C738231E8F9D4998C38551131C4C5(L_25, NULL);
|
|
V_3 = ((*(Il2CppChar*)UnBox((RuntimeObject*)L_26, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
Type_t* L_27 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
bool L_30;
|
|
L_30 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_27, L_29, NULL);
|
|
V_6 = L_30;
|
|
bool L_31 = V_6;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_32 = ___0_array;
|
|
SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_33;
|
|
L_33 = AndroidJNISafe_FromSByteArray_m261D638D8B059AB777BEF0BEFDD0822717DFF2B1(L_32, NULL);
|
|
V_3 = ((*(Il2CppChar*)UnBox((RuntimeObject*)L_33, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
Type_t* L_34 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
V_7 = L_37;
|
|
bool L_38 = V_7;
|
|
if (!L_38)
|
|
{
|
|
goto IL_00ec;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_39 = ___0_array;
|
|
Int16U5BU5D_t8175CE8DD9C9F9FB0CF4F58E45BC570575B43CFB* L_40;
|
|
L_40 = AndroidJNISafe_FromShortArray_m62C0CB2D0BAE96D4B8CE365630361150EBE884FC(L_39, NULL);
|
|
V_3 = ((*(Il2CppChar*)UnBox((RuntimeObject*)L_40, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00ec:
|
|
{
|
|
Type_t* L_41 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
V_8 = L_44;
|
|
bool L_45 = V_8;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_46 = ___0_array;
|
|
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_47;
|
|
L_47 = AndroidJNISafe_FromLongArray_mC4D73C0DA27F212947AB85AA2030A35BECDF8288(L_46, NULL);
|
|
V_3 = ((*(Il2CppChar*)UnBox((RuntimeObject*)L_47, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
Type_t* L_48 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
bool L_51;
|
|
L_51 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_48, L_50, NULL);
|
|
V_9 = L_51;
|
|
bool L_52 = V_9;
|
|
if (!L_52)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_53 = ___0_array;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_54;
|
|
L_54 = AndroidJNISafe_FromFloatArray_mDE02985159EEFD2CB28611C797AC21DE8B6300B8(L_53, NULL);
|
|
V_3 = ((*(Il2CppChar*)UnBox((RuntimeObject*)L_54, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
Type_t* L_55 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
bool L_58;
|
|
L_58 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_55, L_57, NULL);
|
|
V_10 = L_58;
|
|
bool L_59 = V_10;
|
|
if (!L_59)
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_60 = ___0_array;
|
|
DoubleU5BU5D_tCC308475BD3B8229DB2582938669EF2F9ECC1FEE* L_61;
|
|
L_61 = AndroidJNISafe_FromDoubleArray_mDEA8F2C7854101272F3A2733F351B570AAD5D9D9(L_60, NULL);
|
|
V_3 = ((*(Il2CppChar*)UnBox((RuntimeObject*)L_61, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0161:
|
|
{
|
|
Type_t* L_62 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.char_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
bool L_65;
|
|
L_65 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_62, L_64, NULL);
|
|
V_11 = L_65;
|
|
bool L_66 = V_11;
|
|
if (!L_66)
|
|
{
|
|
goto IL_0188;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_67 = ___0_array;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68;
|
|
L_68 = AndroidJNISafe_FromCharArray_m54EDC9D2BE92F9973F4E00EE953EE242B231EA96(L_67, NULL);
|
|
V_3 = ((*(Il2CppChar*)UnBox((RuntimeObject*)L_68, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0188:
|
|
{
|
|
goto IL_0376;
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
Type_t* L_69 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_71;
|
|
L_71 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_70, NULL);
|
|
bool L_72;
|
|
L_72 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_69, L_71, NULL);
|
|
V_12 = L_72;
|
|
bool L_73 = V_12;
|
|
if (!L_73)
|
|
{
|
|
goto IL_0272;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_74 = ___0_array;
|
|
int32_t L_75;
|
|
L_75 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_74, NULL);
|
|
V_13 = L_75;
|
|
int32_t L_76 = V_13;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_77 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_76);
|
|
V_14 = L_77;
|
|
int32_t L_78 = V_13;
|
|
V_17 = (bool)((((int32_t)L_78) == ((int32_t)0))? 1 : 0);
|
|
bool L_79 = V_17;
|
|
if (!L_79)
|
|
{
|
|
goto IL_01d1;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_80 = V_14;
|
|
V_3 = ((*(Il2CppChar*)UnBox((RuntimeObject*)L_80, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_01d1:
|
|
{
|
|
int32_t L_81 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_82 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_81) > ((int32_t)L_82)))
|
|
{
|
|
goto IL_01de;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_83 = V_13;
|
|
G_B26_0 = L_83;
|
|
goto IL_01e3;
|
|
}
|
|
|
|
IL_01de:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_84 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B26_0 = L_84;
|
|
}
|
|
|
|
IL_01e3:
|
|
{
|
|
V_15 = G_B26_0;
|
|
int32_t L_85 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_85, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_024f:
|
|
{
|
|
{
|
|
bool L_86 = V_16;
|
|
V_22 = L_86;
|
|
bool L_87 = V_22;
|
|
if (!L_87)
|
|
{
|
|
goto IL_0263;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_88;
|
|
L_88 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0263:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_18 = 0;
|
|
goto IL_0240_1;
|
|
}
|
|
|
|
IL_01f6_1:
|
|
{
|
|
int32_t L_89 = V_18;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_90 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_20 = (bool)((((int32_t)((int32_t)(L_89%L_90))) == ((int32_t)0))? 1 : 0);
|
|
bool L_91 = V_20;
|
|
if (!L_91)
|
|
{
|
|
goto IL_0223_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_92;
|
|
L_92 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_16 = (bool)0;
|
|
int32_t L_93 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_93, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
|
|
IL_0223_1:
|
|
{
|
|
intptr_t L_94 = ___0_array;
|
|
int32_t L_95 = V_18;
|
|
intptr_t L_96;
|
|
L_96 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_94, L_95, NULL);
|
|
V_19 = L_96;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_97 = V_14;
|
|
int32_t L_98 = V_18;
|
|
intptr_t L_99 = V_19;
|
|
String_t* L_100;
|
|
L_100 = AndroidJNISafe_GetStringChars_mE246814CD8FF4EDDEE6EBF107367C4A8EAF03849(L_99, NULL);
|
|
NullCheck(L_97);
|
|
(L_97)->SetAt(static_cast<il2cpp_array_size_t>(L_98), (String_t*)L_100);
|
|
int32_t L_101 = V_18;
|
|
V_18 = ((int32_t)il2cpp_codegen_add(L_101, 1));
|
|
}
|
|
|
|
IL_0240_1:
|
|
{
|
|
int32_t L_102 = V_18;
|
|
int32_t L_103 = V_13;
|
|
V_21 = (bool)((((int32_t)L_102) < ((int32_t)L_103))? 1 : 0);
|
|
bool L_104 = V_21;
|
|
if (L_104)
|
|
{
|
|
goto IL_01f6_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0265;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0265:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_105 = V_14;
|
|
V_3 = ((*(Il2CppChar*)UnBox((RuntimeObject*)L_105, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0272:
|
|
{
|
|
Type_t* L_106 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_107 = { reinterpret_cast<intptr_t> (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_108;
|
|
L_108 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_107, NULL);
|
|
bool L_109;
|
|
L_109 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_106, L_108, NULL);
|
|
V_23 = L_109;
|
|
bool L_110 = V_23;
|
|
if (!L_110)
|
|
{
|
|
goto IL_0353;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_111 = ___0_array;
|
|
int32_t L_112;
|
|
L_112 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_111, NULL);
|
|
V_24 = L_112;
|
|
int32_t L_113 = V_24;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_114 = (AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)SZArrayNew(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var, (uint32_t)L_113);
|
|
V_25 = L_114;
|
|
int32_t L_115 = V_24;
|
|
V_28 = (bool)((((int32_t)L_115) == ((int32_t)0))? 1 : 0);
|
|
bool L_116 = V_28;
|
|
if (!L_116)
|
|
{
|
|
goto IL_02b5;
|
|
}
|
|
}
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_117 = V_25;
|
|
V_3 = ((*(Il2CppChar*)UnBox((RuntimeObject*)L_117, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_02b5:
|
|
{
|
|
int32_t L_118 = V_24;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_119 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_118) > ((int32_t)L_119)))
|
|
{
|
|
goto IL_02c2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_120 = V_24;
|
|
G_B43_0 = L_120;
|
|
goto IL_02c7;
|
|
}
|
|
|
|
IL_02c2:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_121 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B43_0 = L_121;
|
|
}
|
|
|
|
IL_02c7:
|
|
{
|
|
V_26 = G_B43_0;
|
|
int32_t L_122 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_122, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0333:
|
|
{
|
|
{
|
|
bool L_123 = V_27;
|
|
V_33 = L_123;
|
|
bool L_124 = V_33;
|
|
if (!L_124)
|
|
{
|
|
goto IL_0347;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_125;
|
|
L_125 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0347:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_29 = 0;
|
|
goto IL_0324_1;
|
|
}
|
|
|
|
IL_02da_1:
|
|
{
|
|
int32_t L_126 = V_29;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_127 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_31 = (bool)((((int32_t)((int32_t)(L_126%L_127))) == ((int32_t)0))? 1 : 0);
|
|
bool L_128 = V_31;
|
|
if (!L_128)
|
|
{
|
|
goto IL_0307_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_129;
|
|
L_129 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_27 = (bool)0;
|
|
int32_t L_130 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_130, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
|
|
IL_0307_1:
|
|
{
|
|
intptr_t L_131 = ___0_array;
|
|
int32_t L_132 = V_29;
|
|
intptr_t L_133;
|
|
L_133 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_131, L_132, NULL);
|
|
V_30 = L_133;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_134 = V_25;
|
|
int32_t L_135 = V_29;
|
|
intptr_t L_136 = V_30;
|
|
AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* L_137 = (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)il2cpp_codegen_object_new(AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
AndroidJavaObject__ctor_m0CEE7D570807333CE2C193A82AB3AB8D4F873A6B(L_137, L_136, NULL);
|
|
NullCheck(L_134);
|
|
ArrayElementTypeCheck (L_134, L_137);
|
|
(L_134)->SetAt(static_cast<il2cpp_array_size_t>(L_135), (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)L_137);
|
|
int32_t L_138 = V_29;
|
|
V_29 = ((int32_t)il2cpp_codegen_add(L_138, 1));
|
|
}
|
|
|
|
IL_0324_1:
|
|
{
|
|
int32_t L_139 = V_29;
|
|
int32_t L_140 = V_24;
|
|
V_32 = (bool)((((int32_t)L_139) < ((int32_t)L_140))? 1 : 0);
|
|
bool L_141 = V_32;
|
|
if (L_141)
|
|
{
|
|
goto IL_02da_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0349;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0349:
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_142 = V_25;
|
|
V_3 = ((*(Il2CppChar*)UnBox((RuntimeObject*)L_142, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0353:
|
|
{
|
|
Type_t* L_143 = V_0;
|
|
Type_t* L_144 = L_143;
|
|
if (L_144)
|
|
{
|
|
G_B56_0 = L_144;
|
|
G_B56_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
goto IL_0361;
|
|
}
|
|
G_B55_0 = L_144;
|
|
G_B55_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
}
|
|
{
|
|
G_B57_0 = ((String_t*)(NULL));
|
|
G_B57_1 = G_B55_1;
|
|
goto IL_0366;
|
|
}
|
|
|
|
IL_0361:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B56_0);
|
|
String_t* L_145;
|
|
L_145 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B56_0);
|
|
G_B57_0 = L_145;
|
|
G_B57_1 = G_B56_1;
|
|
}
|
|
|
|
IL_0366:
|
|
{
|
|
String_t* L_146;
|
|
L_146 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(G_B57_1, G_B57_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D)), NULL);
|
|
Exception_t* L_147 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
|
|
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_147, L_146, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_147, method);
|
|
}
|
|
|
|
IL_0376:
|
|
{
|
|
il2cpp_codegen_initobj((&V_34), sizeof(Il2CppChar));
|
|
Il2CppChar L_148 = V_34;
|
|
V_3 = L_148;
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0383:
|
|
{
|
|
Il2CppChar L_149 = V_3;
|
|
return L_149;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR double _AndroidJNIHelper_ConvertFromJNIArray_TisDouble_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F_m1F7F249CC7CDA2D6E136C627D983569B3674EA73_gshared (intptr_t ___0_array, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
double V_3 = 0.0;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
int32_t V_13 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
int32_t V_18 = 0;
|
|
intptr_t V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
bool V_20 = false;
|
|
bool V_21 = false;
|
|
bool V_22 = false;
|
|
bool V_23 = false;
|
|
int32_t V_24 = 0;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* V_25 = NULL;
|
|
int32_t V_26 = 0;
|
|
bool V_27 = false;
|
|
bool V_28 = false;
|
|
int32_t V_29 = 0;
|
|
intptr_t V_30;
|
|
memset((&V_30), 0, sizeof(V_30));
|
|
bool V_31 = false;
|
|
bool V_32 = false;
|
|
bool V_33 = false;
|
|
double V_34 = 0.0;
|
|
int32_t G_B26_0 = 0;
|
|
int32_t G_B43_0 = 0;
|
|
Type_t* G_B56_0 = NULL;
|
|
String_t* G_B56_1 = NULL;
|
|
Type_t* G_B55_0 = NULL;
|
|
String_t* G_B55_1 = NULL;
|
|
String_t* G_B57_0 = NULL;
|
|
String_t* G_B57_1 = NULL;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
NullCheck(L_1);
|
|
Type_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< Type_t* >::Invoke(64, L_1);
|
|
V_0 = L_2;
|
|
Type_t* L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = AndroidReflection_IsPrimitive_mA41A9ECECE3D73679C79DC8B0FDD32B59570DF25(L_3, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_6 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
bool L_9;
|
|
L_9 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_6, L_8, NULL);
|
|
V_2 = L_9;
|
|
bool L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_11 = ___0_array;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12;
|
|
L_12 = AndroidJNISafe_FromIntArray_mC4C4DC70FFA39CD6E3E02FDAC7192324E6D4614E(L_11, NULL);
|
|
V_3 = ((*(double*)UnBox((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
Type_t* L_13 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.boolean_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
bool L_16;
|
|
L_16 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_13, L_15, NULL);
|
|
V_4 = L_16;
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_18 = ___0_array;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_19;
|
|
L_19 = AndroidJNISafe_FromBooleanArray_m36ED740401185EC0A959CA0F96A324A69E668646(L_18, NULL);
|
|
V_3 = ((*(double*)UnBox((RuntimeObject*)L_19, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_22, NULL);
|
|
V_5 = L_23;
|
|
bool L_24 = V_5;
|
|
if (!L_24)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9((RuntimeObject*)_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2, NULL);
|
|
intptr_t L_25 = ___0_array;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26;
|
|
L_26 = AndroidJNISafe_FromByteArray_mB06EF0FDBF6C738231E8F9D4998C38551131C4C5(L_25, NULL);
|
|
V_3 = ((*(double*)UnBox((RuntimeObject*)L_26, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
Type_t* L_27 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
bool L_30;
|
|
L_30 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_27, L_29, NULL);
|
|
V_6 = L_30;
|
|
bool L_31 = V_6;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_32 = ___0_array;
|
|
SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_33;
|
|
L_33 = AndroidJNISafe_FromSByteArray_m261D638D8B059AB777BEF0BEFDD0822717DFF2B1(L_32, NULL);
|
|
V_3 = ((*(double*)UnBox((RuntimeObject*)L_33, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
Type_t* L_34 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
V_7 = L_37;
|
|
bool L_38 = V_7;
|
|
if (!L_38)
|
|
{
|
|
goto IL_00ec;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_39 = ___0_array;
|
|
Int16U5BU5D_t8175CE8DD9C9F9FB0CF4F58E45BC570575B43CFB* L_40;
|
|
L_40 = AndroidJNISafe_FromShortArray_m62C0CB2D0BAE96D4B8CE365630361150EBE884FC(L_39, NULL);
|
|
V_3 = ((*(double*)UnBox((RuntimeObject*)L_40, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00ec:
|
|
{
|
|
Type_t* L_41 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
V_8 = L_44;
|
|
bool L_45 = V_8;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_46 = ___0_array;
|
|
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_47;
|
|
L_47 = AndroidJNISafe_FromLongArray_mC4D73C0DA27F212947AB85AA2030A35BECDF8288(L_46, NULL);
|
|
V_3 = ((*(double*)UnBox((RuntimeObject*)L_47, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
Type_t* L_48 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
bool L_51;
|
|
L_51 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_48, L_50, NULL);
|
|
V_9 = L_51;
|
|
bool L_52 = V_9;
|
|
if (!L_52)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_53 = ___0_array;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_54;
|
|
L_54 = AndroidJNISafe_FromFloatArray_mDE02985159EEFD2CB28611C797AC21DE8B6300B8(L_53, NULL);
|
|
V_3 = ((*(double*)UnBox((RuntimeObject*)L_54, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
Type_t* L_55 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
bool L_58;
|
|
L_58 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_55, L_57, NULL);
|
|
V_10 = L_58;
|
|
bool L_59 = V_10;
|
|
if (!L_59)
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_60 = ___0_array;
|
|
DoubleU5BU5D_tCC308475BD3B8229DB2582938669EF2F9ECC1FEE* L_61;
|
|
L_61 = AndroidJNISafe_FromDoubleArray_mDEA8F2C7854101272F3A2733F351B570AAD5D9D9(L_60, NULL);
|
|
V_3 = ((*(double*)UnBox((RuntimeObject*)L_61, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0161:
|
|
{
|
|
Type_t* L_62 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.char_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
bool L_65;
|
|
L_65 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_62, L_64, NULL);
|
|
V_11 = L_65;
|
|
bool L_66 = V_11;
|
|
if (!L_66)
|
|
{
|
|
goto IL_0188;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_67 = ___0_array;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68;
|
|
L_68 = AndroidJNISafe_FromCharArray_m54EDC9D2BE92F9973F4E00EE953EE242B231EA96(L_67, NULL);
|
|
V_3 = ((*(double*)UnBox((RuntimeObject*)L_68, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0188:
|
|
{
|
|
goto IL_0376;
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
Type_t* L_69 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_71;
|
|
L_71 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_70, NULL);
|
|
bool L_72;
|
|
L_72 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_69, L_71, NULL);
|
|
V_12 = L_72;
|
|
bool L_73 = V_12;
|
|
if (!L_73)
|
|
{
|
|
goto IL_0272;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_74 = ___0_array;
|
|
int32_t L_75;
|
|
L_75 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_74, NULL);
|
|
V_13 = L_75;
|
|
int32_t L_76 = V_13;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_77 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_76);
|
|
V_14 = L_77;
|
|
int32_t L_78 = V_13;
|
|
V_17 = (bool)((((int32_t)L_78) == ((int32_t)0))? 1 : 0);
|
|
bool L_79 = V_17;
|
|
if (!L_79)
|
|
{
|
|
goto IL_01d1;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_80 = V_14;
|
|
V_3 = ((*(double*)UnBox((RuntimeObject*)L_80, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_01d1:
|
|
{
|
|
int32_t L_81 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_82 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_81) > ((int32_t)L_82)))
|
|
{
|
|
goto IL_01de;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_83 = V_13;
|
|
G_B26_0 = L_83;
|
|
goto IL_01e3;
|
|
}
|
|
|
|
IL_01de:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_84 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B26_0 = L_84;
|
|
}
|
|
|
|
IL_01e3:
|
|
{
|
|
V_15 = G_B26_0;
|
|
int32_t L_85 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_85, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_024f:
|
|
{
|
|
{
|
|
bool L_86 = V_16;
|
|
V_22 = L_86;
|
|
bool L_87 = V_22;
|
|
if (!L_87)
|
|
{
|
|
goto IL_0263;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_88;
|
|
L_88 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0263:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_18 = 0;
|
|
goto IL_0240_1;
|
|
}
|
|
|
|
IL_01f6_1:
|
|
{
|
|
int32_t L_89 = V_18;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_90 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_20 = (bool)((((int32_t)((int32_t)(L_89%L_90))) == ((int32_t)0))? 1 : 0);
|
|
bool L_91 = V_20;
|
|
if (!L_91)
|
|
{
|
|
goto IL_0223_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_92;
|
|
L_92 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_16 = (bool)0;
|
|
int32_t L_93 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_93, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
|
|
IL_0223_1:
|
|
{
|
|
intptr_t L_94 = ___0_array;
|
|
int32_t L_95 = V_18;
|
|
intptr_t L_96;
|
|
L_96 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_94, L_95, NULL);
|
|
V_19 = L_96;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_97 = V_14;
|
|
int32_t L_98 = V_18;
|
|
intptr_t L_99 = V_19;
|
|
String_t* L_100;
|
|
L_100 = AndroidJNISafe_GetStringChars_mE246814CD8FF4EDDEE6EBF107367C4A8EAF03849(L_99, NULL);
|
|
NullCheck(L_97);
|
|
(L_97)->SetAt(static_cast<il2cpp_array_size_t>(L_98), (String_t*)L_100);
|
|
int32_t L_101 = V_18;
|
|
V_18 = ((int32_t)il2cpp_codegen_add(L_101, 1));
|
|
}
|
|
|
|
IL_0240_1:
|
|
{
|
|
int32_t L_102 = V_18;
|
|
int32_t L_103 = V_13;
|
|
V_21 = (bool)((((int32_t)L_102) < ((int32_t)L_103))? 1 : 0);
|
|
bool L_104 = V_21;
|
|
if (L_104)
|
|
{
|
|
goto IL_01f6_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0265;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0265:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_105 = V_14;
|
|
V_3 = ((*(double*)UnBox((RuntimeObject*)L_105, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0272:
|
|
{
|
|
Type_t* L_106 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_107 = { reinterpret_cast<intptr_t> (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_108;
|
|
L_108 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_107, NULL);
|
|
bool L_109;
|
|
L_109 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_106, L_108, NULL);
|
|
V_23 = L_109;
|
|
bool L_110 = V_23;
|
|
if (!L_110)
|
|
{
|
|
goto IL_0353;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_111 = ___0_array;
|
|
int32_t L_112;
|
|
L_112 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_111, NULL);
|
|
V_24 = L_112;
|
|
int32_t L_113 = V_24;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_114 = (AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)SZArrayNew(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var, (uint32_t)L_113);
|
|
V_25 = L_114;
|
|
int32_t L_115 = V_24;
|
|
V_28 = (bool)((((int32_t)L_115) == ((int32_t)0))? 1 : 0);
|
|
bool L_116 = V_28;
|
|
if (!L_116)
|
|
{
|
|
goto IL_02b5;
|
|
}
|
|
}
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_117 = V_25;
|
|
V_3 = ((*(double*)UnBox((RuntimeObject*)L_117, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_02b5:
|
|
{
|
|
int32_t L_118 = V_24;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_119 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_118) > ((int32_t)L_119)))
|
|
{
|
|
goto IL_02c2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_120 = V_24;
|
|
G_B43_0 = L_120;
|
|
goto IL_02c7;
|
|
}
|
|
|
|
IL_02c2:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_121 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B43_0 = L_121;
|
|
}
|
|
|
|
IL_02c7:
|
|
{
|
|
V_26 = G_B43_0;
|
|
int32_t L_122 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_122, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0333:
|
|
{
|
|
{
|
|
bool L_123 = V_27;
|
|
V_33 = L_123;
|
|
bool L_124 = V_33;
|
|
if (!L_124)
|
|
{
|
|
goto IL_0347;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_125;
|
|
L_125 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0347:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_29 = 0;
|
|
goto IL_0324_1;
|
|
}
|
|
|
|
IL_02da_1:
|
|
{
|
|
int32_t L_126 = V_29;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_127 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_31 = (bool)((((int32_t)((int32_t)(L_126%L_127))) == ((int32_t)0))? 1 : 0);
|
|
bool L_128 = V_31;
|
|
if (!L_128)
|
|
{
|
|
goto IL_0307_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_129;
|
|
L_129 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_27 = (bool)0;
|
|
int32_t L_130 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_130, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
|
|
IL_0307_1:
|
|
{
|
|
intptr_t L_131 = ___0_array;
|
|
int32_t L_132 = V_29;
|
|
intptr_t L_133;
|
|
L_133 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_131, L_132, NULL);
|
|
V_30 = L_133;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_134 = V_25;
|
|
int32_t L_135 = V_29;
|
|
intptr_t L_136 = V_30;
|
|
AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* L_137 = (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)il2cpp_codegen_object_new(AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
AndroidJavaObject__ctor_m0CEE7D570807333CE2C193A82AB3AB8D4F873A6B(L_137, L_136, NULL);
|
|
NullCheck(L_134);
|
|
ArrayElementTypeCheck (L_134, L_137);
|
|
(L_134)->SetAt(static_cast<il2cpp_array_size_t>(L_135), (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)L_137);
|
|
int32_t L_138 = V_29;
|
|
V_29 = ((int32_t)il2cpp_codegen_add(L_138, 1));
|
|
}
|
|
|
|
IL_0324_1:
|
|
{
|
|
int32_t L_139 = V_29;
|
|
int32_t L_140 = V_24;
|
|
V_32 = (bool)((((int32_t)L_139) < ((int32_t)L_140))? 1 : 0);
|
|
bool L_141 = V_32;
|
|
if (L_141)
|
|
{
|
|
goto IL_02da_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0349;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0349:
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_142 = V_25;
|
|
V_3 = ((*(double*)UnBox((RuntimeObject*)L_142, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0353:
|
|
{
|
|
Type_t* L_143 = V_0;
|
|
Type_t* L_144 = L_143;
|
|
if (L_144)
|
|
{
|
|
G_B56_0 = L_144;
|
|
G_B56_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
goto IL_0361;
|
|
}
|
|
G_B55_0 = L_144;
|
|
G_B55_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
}
|
|
{
|
|
G_B57_0 = ((String_t*)(NULL));
|
|
G_B57_1 = G_B55_1;
|
|
goto IL_0366;
|
|
}
|
|
|
|
IL_0361:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B56_0);
|
|
String_t* L_145;
|
|
L_145 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B56_0);
|
|
G_B57_0 = L_145;
|
|
G_B57_1 = G_B56_1;
|
|
}
|
|
|
|
IL_0366:
|
|
{
|
|
String_t* L_146;
|
|
L_146 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(G_B57_1, G_B57_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D)), NULL);
|
|
Exception_t* L_147 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
|
|
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_147, L_146, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_147, method);
|
|
}
|
|
|
|
IL_0376:
|
|
{
|
|
il2cpp_codegen_initobj((&V_34), sizeof(double));
|
|
double L_148 = V_34;
|
|
V_3 = L_148;
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0383:
|
|
{
|
|
double L_149 = V_3;
|
|
return L_149;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int16_t _AndroidJNIHelper_ConvertFromJNIArray_TisInt16_tB8EF286A9C33492FA6E6D6E67320BE93E794A175_m901F767E3189385BB47B5B021C40507AAF67D477_gshared (intptr_t ___0_array, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int16_t V_3 = 0;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
int32_t V_13 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
int32_t V_18 = 0;
|
|
intptr_t V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
bool V_20 = false;
|
|
bool V_21 = false;
|
|
bool V_22 = false;
|
|
bool V_23 = false;
|
|
int32_t V_24 = 0;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* V_25 = NULL;
|
|
int32_t V_26 = 0;
|
|
bool V_27 = false;
|
|
bool V_28 = false;
|
|
int32_t V_29 = 0;
|
|
intptr_t V_30;
|
|
memset((&V_30), 0, sizeof(V_30));
|
|
bool V_31 = false;
|
|
bool V_32 = false;
|
|
bool V_33 = false;
|
|
int16_t V_34 = 0;
|
|
int32_t G_B26_0 = 0;
|
|
int32_t G_B43_0 = 0;
|
|
Type_t* G_B56_0 = NULL;
|
|
String_t* G_B56_1 = NULL;
|
|
Type_t* G_B55_0 = NULL;
|
|
String_t* G_B55_1 = NULL;
|
|
String_t* G_B57_0 = NULL;
|
|
String_t* G_B57_1 = NULL;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
NullCheck(L_1);
|
|
Type_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< Type_t* >::Invoke(64, L_1);
|
|
V_0 = L_2;
|
|
Type_t* L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = AndroidReflection_IsPrimitive_mA41A9ECECE3D73679C79DC8B0FDD32B59570DF25(L_3, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_6 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
bool L_9;
|
|
L_9 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_6, L_8, NULL);
|
|
V_2 = L_9;
|
|
bool L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_11 = ___0_array;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12;
|
|
L_12 = AndroidJNISafe_FromIntArray_mC4C4DC70FFA39CD6E3E02FDAC7192324E6D4614E(L_11, NULL);
|
|
V_3 = ((*(int16_t*)UnBox((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
Type_t* L_13 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.boolean_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
bool L_16;
|
|
L_16 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_13, L_15, NULL);
|
|
V_4 = L_16;
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_18 = ___0_array;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_19;
|
|
L_19 = AndroidJNISafe_FromBooleanArray_m36ED740401185EC0A959CA0F96A324A69E668646(L_18, NULL);
|
|
V_3 = ((*(int16_t*)UnBox((RuntimeObject*)L_19, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_22, NULL);
|
|
V_5 = L_23;
|
|
bool L_24 = V_5;
|
|
if (!L_24)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9((RuntimeObject*)_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2, NULL);
|
|
intptr_t L_25 = ___0_array;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26;
|
|
L_26 = AndroidJNISafe_FromByteArray_mB06EF0FDBF6C738231E8F9D4998C38551131C4C5(L_25, NULL);
|
|
V_3 = ((*(int16_t*)UnBox((RuntimeObject*)L_26, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
Type_t* L_27 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
bool L_30;
|
|
L_30 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_27, L_29, NULL);
|
|
V_6 = L_30;
|
|
bool L_31 = V_6;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_32 = ___0_array;
|
|
SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_33;
|
|
L_33 = AndroidJNISafe_FromSByteArray_m261D638D8B059AB777BEF0BEFDD0822717DFF2B1(L_32, NULL);
|
|
V_3 = ((*(int16_t*)UnBox((RuntimeObject*)L_33, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
Type_t* L_34 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
V_7 = L_37;
|
|
bool L_38 = V_7;
|
|
if (!L_38)
|
|
{
|
|
goto IL_00ec;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_39 = ___0_array;
|
|
Int16U5BU5D_t8175CE8DD9C9F9FB0CF4F58E45BC570575B43CFB* L_40;
|
|
L_40 = AndroidJNISafe_FromShortArray_m62C0CB2D0BAE96D4B8CE365630361150EBE884FC(L_39, NULL);
|
|
V_3 = ((*(int16_t*)UnBox((RuntimeObject*)L_40, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00ec:
|
|
{
|
|
Type_t* L_41 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
V_8 = L_44;
|
|
bool L_45 = V_8;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_46 = ___0_array;
|
|
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_47;
|
|
L_47 = AndroidJNISafe_FromLongArray_mC4D73C0DA27F212947AB85AA2030A35BECDF8288(L_46, NULL);
|
|
V_3 = ((*(int16_t*)UnBox((RuntimeObject*)L_47, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
Type_t* L_48 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
bool L_51;
|
|
L_51 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_48, L_50, NULL);
|
|
V_9 = L_51;
|
|
bool L_52 = V_9;
|
|
if (!L_52)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_53 = ___0_array;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_54;
|
|
L_54 = AndroidJNISafe_FromFloatArray_mDE02985159EEFD2CB28611C797AC21DE8B6300B8(L_53, NULL);
|
|
V_3 = ((*(int16_t*)UnBox((RuntimeObject*)L_54, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
Type_t* L_55 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
bool L_58;
|
|
L_58 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_55, L_57, NULL);
|
|
V_10 = L_58;
|
|
bool L_59 = V_10;
|
|
if (!L_59)
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_60 = ___0_array;
|
|
DoubleU5BU5D_tCC308475BD3B8229DB2582938669EF2F9ECC1FEE* L_61;
|
|
L_61 = AndroidJNISafe_FromDoubleArray_mDEA8F2C7854101272F3A2733F351B570AAD5D9D9(L_60, NULL);
|
|
V_3 = ((*(int16_t*)UnBox((RuntimeObject*)L_61, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0161:
|
|
{
|
|
Type_t* L_62 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.char_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
bool L_65;
|
|
L_65 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_62, L_64, NULL);
|
|
V_11 = L_65;
|
|
bool L_66 = V_11;
|
|
if (!L_66)
|
|
{
|
|
goto IL_0188;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_67 = ___0_array;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68;
|
|
L_68 = AndroidJNISafe_FromCharArray_m54EDC9D2BE92F9973F4E00EE953EE242B231EA96(L_67, NULL);
|
|
V_3 = ((*(int16_t*)UnBox((RuntimeObject*)L_68, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0188:
|
|
{
|
|
goto IL_0376;
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
Type_t* L_69 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_71;
|
|
L_71 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_70, NULL);
|
|
bool L_72;
|
|
L_72 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_69, L_71, NULL);
|
|
V_12 = L_72;
|
|
bool L_73 = V_12;
|
|
if (!L_73)
|
|
{
|
|
goto IL_0272;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_74 = ___0_array;
|
|
int32_t L_75;
|
|
L_75 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_74, NULL);
|
|
V_13 = L_75;
|
|
int32_t L_76 = V_13;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_77 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_76);
|
|
V_14 = L_77;
|
|
int32_t L_78 = V_13;
|
|
V_17 = (bool)((((int32_t)L_78) == ((int32_t)0))? 1 : 0);
|
|
bool L_79 = V_17;
|
|
if (!L_79)
|
|
{
|
|
goto IL_01d1;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_80 = V_14;
|
|
V_3 = ((*(int16_t*)UnBox((RuntimeObject*)L_80, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_01d1:
|
|
{
|
|
int32_t L_81 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_82 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_81) > ((int32_t)L_82)))
|
|
{
|
|
goto IL_01de;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_83 = V_13;
|
|
G_B26_0 = L_83;
|
|
goto IL_01e3;
|
|
}
|
|
|
|
IL_01de:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_84 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B26_0 = L_84;
|
|
}
|
|
|
|
IL_01e3:
|
|
{
|
|
V_15 = G_B26_0;
|
|
int32_t L_85 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_85, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_024f:
|
|
{
|
|
{
|
|
bool L_86 = V_16;
|
|
V_22 = L_86;
|
|
bool L_87 = V_22;
|
|
if (!L_87)
|
|
{
|
|
goto IL_0263;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_88;
|
|
L_88 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0263:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_18 = 0;
|
|
goto IL_0240_1;
|
|
}
|
|
|
|
IL_01f6_1:
|
|
{
|
|
int32_t L_89 = V_18;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_90 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_20 = (bool)((((int32_t)((int32_t)(L_89%L_90))) == ((int32_t)0))? 1 : 0);
|
|
bool L_91 = V_20;
|
|
if (!L_91)
|
|
{
|
|
goto IL_0223_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_92;
|
|
L_92 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_16 = (bool)0;
|
|
int32_t L_93 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_93, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
|
|
IL_0223_1:
|
|
{
|
|
intptr_t L_94 = ___0_array;
|
|
int32_t L_95 = V_18;
|
|
intptr_t L_96;
|
|
L_96 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_94, L_95, NULL);
|
|
V_19 = L_96;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_97 = V_14;
|
|
int32_t L_98 = V_18;
|
|
intptr_t L_99 = V_19;
|
|
String_t* L_100;
|
|
L_100 = AndroidJNISafe_GetStringChars_mE246814CD8FF4EDDEE6EBF107367C4A8EAF03849(L_99, NULL);
|
|
NullCheck(L_97);
|
|
(L_97)->SetAt(static_cast<il2cpp_array_size_t>(L_98), (String_t*)L_100);
|
|
int32_t L_101 = V_18;
|
|
V_18 = ((int32_t)il2cpp_codegen_add(L_101, 1));
|
|
}
|
|
|
|
IL_0240_1:
|
|
{
|
|
int32_t L_102 = V_18;
|
|
int32_t L_103 = V_13;
|
|
V_21 = (bool)((((int32_t)L_102) < ((int32_t)L_103))? 1 : 0);
|
|
bool L_104 = V_21;
|
|
if (L_104)
|
|
{
|
|
goto IL_01f6_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0265;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0265:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_105 = V_14;
|
|
V_3 = ((*(int16_t*)UnBox((RuntimeObject*)L_105, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0272:
|
|
{
|
|
Type_t* L_106 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_107 = { reinterpret_cast<intptr_t> (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_108;
|
|
L_108 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_107, NULL);
|
|
bool L_109;
|
|
L_109 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_106, L_108, NULL);
|
|
V_23 = L_109;
|
|
bool L_110 = V_23;
|
|
if (!L_110)
|
|
{
|
|
goto IL_0353;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_111 = ___0_array;
|
|
int32_t L_112;
|
|
L_112 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_111, NULL);
|
|
V_24 = L_112;
|
|
int32_t L_113 = V_24;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_114 = (AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)SZArrayNew(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var, (uint32_t)L_113);
|
|
V_25 = L_114;
|
|
int32_t L_115 = V_24;
|
|
V_28 = (bool)((((int32_t)L_115) == ((int32_t)0))? 1 : 0);
|
|
bool L_116 = V_28;
|
|
if (!L_116)
|
|
{
|
|
goto IL_02b5;
|
|
}
|
|
}
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_117 = V_25;
|
|
V_3 = ((*(int16_t*)UnBox((RuntimeObject*)L_117, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_02b5:
|
|
{
|
|
int32_t L_118 = V_24;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_119 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_118) > ((int32_t)L_119)))
|
|
{
|
|
goto IL_02c2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_120 = V_24;
|
|
G_B43_0 = L_120;
|
|
goto IL_02c7;
|
|
}
|
|
|
|
IL_02c2:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_121 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B43_0 = L_121;
|
|
}
|
|
|
|
IL_02c7:
|
|
{
|
|
V_26 = G_B43_0;
|
|
int32_t L_122 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_122, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0333:
|
|
{
|
|
{
|
|
bool L_123 = V_27;
|
|
V_33 = L_123;
|
|
bool L_124 = V_33;
|
|
if (!L_124)
|
|
{
|
|
goto IL_0347;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_125;
|
|
L_125 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0347:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_29 = 0;
|
|
goto IL_0324_1;
|
|
}
|
|
|
|
IL_02da_1:
|
|
{
|
|
int32_t L_126 = V_29;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_127 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_31 = (bool)((((int32_t)((int32_t)(L_126%L_127))) == ((int32_t)0))? 1 : 0);
|
|
bool L_128 = V_31;
|
|
if (!L_128)
|
|
{
|
|
goto IL_0307_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_129;
|
|
L_129 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_27 = (bool)0;
|
|
int32_t L_130 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_130, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
|
|
IL_0307_1:
|
|
{
|
|
intptr_t L_131 = ___0_array;
|
|
int32_t L_132 = V_29;
|
|
intptr_t L_133;
|
|
L_133 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_131, L_132, NULL);
|
|
V_30 = L_133;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_134 = V_25;
|
|
int32_t L_135 = V_29;
|
|
intptr_t L_136 = V_30;
|
|
AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* L_137 = (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)il2cpp_codegen_object_new(AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
AndroidJavaObject__ctor_m0CEE7D570807333CE2C193A82AB3AB8D4F873A6B(L_137, L_136, NULL);
|
|
NullCheck(L_134);
|
|
ArrayElementTypeCheck (L_134, L_137);
|
|
(L_134)->SetAt(static_cast<il2cpp_array_size_t>(L_135), (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)L_137);
|
|
int32_t L_138 = V_29;
|
|
V_29 = ((int32_t)il2cpp_codegen_add(L_138, 1));
|
|
}
|
|
|
|
IL_0324_1:
|
|
{
|
|
int32_t L_139 = V_29;
|
|
int32_t L_140 = V_24;
|
|
V_32 = (bool)((((int32_t)L_139) < ((int32_t)L_140))? 1 : 0);
|
|
bool L_141 = V_32;
|
|
if (L_141)
|
|
{
|
|
goto IL_02da_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0349;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0349:
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_142 = V_25;
|
|
V_3 = ((*(int16_t*)UnBox((RuntimeObject*)L_142, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0353:
|
|
{
|
|
Type_t* L_143 = V_0;
|
|
Type_t* L_144 = L_143;
|
|
if (L_144)
|
|
{
|
|
G_B56_0 = L_144;
|
|
G_B56_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
goto IL_0361;
|
|
}
|
|
G_B55_0 = L_144;
|
|
G_B55_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
}
|
|
{
|
|
G_B57_0 = ((String_t*)(NULL));
|
|
G_B57_1 = G_B55_1;
|
|
goto IL_0366;
|
|
}
|
|
|
|
IL_0361:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B56_0);
|
|
String_t* L_145;
|
|
L_145 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B56_0);
|
|
G_B57_0 = L_145;
|
|
G_B57_1 = G_B56_1;
|
|
}
|
|
|
|
IL_0366:
|
|
{
|
|
String_t* L_146;
|
|
L_146 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(G_B57_1, G_B57_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D)), NULL);
|
|
Exception_t* L_147 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
|
|
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_147, L_146, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_147, method);
|
|
}
|
|
|
|
IL_0376:
|
|
{
|
|
il2cpp_codegen_initobj((&V_34), sizeof(int16_t));
|
|
int16_t L_148 = V_34;
|
|
V_3 = L_148;
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0383:
|
|
{
|
|
int16_t L_149 = V_3;
|
|
return L_149;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t _AndroidJNIHelper_ConvertFromJNIArray_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_m37A94A4CA9F6456009CABE27D4AA2ED7B8365168_gshared (intptr_t ___0_array, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
int32_t V_13 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
int32_t V_18 = 0;
|
|
intptr_t V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
bool V_20 = false;
|
|
bool V_21 = false;
|
|
bool V_22 = false;
|
|
bool V_23 = false;
|
|
int32_t V_24 = 0;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* V_25 = NULL;
|
|
int32_t V_26 = 0;
|
|
bool V_27 = false;
|
|
bool V_28 = false;
|
|
int32_t V_29 = 0;
|
|
intptr_t V_30;
|
|
memset((&V_30), 0, sizeof(V_30));
|
|
bool V_31 = false;
|
|
bool V_32 = false;
|
|
bool V_33 = false;
|
|
int32_t V_34 = 0;
|
|
int32_t G_B26_0 = 0;
|
|
int32_t G_B43_0 = 0;
|
|
Type_t* G_B56_0 = NULL;
|
|
String_t* G_B56_1 = NULL;
|
|
Type_t* G_B55_0 = NULL;
|
|
String_t* G_B55_1 = NULL;
|
|
String_t* G_B57_0 = NULL;
|
|
String_t* G_B57_1 = NULL;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
NullCheck(L_1);
|
|
Type_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< Type_t* >::Invoke(64, L_1);
|
|
V_0 = L_2;
|
|
Type_t* L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = AndroidReflection_IsPrimitive_mA41A9ECECE3D73679C79DC8B0FDD32B59570DF25(L_3, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_6 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
bool L_9;
|
|
L_9 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_6, L_8, NULL);
|
|
V_2 = L_9;
|
|
bool L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_11 = ___0_array;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12;
|
|
L_12 = AndroidJNISafe_FromIntArray_mC4C4DC70FFA39CD6E3E02FDAC7192324E6D4614E(L_11, NULL);
|
|
V_3 = ((*(int32_t*)UnBox((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
Type_t* L_13 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.boolean_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
bool L_16;
|
|
L_16 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_13, L_15, NULL);
|
|
V_4 = L_16;
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_18 = ___0_array;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_19;
|
|
L_19 = AndroidJNISafe_FromBooleanArray_m36ED740401185EC0A959CA0F96A324A69E668646(L_18, NULL);
|
|
V_3 = ((*(int32_t*)UnBox((RuntimeObject*)L_19, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_22, NULL);
|
|
V_5 = L_23;
|
|
bool L_24 = V_5;
|
|
if (!L_24)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9((RuntimeObject*)_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2, NULL);
|
|
intptr_t L_25 = ___0_array;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26;
|
|
L_26 = AndroidJNISafe_FromByteArray_mB06EF0FDBF6C738231E8F9D4998C38551131C4C5(L_25, NULL);
|
|
V_3 = ((*(int32_t*)UnBox((RuntimeObject*)L_26, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
Type_t* L_27 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
bool L_30;
|
|
L_30 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_27, L_29, NULL);
|
|
V_6 = L_30;
|
|
bool L_31 = V_6;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_32 = ___0_array;
|
|
SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_33;
|
|
L_33 = AndroidJNISafe_FromSByteArray_m261D638D8B059AB777BEF0BEFDD0822717DFF2B1(L_32, NULL);
|
|
V_3 = ((*(int32_t*)UnBox((RuntimeObject*)L_33, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
Type_t* L_34 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
V_7 = L_37;
|
|
bool L_38 = V_7;
|
|
if (!L_38)
|
|
{
|
|
goto IL_00ec;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_39 = ___0_array;
|
|
Int16U5BU5D_t8175CE8DD9C9F9FB0CF4F58E45BC570575B43CFB* L_40;
|
|
L_40 = AndroidJNISafe_FromShortArray_m62C0CB2D0BAE96D4B8CE365630361150EBE884FC(L_39, NULL);
|
|
V_3 = ((*(int32_t*)UnBox((RuntimeObject*)L_40, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00ec:
|
|
{
|
|
Type_t* L_41 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
V_8 = L_44;
|
|
bool L_45 = V_8;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_46 = ___0_array;
|
|
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_47;
|
|
L_47 = AndroidJNISafe_FromLongArray_mC4D73C0DA27F212947AB85AA2030A35BECDF8288(L_46, NULL);
|
|
V_3 = ((*(int32_t*)UnBox((RuntimeObject*)L_47, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
Type_t* L_48 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
bool L_51;
|
|
L_51 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_48, L_50, NULL);
|
|
V_9 = L_51;
|
|
bool L_52 = V_9;
|
|
if (!L_52)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_53 = ___0_array;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_54;
|
|
L_54 = AndroidJNISafe_FromFloatArray_mDE02985159EEFD2CB28611C797AC21DE8B6300B8(L_53, NULL);
|
|
V_3 = ((*(int32_t*)UnBox((RuntimeObject*)L_54, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
Type_t* L_55 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
bool L_58;
|
|
L_58 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_55, L_57, NULL);
|
|
V_10 = L_58;
|
|
bool L_59 = V_10;
|
|
if (!L_59)
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_60 = ___0_array;
|
|
DoubleU5BU5D_tCC308475BD3B8229DB2582938669EF2F9ECC1FEE* L_61;
|
|
L_61 = AndroidJNISafe_FromDoubleArray_mDEA8F2C7854101272F3A2733F351B570AAD5D9D9(L_60, NULL);
|
|
V_3 = ((*(int32_t*)UnBox((RuntimeObject*)L_61, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0161:
|
|
{
|
|
Type_t* L_62 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.char_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
bool L_65;
|
|
L_65 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_62, L_64, NULL);
|
|
V_11 = L_65;
|
|
bool L_66 = V_11;
|
|
if (!L_66)
|
|
{
|
|
goto IL_0188;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_67 = ___0_array;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68;
|
|
L_68 = AndroidJNISafe_FromCharArray_m54EDC9D2BE92F9973F4E00EE953EE242B231EA96(L_67, NULL);
|
|
V_3 = ((*(int32_t*)UnBox((RuntimeObject*)L_68, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0188:
|
|
{
|
|
goto IL_0376;
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
Type_t* L_69 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_71;
|
|
L_71 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_70, NULL);
|
|
bool L_72;
|
|
L_72 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_69, L_71, NULL);
|
|
V_12 = L_72;
|
|
bool L_73 = V_12;
|
|
if (!L_73)
|
|
{
|
|
goto IL_0272;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_74 = ___0_array;
|
|
int32_t L_75;
|
|
L_75 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_74, NULL);
|
|
V_13 = L_75;
|
|
int32_t L_76 = V_13;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_77 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_76);
|
|
V_14 = L_77;
|
|
int32_t L_78 = V_13;
|
|
V_17 = (bool)((((int32_t)L_78) == ((int32_t)0))? 1 : 0);
|
|
bool L_79 = V_17;
|
|
if (!L_79)
|
|
{
|
|
goto IL_01d1;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_80 = V_14;
|
|
V_3 = ((*(int32_t*)UnBox((RuntimeObject*)L_80, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_01d1:
|
|
{
|
|
int32_t L_81 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_82 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_81) > ((int32_t)L_82)))
|
|
{
|
|
goto IL_01de;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_83 = V_13;
|
|
G_B26_0 = L_83;
|
|
goto IL_01e3;
|
|
}
|
|
|
|
IL_01de:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_84 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B26_0 = L_84;
|
|
}
|
|
|
|
IL_01e3:
|
|
{
|
|
V_15 = G_B26_0;
|
|
int32_t L_85 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_85, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_024f:
|
|
{
|
|
{
|
|
bool L_86 = V_16;
|
|
V_22 = L_86;
|
|
bool L_87 = V_22;
|
|
if (!L_87)
|
|
{
|
|
goto IL_0263;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_88;
|
|
L_88 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0263:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_18 = 0;
|
|
goto IL_0240_1;
|
|
}
|
|
|
|
IL_01f6_1:
|
|
{
|
|
int32_t L_89 = V_18;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_90 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_20 = (bool)((((int32_t)((int32_t)(L_89%L_90))) == ((int32_t)0))? 1 : 0);
|
|
bool L_91 = V_20;
|
|
if (!L_91)
|
|
{
|
|
goto IL_0223_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_92;
|
|
L_92 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_16 = (bool)0;
|
|
int32_t L_93 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_93, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
|
|
IL_0223_1:
|
|
{
|
|
intptr_t L_94 = ___0_array;
|
|
int32_t L_95 = V_18;
|
|
intptr_t L_96;
|
|
L_96 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_94, L_95, NULL);
|
|
V_19 = L_96;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_97 = V_14;
|
|
int32_t L_98 = V_18;
|
|
intptr_t L_99 = V_19;
|
|
String_t* L_100;
|
|
L_100 = AndroidJNISafe_GetStringChars_mE246814CD8FF4EDDEE6EBF107367C4A8EAF03849(L_99, NULL);
|
|
NullCheck(L_97);
|
|
(L_97)->SetAt(static_cast<il2cpp_array_size_t>(L_98), (String_t*)L_100);
|
|
int32_t L_101 = V_18;
|
|
V_18 = ((int32_t)il2cpp_codegen_add(L_101, 1));
|
|
}
|
|
|
|
IL_0240_1:
|
|
{
|
|
int32_t L_102 = V_18;
|
|
int32_t L_103 = V_13;
|
|
V_21 = (bool)((((int32_t)L_102) < ((int32_t)L_103))? 1 : 0);
|
|
bool L_104 = V_21;
|
|
if (L_104)
|
|
{
|
|
goto IL_01f6_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0265;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0265:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_105 = V_14;
|
|
V_3 = ((*(int32_t*)UnBox((RuntimeObject*)L_105, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0272:
|
|
{
|
|
Type_t* L_106 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_107 = { reinterpret_cast<intptr_t> (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_108;
|
|
L_108 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_107, NULL);
|
|
bool L_109;
|
|
L_109 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_106, L_108, NULL);
|
|
V_23 = L_109;
|
|
bool L_110 = V_23;
|
|
if (!L_110)
|
|
{
|
|
goto IL_0353;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_111 = ___0_array;
|
|
int32_t L_112;
|
|
L_112 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_111, NULL);
|
|
V_24 = L_112;
|
|
int32_t L_113 = V_24;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_114 = (AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)SZArrayNew(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var, (uint32_t)L_113);
|
|
V_25 = L_114;
|
|
int32_t L_115 = V_24;
|
|
V_28 = (bool)((((int32_t)L_115) == ((int32_t)0))? 1 : 0);
|
|
bool L_116 = V_28;
|
|
if (!L_116)
|
|
{
|
|
goto IL_02b5;
|
|
}
|
|
}
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_117 = V_25;
|
|
V_3 = ((*(int32_t*)UnBox((RuntimeObject*)L_117, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_02b5:
|
|
{
|
|
int32_t L_118 = V_24;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_119 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_118) > ((int32_t)L_119)))
|
|
{
|
|
goto IL_02c2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_120 = V_24;
|
|
G_B43_0 = L_120;
|
|
goto IL_02c7;
|
|
}
|
|
|
|
IL_02c2:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_121 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B43_0 = L_121;
|
|
}
|
|
|
|
IL_02c7:
|
|
{
|
|
V_26 = G_B43_0;
|
|
int32_t L_122 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_122, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0333:
|
|
{
|
|
{
|
|
bool L_123 = V_27;
|
|
V_33 = L_123;
|
|
bool L_124 = V_33;
|
|
if (!L_124)
|
|
{
|
|
goto IL_0347;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_125;
|
|
L_125 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0347:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_29 = 0;
|
|
goto IL_0324_1;
|
|
}
|
|
|
|
IL_02da_1:
|
|
{
|
|
int32_t L_126 = V_29;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_127 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_31 = (bool)((((int32_t)((int32_t)(L_126%L_127))) == ((int32_t)0))? 1 : 0);
|
|
bool L_128 = V_31;
|
|
if (!L_128)
|
|
{
|
|
goto IL_0307_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_129;
|
|
L_129 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_27 = (bool)0;
|
|
int32_t L_130 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_130, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
|
|
IL_0307_1:
|
|
{
|
|
intptr_t L_131 = ___0_array;
|
|
int32_t L_132 = V_29;
|
|
intptr_t L_133;
|
|
L_133 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_131, L_132, NULL);
|
|
V_30 = L_133;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_134 = V_25;
|
|
int32_t L_135 = V_29;
|
|
intptr_t L_136 = V_30;
|
|
AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* L_137 = (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)il2cpp_codegen_object_new(AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
AndroidJavaObject__ctor_m0CEE7D570807333CE2C193A82AB3AB8D4F873A6B(L_137, L_136, NULL);
|
|
NullCheck(L_134);
|
|
ArrayElementTypeCheck (L_134, L_137);
|
|
(L_134)->SetAt(static_cast<il2cpp_array_size_t>(L_135), (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)L_137);
|
|
int32_t L_138 = V_29;
|
|
V_29 = ((int32_t)il2cpp_codegen_add(L_138, 1));
|
|
}
|
|
|
|
IL_0324_1:
|
|
{
|
|
int32_t L_139 = V_29;
|
|
int32_t L_140 = V_24;
|
|
V_32 = (bool)((((int32_t)L_139) < ((int32_t)L_140))? 1 : 0);
|
|
bool L_141 = V_32;
|
|
if (L_141)
|
|
{
|
|
goto IL_02da_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0349;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0349:
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_142 = V_25;
|
|
V_3 = ((*(int32_t*)UnBox((RuntimeObject*)L_142, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0353:
|
|
{
|
|
Type_t* L_143 = V_0;
|
|
Type_t* L_144 = L_143;
|
|
if (L_144)
|
|
{
|
|
G_B56_0 = L_144;
|
|
G_B56_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
goto IL_0361;
|
|
}
|
|
G_B55_0 = L_144;
|
|
G_B55_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
}
|
|
{
|
|
G_B57_0 = ((String_t*)(NULL));
|
|
G_B57_1 = G_B55_1;
|
|
goto IL_0366;
|
|
}
|
|
|
|
IL_0361:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B56_0);
|
|
String_t* L_145;
|
|
L_145 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B56_0);
|
|
G_B57_0 = L_145;
|
|
G_B57_1 = G_B56_1;
|
|
}
|
|
|
|
IL_0366:
|
|
{
|
|
String_t* L_146;
|
|
L_146 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(G_B57_1, G_B57_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D)), NULL);
|
|
Exception_t* L_147 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
|
|
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_147, L_146, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_147, method);
|
|
}
|
|
|
|
IL_0376:
|
|
{
|
|
il2cpp_codegen_initobj((&V_34), sizeof(int32_t));
|
|
int32_t L_148 = V_34;
|
|
V_3 = L_148;
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0383:
|
|
{
|
|
int32_t L_149 = V_3;
|
|
return L_149;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t _AndroidJNIHelper_ConvertFromJNIArray_TisInt64_t092CFB123BE63C28ACDAF65C68F21A526050DBA3_mBE697F1C4D60A7F2BB06784B5CB0C540B7FBF664_gshared (intptr_t ___0_array, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int64_t V_3 = 0;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
int32_t V_13 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
int32_t V_18 = 0;
|
|
intptr_t V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
bool V_20 = false;
|
|
bool V_21 = false;
|
|
bool V_22 = false;
|
|
bool V_23 = false;
|
|
int32_t V_24 = 0;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* V_25 = NULL;
|
|
int32_t V_26 = 0;
|
|
bool V_27 = false;
|
|
bool V_28 = false;
|
|
int32_t V_29 = 0;
|
|
intptr_t V_30;
|
|
memset((&V_30), 0, sizeof(V_30));
|
|
bool V_31 = false;
|
|
bool V_32 = false;
|
|
bool V_33 = false;
|
|
int64_t V_34 = 0;
|
|
int32_t G_B26_0 = 0;
|
|
int32_t G_B43_0 = 0;
|
|
Type_t* G_B56_0 = NULL;
|
|
String_t* G_B56_1 = NULL;
|
|
Type_t* G_B55_0 = NULL;
|
|
String_t* G_B55_1 = NULL;
|
|
String_t* G_B57_0 = NULL;
|
|
String_t* G_B57_1 = NULL;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
NullCheck(L_1);
|
|
Type_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< Type_t* >::Invoke(64, L_1);
|
|
V_0 = L_2;
|
|
Type_t* L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = AndroidReflection_IsPrimitive_mA41A9ECECE3D73679C79DC8B0FDD32B59570DF25(L_3, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_6 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
bool L_9;
|
|
L_9 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_6, L_8, NULL);
|
|
V_2 = L_9;
|
|
bool L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_11 = ___0_array;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12;
|
|
L_12 = AndroidJNISafe_FromIntArray_mC4C4DC70FFA39CD6E3E02FDAC7192324E6D4614E(L_11, NULL);
|
|
V_3 = ((*(int64_t*)UnBox((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
Type_t* L_13 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.boolean_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
bool L_16;
|
|
L_16 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_13, L_15, NULL);
|
|
V_4 = L_16;
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_18 = ___0_array;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_19;
|
|
L_19 = AndroidJNISafe_FromBooleanArray_m36ED740401185EC0A959CA0F96A324A69E668646(L_18, NULL);
|
|
V_3 = ((*(int64_t*)UnBox((RuntimeObject*)L_19, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_22, NULL);
|
|
V_5 = L_23;
|
|
bool L_24 = V_5;
|
|
if (!L_24)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9((RuntimeObject*)_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2, NULL);
|
|
intptr_t L_25 = ___0_array;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26;
|
|
L_26 = AndroidJNISafe_FromByteArray_mB06EF0FDBF6C738231E8F9D4998C38551131C4C5(L_25, NULL);
|
|
V_3 = ((*(int64_t*)UnBox((RuntimeObject*)L_26, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
Type_t* L_27 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
bool L_30;
|
|
L_30 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_27, L_29, NULL);
|
|
V_6 = L_30;
|
|
bool L_31 = V_6;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_32 = ___0_array;
|
|
SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_33;
|
|
L_33 = AndroidJNISafe_FromSByteArray_m261D638D8B059AB777BEF0BEFDD0822717DFF2B1(L_32, NULL);
|
|
V_3 = ((*(int64_t*)UnBox((RuntimeObject*)L_33, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
Type_t* L_34 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
V_7 = L_37;
|
|
bool L_38 = V_7;
|
|
if (!L_38)
|
|
{
|
|
goto IL_00ec;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_39 = ___0_array;
|
|
Int16U5BU5D_t8175CE8DD9C9F9FB0CF4F58E45BC570575B43CFB* L_40;
|
|
L_40 = AndroidJNISafe_FromShortArray_m62C0CB2D0BAE96D4B8CE365630361150EBE884FC(L_39, NULL);
|
|
V_3 = ((*(int64_t*)UnBox((RuntimeObject*)L_40, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00ec:
|
|
{
|
|
Type_t* L_41 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
V_8 = L_44;
|
|
bool L_45 = V_8;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_46 = ___0_array;
|
|
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_47;
|
|
L_47 = AndroidJNISafe_FromLongArray_mC4D73C0DA27F212947AB85AA2030A35BECDF8288(L_46, NULL);
|
|
V_3 = ((*(int64_t*)UnBox((RuntimeObject*)L_47, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
Type_t* L_48 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
bool L_51;
|
|
L_51 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_48, L_50, NULL);
|
|
V_9 = L_51;
|
|
bool L_52 = V_9;
|
|
if (!L_52)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_53 = ___0_array;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_54;
|
|
L_54 = AndroidJNISafe_FromFloatArray_mDE02985159EEFD2CB28611C797AC21DE8B6300B8(L_53, NULL);
|
|
V_3 = ((*(int64_t*)UnBox((RuntimeObject*)L_54, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
Type_t* L_55 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
bool L_58;
|
|
L_58 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_55, L_57, NULL);
|
|
V_10 = L_58;
|
|
bool L_59 = V_10;
|
|
if (!L_59)
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_60 = ___0_array;
|
|
DoubleU5BU5D_tCC308475BD3B8229DB2582938669EF2F9ECC1FEE* L_61;
|
|
L_61 = AndroidJNISafe_FromDoubleArray_mDEA8F2C7854101272F3A2733F351B570AAD5D9D9(L_60, NULL);
|
|
V_3 = ((*(int64_t*)UnBox((RuntimeObject*)L_61, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0161:
|
|
{
|
|
Type_t* L_62 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.char_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
bool L_65;
|
|
L_65 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_62, L_64, NULL);
|
|
V_11 = L_65;
|
|
bool L_66 = V_11;
|
|
if (!L_66)
|
|
{
|
|
goto IL_0188;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_67 = ___0_array;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68;
|
|
L_68 = AndroidJNISafe_FromCharArray_m54EDC9D2BE92F9973F4E00EE953EE242B231EA96(L_67, NULL);
|
|
V_3 = ((*(int64_t*)UnBox((RuntimeObject*)L_68, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0188:
|
|
{
|
|
goto IL_0376;
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
Type_t* L_69 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_71;
|
|
L_71 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_70, NULL);
|
|
bool L_72;
|
|
L_72 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_69, L_71, NULL);
|
|
V_12 = L_72;
|
|
bool L_73 = V_12;
|
|
if (!L_73)
|
|
{
|
|
goto IL_0272;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_74 = ___0_array;
|
|
int32_t L_75;
|
|
L_75 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_74, NULL);
|
|
V_13 = L_75;
|
|
int32_t L_76 = V_13;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_77 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_76);
|
|
V_14 = L_77;
|
|
int32_t L_78 = V_13;
|
|
V_17 = (bool)((((int32_t)L_78) == ((int32_t)0))? 1 : 0);
|
|
bool L_79 = V_17;
|
|
if (!L_79)
|
|
{
|
|
goto IL_01d1;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_80 = V_14;
|
|
V_3 = ((*(int64_t*)UnBox((RuntimeObject*)L_80, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_01d1:
|
|
{
|
|
int32_t L_81 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_82 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_81) > ((int32_t)L_82)))
|
|
{
|
|
goto IL_01de;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_83 = V_13;
|
|
G_B26_0 = L_83;
|
|
goto IL_01e3;
|
|
}
|
|
|
|
IL_01de:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_84 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B26_0 = L_84;
|
|
}
|
|
|
|
IL_01e3:
|
|
{
|
|
V_15 = G_B26_0;
|
|
int32_t L_85 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_85, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_024f:
|
|
{
|
|
{
|
|
bool L_86 = V_16;
|
|
V_22 = L_86;
|
|
bool L_87 = V_22;
|
|
if (!L_87)
|
|
{
|
|
goto IL_0263;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_88;
|
|
L_88 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0263:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_18 = 0;
|
|
goto IL_0240_1;
|
|
}
|
|
|
|
IL_01f6_1:
|
|
{
|
|
int32_t L_89 = V_18;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_90 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_20 = (bool)((((int32_t)((int32_t)(L_89%L_90))) == ((int32_t)0))? 1 : 0);
|
|
bool L_91 = V_20;
|
|
if (!L_91)
|
|
{
|
|
goto IL_0223_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_92;
|
|
L_92 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_16 = (bool)0;
|
|
int32_t L_93 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_93, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
|
|
IL_0223_1:
|
|
{
|
|
intptr_t L_94 = ___0_array;
|
|
int32_t L_95 = V_18;
|
|
intptr_t L_96;
|
|
L_96 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_94, L_95, NULL);
|
|
V_19 = L_96;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_97 = V_14;
|
|
int32_t L_98 = V_18;
|
|
intptr_t L_99 = V_19;
|
|
String_t* L_100;
|
|
L_100 = AndroidJNISafe_GetStringChars_mE246814CD8FF4EDDEE6EBF107367C4A8EAF03849(L_99, NULL);
|
|
NullCheck(L_97);
|
|
(L_97)->SetAt(static_cast<il2cpp_array_size_t>(L_98), (String_t*)L_100);
|
|
int32_t L_101 = V_18;
|
|
V_18 = ((int32_t)il2cpp_codegen_add(L_101, 1));
|
|
}
|
|
|
|
IL_0240_1:
|
|
{
|
|
int32_t L_102 = V_18;
|
|
int32_t L_103 = V_13;
|
|
V_21 = (bool)((((int32_t)L_102) < ((int32_t)L_103))? 1 : 0);
|
|
bool L_104 = V_21;
|
|
if (L_104)
|
|
{
|
|
goto IL_01f6_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0265;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0265:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_105 = V_14;
|
|
V_3 = ((*(int64_t*)UnBox((RuntimeObject*)L_105, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0272:
|
|
{
|
|
Type_t* L_106 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_107 = { reinterpret_cast<intptr_t> (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_108;
|
|
L_108 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_107, NULL);
|
|
bool L_109;
|
|
L_109 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_106, L_108, NULL);
|
|
V_23 = L_109;
|
|
bool L_110 = V_23;
|
|
if (!L_110)
|
|
{
|
|
goto IL_0353;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_111 = ___0_array;
|
|
int32_t L_112;
|
|
L_112 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_111, NULL);
|
|
V_24 = L_112;
|
|
int32_t L_113 = V_24;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_114 = (AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)SZArrayNew(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var, (uint32_t)L_113);
|
|
V_25 = L_114;
|
|
int32_t L_115 = V_24;
|
|
V_28 = (bool)((((int32_t)L_115) == ((int32_t)0))? 1 : 0);
|
|
bool L_116 = V_28;
|
|
if (!L_116)
|
|
{
|
|
goto IL_02b5;
|
|
}
|
|
}
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_117 = V_25;
|
|
V_3 = ((*(int64_t*)UnBox((RuntimeObject*)L_117, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_02b5:
|
|
{
|
|
int32_t L_118 = V_24;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_119 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_118) > ((int32_t)L_119)))
|
|
{
|
|
goto IL_02c2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_120 = V_24;
|
|
G_B43_0 = L_120;
|
|
goto IL_02c7;
|
|
}
|
|
|
|
IL_02c2:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_121 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B43_0 = L_121;
|
|
}
|
|
|
|
IL_02c7:
|
|
{
|
|
V_26 = G_B43_0;
|
|
int32_t L_122 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_122, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0333:
|
|
{
|
|
{
|
|
bool L_123 = V_27;
|
|
V_33 = L_123;
|
|
bool L_124 = V_33;
|
|
if (!L_124)
|
|
{
|
|
goto IL_0347;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_125;
|
|
L_125 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0347:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_29 = 0;
|
|
goto IL_0324_1;
|
|
}
|
|
|
|
IL_02da_1:
|
|
{
|
|
int32_t L_126 = V_29;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_127 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_31 = (bool)((((int32_t)((int32_t)(L_126%L_127))) == ((int32_t)0))? 1 : 0);
|
|
bool L_128 = V_31;
|
|
if (!L_128)
|
|
{
|
|
goto IL_0307_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_129;
|
|
L_129 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_27 = (bool)0;
|
|
int32_t L_130 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_130, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
|
|
IL_0307_1:
|
|
{
|
|
intptr_t L_131 = ___0_array;
|
|
int32_t L_132 = V_29;
|
|
intptr_t L_133;
|
|
L_133 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_131, L_132, NULL);
|
|
V_30 = L_133;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_134 = V_25;
|
|
int32_t L_135 = V_29;
|
|
intptr_t L_136 = V_30;
|
|
AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* L_137 = (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)il2cpp_codegen_object_new(AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
AndroidJavaObject__ctor_m0CEE7D570807333CE2C193A82AB3AB8D4F873A6B(L_137, L_136, NULL);
|
|
NullCheck(L_134);
|
|
ArrayElementTypeCheck (L_134, L_137);
|
|
(L_134)->SetAt(static_cast<il2cpp_array_size_t>(L_135), (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)L_137);
|
|
int32_t L_138 = V_29;
|
|
V_29 = ((int32_t)il2cpp_codegen_add(L_138, 1));
|
|
}
|
|
|
|
IL_0324_1:
|
|
{
|
|
int32_t L_139 = V_29;
|
|
int32_t L_140 = V_24;
|
|
V_32 = (bool)((((int32_t)L_139) < ((int32_t)L_140))? 1 : 0);
|
|
bool L_141 = V_32;
|
|
if (L_141)
|
|
{
|
|
goto IL_02da_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0349;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0349:
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_142 = V_25;
|
|
V_3 = ((*(int64_t*)UnBox((RuntimeObject*)L_142, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0353:
|
|
{
|
|
Type_t* L_143 = V_0;
|
|
Type_t* L_144 = L_143;
|
|
if (L_144)
|
|
{
|
|
G_B56_0 = L_144;
|
|
G_B56_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
goto IL_0361;
|
|
}
|
|
G_B55_0 = L_144;
|
|
G_B55_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
}
|
|
{
|
|
G_B57_0 = ((String_t*)(NULL));
|
|
G_B57_1 = G_B55_1;
|
|
goto IL_0366;
|
|
}
|
|
|
|
IL_0361:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B56_0);
|
|
String_t* L_145;
|
|
L_145 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B56_0);
|
|
G_B57_0 = L_145;
|
|
G_B57_1 = G_B56_1;
|
|
}
|
|
|
|
IL_0366:
|
|
{
|
|
String_t* L_146;
|
|
L_146 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(G_B57_1, G_B57_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D)), NULL);
|
|
Exception_t* L_147 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
|
|
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_147, L_146, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_147, method);
|
|
}
|
|
|
|
IL_0376:
|
|
{
|
|
il2cpp_codegen_initobj((&V_34), sizeof(int64_t));
|
|
int64_t L_148 = V_34;
|
|
V_3 = L_148;
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0383:
|
|
{
|
|
int64_t L_149 = V_3;
|
|
return L_149;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* _AndroidJNIHelper_ConvertFromJNIArray_TisRuntimeObject_m14AEE119AA362E7E6CA1E751688932596432A71D_gshared (intptr_t ___0_array, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
RuntimeObject* V_3 = NULL;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
int32_t V_13 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
int32_t V_18 = 0;
|
|
intptr_t V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
bool V_20 = false;
|
|
bool V_21 = false;
|
|
bool V_22 = false;
|
|
bool V_23 = false;
|
|
int32_t V_24 = 0;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* V_25 = NULL;
|
|
int32_t V_26 = 0;
|
|
bool V_27 = false;
|
|
bool V_28 = false;
|
|
int32_t V_29 = 0;
|
|
intptr_t V_30;
|
|
memset((&V_30), 0, sizeof(V_30));
|
|
bool V_31 = false;
|
|
bool V_32 = false;
|
|
bool V_33 = false;
|
|
RuntimeObject* V_34 = NULL;
|
|
int32_t G_B26_0 = 0;
|
|
int32_t G_B43_0 = 0;
|
|
Type_t* G_B56_0 = NULL;
|
|
String_t* G_B56_1 = NULL;
|
|
Type_t* G_B55_0 = NULL;
|
|
String_t* G_B55_1 = NULL;
|
|
String_t* G_B57_0 = NULL;
|
|
String_t* G_B57_1 = NULL;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
NullCheck(L_1);
|
|
Type_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< Type_t* >::Invoke(64, L_1);
|
|
V_0 = L_2;
|
|
Type_t* L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = AndroidReflection_IsPrimitive_mA41A9ECECE3D73679C79DC8B0FDD32B59570DF25(L_3, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_6 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
bool L_9;
|
|
L_9 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_6, L_8, NULL);
|
|
V_2 = L_9;
|
|
bool L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_11 = ___0_array;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12;
|
|
L_12 = AndroidJNISafe_FromIntArray_mC4C4DC70FFA39CD6E3E02FDAC7192324E6D4614E(L_11, NULL);
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
Type_t* L_13 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.boolean_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
bool L_16;
|
|
L_16 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_13, L_15, NULL);
|
|
V_4 = L_16;
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_18 = ___0_array;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_19;
|
|
L_19 = AndroidJNISafe_FromBooleanArray_m36ED740401185EC0A959CA0F96A324A69E668646(L_18, NULL);
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_19, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_22, NULL);
|
|
V_5 = L_23;
|
|
bool L_24 = V_5;
|
|
if (!L_24)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9((RuntimeObject*)_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2, NULL);
|
|
intptr_t L_25 = ___0_array;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26;
|
|
L_26 = AndroidJNISafe_FromByteArray_mB06EF0FDBF6C738231E8F9D4998C38551131C4C5(L_25, NULL);
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_26, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
Type_t* L_27 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
bool L_30;
|
|
L_30 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_27, L_29, NULL);
|
|
V_6 = L_30;
|
|
bool L_31 = V_6;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_32 = ___0_array;
|
|
SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_33;
|
|
L_33 = AndroidJNISafe_FromSByteArray_m261D638D8B059AB777BEF0BEFDD0822717DFF2B1(L_32, NULL);
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_33, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
Type_t* L_34 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
V_7 = L_37;
|
|
bool L_38 = V_7;
|
|
if (!L_38)
|
|
{
|
|
goto IL_00ec;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_39 = ___0_array;
|
|
Int16U5BU5D_t8175CE8DD9C9F9FB0CF4F58E45BC570575B43CFB* L_40;
|
|
L_40 = AndroidJNISafe_FromShortArray_m62C0CB2D0BAE96D4B8CE365630361150EBE884FC(L_39, NULL);
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_40, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00ec:
|
|
{
|
|
Type_t* L_41 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
V_8 = L_44;
|
|
bool L_45 = V_8;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_46 = ___0_array;
|
|
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_47;
|
|
L_47 = AndroidJNISafe_FromLongArray_mC4D73C0DA27F212947AB85AA2030A35BECDF8288(L_46, NULL);
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_47, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
Type_t* L_48 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
bool L_51;
|
|
L_51 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_48, L_50, NULL);
|
|
V_9 = L_51;
|
|
bool L_52 = V_9;
|
|
if (!L_52)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_53 = ___0_array;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_54;
|
|
L_54 = AndroidJNISafe_FromFloatArray_mDE02985159EEFD2CB28611C797AC21DE8B6300B8(L_53, NULL);
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_54, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
Type_t* L_55 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
bool L_58;
|
|
L_58 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_55, L_57, NULL);
|
|
V_10 = L_58;
|
|
bool L_59 = V_10;
|
|
if (!L_59)
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_60 = ___0_array;
|
|
DoubleU5BU5D_tCC308475BD3B8229DB2582938669EF2F9ECC1FEE* L_61;
|
|
L_61 = AndroidJNISafe_FromDoubleArray_mDEA8F2C7854101272F3A2733F351B570AAD5D9D9(L_60, NULL);
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_61, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0161:
|
|
{
|
|
Type_t* L_62 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.char_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
bool L_65;
|
|
L_65 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_62, L_64, NULL);
|
|
V_11 = L_65;
|
|
bool L_66 = V_11;
|
|
if (!L_66)
|
|
{
|
|
goto IL_0188;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_67 = ___0_array;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68;
|
|
L_68 = AndroidJNISafe_FromCharArray_m54EDC9D2BE92F9973F4E00EE953EE242B231EA96(L_67, NULL);
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_68, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0188:
|
|
{
|
|
goto IL_0376;
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
Type_t* L_69 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_71;
|
|
L_71 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_70, NULL);
|
|
bool L_72;
|
|
L_72 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_69, L_71, NULL);
|
|
V_12 = L_72;
|
|
bool L_73 = V_12;
|
|
if (!L_73)
|
|
{
|
|
goto IL_0272;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_74 = ___0_array;
|
|
int32_t L_75;
|
|
L_75 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_74, NULL);
|
|
V_13 = L_75;
|
|
int32_t L_76 = V_13;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_77 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_76);
|
|
V_14 = L_77;
|
|
int32_t L_78 = V_13;
|
|
V_17 = (bool)((((int32_t)L_78) == ((int32_t)0))? 1 : 0);
|
|
bool L_79 = V_17;
|
|
if (!L_79)
|
|
{
|
|
goto IL_01d1;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_80 = V_14;
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_80, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_01d1:
|
|
{
|
|
int32_t L_81 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_82 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_81) > ((int32_t)L_82)))
|
|
{
|
|
goto IL_01de;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_83 = V_13;
|
|
G_B26_0 = L_83;
|
|
goto IL_01e3;
|
|
}
|
|
|
|
IL_01de:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_84 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B26_0 = L_84;
|
|
}
|
|
|
|
IL_01e3:
|
|
{
|
|
V_15 = G_B26_0;
|
|
int32_t L_85 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_85, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_024f:
|
|
{
|
|
{
|
|
bool L_86 = V_16;
|
|
V_22 = L_86;
|
|
bool L_87 = V_22;
|
|
if (!L_87)
|
|
{
|
|
goto IL_0263;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_88;
|
|
L_88 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0263:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_18 = 0;
|
|
goto IL_0240_1;
|
|
}
|
|
|
|
IL_01f6_1:
|
|
{
|
|
int32_t L_89 = V_18;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_90 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_20 = (bool)((((int32_t)((int32_t)(L_89%L_90))) == ((int32_t)0))? 1 : 0);
|
|
bool L_91 = V_20;
|
|
if (!L_91)
|
|
{
|
|
goto IL_0223_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_92;
|
|
L_92 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_16 = (bool)0;
|
|
int32_t L_93 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_93, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
|
|
IL_0223_1:
|
|
{
|
|
intptr_t L_94 = ___0_array;
|
|
int32_t L_95 = V_18;
|
|
intptr_t L_96;
|
|
L_96 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_94, L_95, NULL);
|
|
V_19 = L_96;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_97 = V_14;
|
|
int32_t L_98 = V_18;
|
|
intptr_t L_99 = V_19;
|
|
String_t* L_100;
|
|
L_100 = AndroidJNISafe_GetStringChars_mE246814CD8FF4EDDEE6EBF107367C4A8EAF03849(L_99, NULL);
|
|
NullCheck(L_97);
|
|
(L_97)->SetAt(static_cast<il2cpp_array_size_t>(L_98), (String_t*)L_100);
|
|
int32_t L_101 = V_18;
|
|
V_18 = ((int32_t)il2cpp_codegen_add(L_101, 1));
|
|
}
|
|
|
|
IL_0240_1:
|
|
{
|
|
int32_t L_102 = V_18;
|
|
int32_t L_103 = V_13;
|
|
V_21 = (bool)((((int32_t)L_102) < ((int32_t)L_103))? 1 : 0);
|
|
bool L_104 = V_21;
|
|
if (L_104)
|
|
{
|
|
goto IL_01f6_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0265;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0265:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_105 = V_14;
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_105, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0272:
|
|
{
|
|
Type_t* L_106 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_107 = { reinterpret_cast<intptr_t> (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_108;
|
|
L_108 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_107, NULL);
|
|
bool L_109;
|
|
L_109 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_106, L_108, NULL);
|
|
V_23 = L_109;
|
|
bool L_110 = V_23;
|
|
if (!L_110)
|
|
{
|
|
goto IL_0353;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_111 = ___0_array;
|
|
int32_t L_112;
|
|
L_112 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_111, NULL);
|
|
V_24 = L_112;
|
|
int32_t L_113 = V_24;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_114 = (AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)SZArrayNew(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var, (uint32_t)L_113);
|
|
V_25 = L_114;
|
|
int32_t L_115 = V_24;
|
|
V_28 = (bool)((((int32_t)L_115) == ((int32_t)0))? 1 : 0);
|
|
bool L_116 = V_28;
|
|
if (!L_116)
|
|
{
|
|
goto IL_02b5;
|
|
}
|
|
}
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_117 = V_25;
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_117, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_02b5:
|
|
{
|
|
int32_t L_118 = V_24;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_119 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_118) > ((int32_t)L_119)))
|
|
{
|
|
goto IL_02c2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_120 = V_24;
|
|
G_B43_0 = L_120;
|
|
goto IL_02c7;
|
|
}
|
|
|
|
IL_02c2:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_121 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B43_0 = L_121;
|
|
}
|
|
|
|
IL_02c7:
|
|
{
|
|
V_26 = G_B43_0;
|
|
int32_t L_122 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_122, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0333:
|
|
{
|
|
{
|
|
bool L_123 = V_27;
|
|
V_33 = L_123;
|
|
bool L_124 = V_33;
|
|
if (!L_124)
|
|
{
|
|
goto IL_0347;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_125;
|
|
L_125 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0347:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_29 = 0;
|
|
goto IL_0324_1;
|
|
}
|
|
|
|
IL_02da_1:
|
|
{
|
|
int32_t L_126 = V_29;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_127 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_31 = (bool)((((int32_t)((int32_t)(L_126%L_127))) == ((int32_t)0))? 1 : 0);
|
|
bool L_128 = V_31;
|
|
if (!L_128)
|
|
{
|
|
goto IL_0307_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_129;
|
|
L_129 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_27 = (bool)0;
|
|
int32_t L_130 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_130, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
|
|
IL_0307_1:
|
|
{
|
|
intptr_t L_131 = ___0_array;
|
|
int32_t L_132 = V_29;
|
|
intptr_t L_133;
|
|
L_133 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_131, L_132, NULL);
|
|
V_30 = L_133;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_134 = V_25;
|
|
int32_t L_135 = V_29;
|
|
intptr_t L_136 = V_30;
|
|
AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* L_137 = (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)il2cpp_codegen_object_new(AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
AndroidJavaObject__ctor_m0CEE7D570807333CE2C193A82AB3AB8D4F873A6B(L_137, L_136, NULL);
|
|
NullCheck(L_134);
|
|
ArrayElementTypeCheck (L_134, L_137);
|
|
(L_134)->SetAt(static_cast<il2cpp_array_size_t>(L_135), (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)L_137);
|
|
int32_t L_138 = V_29;
|
|
V_29 = ((int32_t)il2cpp_codegen_add(L_138, 1));
|
|
}
|
|
|
|
IL_0324_1:
|
|
{
|
|
int32_t L_139 = V_29;
|
|
int32_t L_140 = V_24;
|
|
V_32 = (bool)((((int32_t)L_139) < ((int32_t)L_140))? 1 : 0);
|
|
bool L_141 = V_32;
|
|
if (L_141)
|
|
{
|
|
goto IL_02da_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0349;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0349:
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_142 = V_25;
|
|
V_3 = ((RuntimeObject*)Castclass((RuntimeObject*)L_142, il2cpp_rgctx_data(method->rgctx_data, 1)));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0353:
|
|
{
|
|
Type_t* L_143 = V_0;
|
|
Type_t* L_144 = L_143;
|
|
if (L_144)
|
|
{
|
|
G_B56_0 = L_144;
|
|
G_B56_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
goto IL_0361;
|
|
}
|
|
G_B55_0 = L_144;
|
|
G_B55_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
}
|
|
{
|
|
G_B57_0 = ((String_t*)(NULL));
|
|
G_B57_1 = G_B55_1;
|
|
goto IL_0366;
|
|
}
|
|
|
|
IL_0361:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B56_0);
|
|
String_t* L_145;
|
|
L_145 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B56_0);
|
|
G_B57_0 = L_145;
|
|
G_B57_1 = G_B56_1;
|
|
}
|
|
|
|
IL_0366:
|
|
{
|
|
String_t* L_146;
|
|
L_146 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(G_B57_1, G_B57_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D)), NULL);
|
|
Exception_t* L_147 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
|
|
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_147, L_146, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_147, method);
|
|
}
|
|
|
|
IL_0376:
|
|
{
|
|
il2cpp_codegen_initobj((&V_34), sizeof(RuntimeObject*));
|
|
RuntimeObject* L_148 = V_34;
|
|
V_3 = L_148;
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0383:
|
|
{
|
|
RuntimeObject* L_149 = V_3;
|
|
return L_149;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int8_t _AndroidJNIHelper_ConvertFromJNIArray_TisSByte_tFEFFEF5D2FEBF5207950AE6FAC150FC53B668DB5_m01777984AFB915C1167148BC6056336EB200B151_gshared (intptr_t ___0_array, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int8_t V_3 = 0x0;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
int32_t V_13 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
int32_t V_18 = 0;
|
|
intptr_t V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
bool V_20 = false;
|
|
bool V_21 = false;
|
|
bool V_22 = false;
|
|
bool V_23 = false;
|
|
int32_t V_24 = 0;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* V_25 = NULL;
|
|
int32_t V_26 = 0;
|
|
bool V_27 = false;
|
|
bool V_28 = false;
|
|
int32_t V_29 = 0;
|
|
intptr_t V_30;
|
|
memset((&V_30), 0, sizeof(V_30));
|
|
bool V_31 = false;
|
|
bool V_32 = false;
|
|
bool V_33 = false;
|
|
int8_t V_34 = 0x0;
|
|
int32_t G_B26_0 = 0;
|
|
int32_t G_B43_0 = 0;
|
|
Type_t* G_B56_0 = NULL;
|
|
String_t* G_B56_1 = NULL;
|
|
Type_t* G_B55_0 = NULL;
|
|
String_t* G_B55_1 = NULL;
|
|
String_t* G_B57_0 = NULL;
|
|
String_t* G_B57_1 = NULL;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
NullCheck(L_1);
|
|
Type_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< Type_t* >::Invoke(64, L_1);
|
|
V_0 = L_2;
|
|
Type_t* L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = AndroidReflection_IsPrimitive_mA41A9ECECE3D73679C79DC8B0FDD32B59570DF25(L_3, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_6 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
bool L_9;
|
|
L_9 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_6, L_8, NULL);
|
|
V_2 = L_9;
|
|
bool L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_11 = ___0_array;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12;
|
|
L_12 = AndroidJNISafe_FromIntArray_mC4C4DC70FFA39CD6E3E02FDAC7192324E6D4614E(L_11, NULL);
|
|
V_3 = ((*(int8_t*)UnBox((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
Type_t* L_13 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.boolean_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
bool L_16;
|
|
L_16 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_13, L_15, NULL);
|
|
V_4 = L_16;
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_18 = ___0_array;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_19;
|
|
L_19 = AndroidJNISafe_FromBooleanArray_m36ED740401185EC0A959CA0F96A324A69E668646(L_18, NULL);
|
|
V_3 = ((*(int8_t*)UnBox((RuntimeObject*)L_19, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_22, NULL);
|
|
V_5 = L_23;
|
|
bool L_24 = V_5;
|
|
if (!L_24)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9((RuntimeObject*)_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2, NULL);
|
|
intptr_t L_25 = ___0_array;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26;
|
|
L_26 = AndroidJNISafe_FromByteArray_mB06EF0FDBF6C738231E8F9D4998C38551131C4C5(L_25, NULL);
|
|
V_3 = ((*(int8_t*)UnBox((RuntimeObject*)L_26, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
Type_t* L_27 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
bool L_30;
|
|
L_30 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_27, L_29, NULL);
|
|
V_6 = L_30;
|
|
bool L_31 = V_6;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_32 = ___0_array;
|
|
SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_33;
|
|
L_33 = AndroidJNISafe_FromSByteArray_m261D638D8B059AB777BEF0BEFDD0822717DFF2B1(L_32, NULL);
|
|
V_3 = ((*(int8_t*)UnBox((RuntimeObject*)L_33, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
Type_t* L_34 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
V_7 = L_37;
|
|
bool L_38 = V_7;
|
|
if (!L_38)
|
|
{
|
|
goto IL_00ec;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_39 = ___0_array;
|
|
Int16U5BU5D_t8175CE8DD9C9F9FB0CF4F58E45BC570575B43CFB* L_40;
|
|
L_40 = AndroidJNISafe_FromShortArray_m62C0CB2D0BAE96D4B8CE365630361150EBE884FC(L_39, NULL);
|
|
V_3 = ((*(int8_t*)UnBox((RuntimeObject*)L_40, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00ec:
|
|
{
|
|
Type_t* L_41 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
V_8 = L_44;
|
|
bool L_45 = V_8;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_46 = ___0_array;
|
|
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_47;
|
|
L_47 = AndroidJNISafe_FromLongArray_mC4D73C0DA27F212947AB85AA2030A35BECDF8288(L_46, NULL);
|
|
V_3 = ((*(int8_t*)UnBox((RuntimeObject*)L_47, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
Type_t* L_48 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
bool L_51;
|
|
L_51 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_48, L_50, NULL);
|
|
V_9 = L_51;
|
|
bool L_52 = V_9;
|
|
if (!L_52)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_53 = ___0_array;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_54;
|
|
L_54 = AndroidJNISafe_FromFloatArray_mDE02985159EEFD2CB28611C797AC21DE8B6300B8(L_53, NULL);
|
|
V_3 = ((*(int8_t*)UnBox((RuntimeObject*)L_54, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
Type_t* L_55 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
bool L_58;
|
|
L_58 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_55, L_57, NULL);
|
|
V_10 = L_58;
|
|
bool L_59 = V_10;
|
|
if (!L_59)
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_60 = ___0_array;
|
|
DoubleU5BU5D_tCC308475BD3B8229DB2582938669EF2F9ECC1FEE* L_61;
|
|
L_61 = AndroidJNISafe_FromDoubleArray_mDEA8F2C7854101272F3A2733F351B570AAD5D9D9(L_60, NULL);
|
|
V_3 = ((*(int8_t*)UnBox((RuntimeObject*)L_61, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0161:
|
|
{
|
|
Type_t* L_62 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.char_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
bool L_65;
|
|
L_65 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_62, L_64, NULL);
|
|
V_11 = L_65;
|
|
bool L_66 = V_11;
|
|
if (!L_66)
|
|
{
|
|
goto IL_0188;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_67 = ___0_array;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68;
|
|
L_68 = AndroidJNISafe_FromCharArray_m54EDC9D2BE92F9973F4E00EE953EE242B231EA96(L_67, NULL);
|
|
V_3 = ((*(int8_t*)UnBox((RuntimeObject*)L_68, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0188:
|
|
{
|
|
goto IL_0376;
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
Type_t* L_69 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_71;
|
|
L_71 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_70, NULL);
|
|
bool L_72;
|
|
L_72 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_69, L_71, NULL);
|
|
V_12 = L_72;
|
|
bool L_73 = V_12;
|
|
if (!L_73)
|
|
{
|
|
goto IL_0272;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_74 = ___0_array;
|
|
int32_t L_75;
|
|
L_75 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_74, NULL);
|
|
V_13 = L_75;
|
|
int32_t L_76 = V_13;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_77 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_76);
|
|
V_14 = L_77;
|
|
int32_t L_78 = V_13;
|
|
V_17 = (bool)((((int32_t)L_78) == ((int32_t)0))? 1 : 0);
|
|
bool L_79 = V_17;
|
|
if (!L_79)
|
|
{
|
|
goto IL_01d1;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_80 = V_14;
|
|
V_3 = ((*(int8_t*)UnBox((RuntimeObject*)L_80, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_01d1:
|
|
{
|
|
int32_t L_81 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_82 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_81) > ((int32_t)L_82)))
|
|
{
|
|
goto IL_01de;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_83 = V_13;
|
|
G_B26_0 = L_83;
|
|
goto IL_01e3;
|
|
}
|
|
|
|
IL_01de:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_84 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B26_0 = L_84;
|
|
}
|
|
|
|
IL_01e3:
|
|
{
|
|
V_15 = G_B26_0;
|
|
int32_t L_85 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_85, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_024f:
|
|
{
|
|
{
|
|
bool L_86 = V_16;
|
|
V_22 = L_86;
|
|
bool L_87 = V_22;
|
|
if (!L_87)
|
|
{
|
|
goto IL_0263;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_88;
|
|
L_88 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0263:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_18 = 0;
|
|
goto IL_0240_1;
|
|
}
|
|
|
|
IL_01f6_1:
|
|
{
|
|
int32_t L_89 = V_18;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_90 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_20 = (bool)((((int32_t)((int32_t)(L_89%L_90))) == ((int32_t)0))? 1 : 0);
|
|
bool L_91 = V_20;
|
|
if (!L_91)
|
|
{
|
|
goto IL_0223_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_92;
|
|
L_92 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_16 = (bool)0;
|
|
int32_t L_93 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_93, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
|
|
IL_0223_1:
|
|
{
|
|
intptr_t L_94 = ___0_array;
|
|
int32_t L_95 = V_18;
|
|
intptr_t L_96;
|
|
L_96 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_94, L_95, NULL);
|
|
V_19 = L_96;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_97 = V_14;
|
|
int32_t L_98 = V_18;
|
|
intptr_t L_99 = V_19;
|
|
String_t* L_100;
|
|
L_100 = AndroidJNISafe_GetStringChars_mE246814CD8FF4EDDEE6EBF107367C4A8EAF03849(L_99, NULL);
|
|
NullCheck(L_97);
|
|
(L_97)->SetAt(static_cast<il2cpp_array_size_t>(L_98), (String_t*)L_100);
|
|
int32_t L_101 = V_18;
|
|
V_18 = ((int32_t)il2cpp_codegen_add(L_101, 1));
|
|
}
|
|
|
|
IL_0240_1:
|
|
{
|
|
int32_t L_102 = V_18;
|
|
int32_t L_103 = V_13;
|
|
V_21 = (bool)((((int32_t)L_102) < ((int32_t)L_103))? 1 : 0);
|
|
bool L_104 = V_21;
|
|
if (L_104)
|
|
{
|
|
goto IL_01f6_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0265;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0265:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_105 = V_14;
|
|
V_3 = ((*(int8_t*)UnBox((RuntimeObject*)L_105, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0272:
|
|
{
|
|
Type_t* L_106 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_107 = { reinterpret_cast<intptr_t> (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_108;
|
|
L_108 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_107, NULL);
|
|
bool L_109;
|
|
L_109 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_106, L_108, NULL);
|
|
V_23 = L_109;
|
|
bool L_110 = V_23;
|
|
if (!L_110)
|
|
{
|
|
goto IL_0353;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_111 = ___0_array;
|
|
int32_t L_112;
|
|
L_112 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_111, NULL);
|
|
V_24 = L_112;
|
|
int32_t L_113 = V_24;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_114 = (AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)SZArrayNew(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var, (uint32_t)L_113);
|
|
V_25 = L_114;
|
|
int32_t L_115 = V_24;
|
|
V_28 = (bool)((((int32_t)L_115) == ((int32_t)0))? 1 : 0);
|
|
bool L_116 = V_28;
|
|
if (!L_116)
|
|
{
|
|
goto IL_02b5;
|
|
}
|
|
}
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_117 = V_25;
|
|
V_3 = ((*(int8_t*)UnBox((RuntimeObject*)L_117, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_02b5:
|
|
{
|
|
int32_t L_118 = V_24;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_119 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_118) > ((int32_t)L_119)))
|
|
{
|
|
goto IL_02c2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_120 = V_24;
|
|
G_B43_0 = L_120;
|
|
goto IL_02c7;
|
|
}
|
|
|
|
IL_02c2:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_121 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B43_0 = L_121;
|
|
}
|
|
|
|
IL_02c7:
|
|
{
|
|
V_26 = G_B43_0;
|
|
int32_t L_122 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_122, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0333:
|
|
{
|
|
{
|
|
bool L_123 = V_27;
|
|
V_33 = L_123;
|
|
bool L_124 = V_33;
|
|
if (!L_124)
|
|
{
|
|
goto IL_0347;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_125;
|
|
L_125 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0347:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_29 = 0;
|
|
goto IL_0324_1;
|
|
}
|
|
|
|
IL_02da_1:
|
|
{
|
|
int32_t L_126 = V_29;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_127 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_31 = (bool)((((int32_t)((int32_t)(L_126%L_127))) == ((int32_t)0))? 1 : 0);
|
|
bool L_128 = V_31;
|
|
if (!L_128)
|
|
{
|
|
goto IL_0307_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_129;
|
|
L_129 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_27 = (bool)0;
|
|
int32_t L_130 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_130, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
|
|
IL_0307_1:
|
|
{
|
|
intptr_t L_131 = ___0_array;
|
|
int32_t L_132 = V_29;
|
|
intptr_t L_133;
|
|
L_133 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_131, L_132, NULL);
|
|
V_30 = L_133;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_134 = V_25;
|
|
int32_t L_135 = V_29;
|
|
intptr_t L_136 = V_30;
|
|
AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* L_137 = (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)il2cpp_codegen_object_new(AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
AndroidJavaObject__ctor_m0CEE7D570807333CE2C193A82AB3AB8D4F873A6B(L_137, L_136, NULL);
|
|
NullCheck(L_134);
|
|
ArrayElementTypeCheck (L_134, L_137);
|
|
(L_134)->SetAt(static_cast<il2cpp_array_size_t>(L_135), (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)L_137);
|
|
int32_t L_138 = V_29;
|
|
V_29 = ((int32_t)il2cpp_codegen_add(L_138, 1));
|
|
}
|
|
|
|
IL_0324_1:
|
|
{
|
|
int32_t L_139 = V_29;
|
|
int32_t L_140 = V_24;
|
|
V_32 = (bool)((((int32_t)L_139) < ((int32_t)L_140))? 1 : 0);
|
|
bool L_141 = V_32;
|
|
if (L_141)
|
|
{
|
|
goto IL_02da_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0349;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0349:
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_142 = V_25;
|
|
V_3 = ((*(int8_t*)UnBox((RuntimeObject*)L_142, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0353:
|
|
{
|
|
Type_t* L_143 = V_0;
|
|
Type_t* L_144 = L_143;
|
|
if (L_144)
|
|
{
|
|
G_B56_0 = L_144;
|
|
G_B56_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
goto IL_0361;
|
|
}
|
|
G_B55_0 = L_144;
|
|
G_B55_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
}
|
|
{
|
|
G_B57_0 = ((String_t*)(NULL));
|
|
G_B57_1 = G_B55_1;
|
|
goto IL_0366;
|
|
}
|
|
|
|
IL_0361:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B56_0);
|
|
String_t* L_145;
|
|
L_145 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B56_0);
|
|
G_B57_0 = L_145;
|
|
G_B57_1 = G_B56_1;
|
|
}
|
|
|
|
IL_0366:
|
|
{
|
|
String_t* L_146;
|
|
L_146 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(G_B57_1, G_B57_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D)), NULL);
|
|
Exception_t* L_147 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
|
|
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_147, L_146, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_147, method);
|
|
}
|
|
|
|
IL_0376:
|
|
{
|
|
il2cpp_codegen_initobj((&V_34), sizeof(int8_t));
|
|
int8_t L_148 = V_34;
|
|
V_3 = L_148;
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0383:
|
|
{
|
|
int8_t L_149 = V_3;
|
|
return L_149;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float _AndroidJNIHelper_ConvertFromJNIArray_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m6634501B2BC58937A4D852F6F2D8D55A9DFB6F64_gshared (intptr_t ___0_array, const RuntimeMethod* method)
|
|
{
|
|
if (!il2cpp_rgctx_is_initialized(method))
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2);
|
|
il2cpp_rgctx_method_init(method);
|
|
}
|
|
Type_t* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
float V_3 = 0.0f;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
int32_t V_13 = 0;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* V_14 = NULL;
|
|
int32_t V_15 = 0;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
int32_t V_18 = 0;
|
|
intptr_t V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
bool V_20 = false;
|
|
bool V_21 = false;
|
|
bool V_22 = false;
|
|
bool V_23 = false;
|
|
int32_t V_24 = 0;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* V_25 = NULL;
|
|
int32_t V_26 = 0;
|
|
bool V_27 = false;
|
|
bool V_28 = false;
|
|
int32_t V_29 = 0;
|
|
intptr_t V_30;
|
|
memset((&V_30), 0, sizeof(V_30));
|
|
bool V_31 = false;
|
|
bool V_32 = false;
|
|
bool V_33 = false;
|
|
float V_34 = 0.0f;
|
|
int32_t G_B26_0 = 0;
|
|
int32_t G_B43_0 = 0;
|
|
Type_t* G_B56_0 = NULL;
|
|
String_t* G_B56_1 = NULL;
|
|
Type_t* G_B55_0 = NULL;
|
|
String_t* G_B55_1 = NULL;
|
|
String_t* G_B57_0 = NULL;
|
|
String_t* G_B57_1 = NULL;
|
|
{
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_0 = { reinterpret_cast<intptr_t> (il2cpp_rgctx_type(method->rgctx_data, 0)) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_1;
|
|
L_1 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_0, NULL);
|
|
NullCheck(L_1);
|
|
Type_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< Type_t* >::Invoke(64, L_1);
|
|
V_0 = L_2;
|
|
Type_t* L_3 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(AndroidReflection_tD59014B286F902906DBB75DA3473897D35684908_il2cpp_TypeInfo_var);
|
|
bool L_4;
|
|
L_4 = AndroidReflection_IsPrimitive_mA41A9ECECE3D73679C79DC8B0FDD32B59570DF25(L_3, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_018e;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_6 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_7 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int32_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_8;
|
|
L_8 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_7, NULL);
|
|
bool L_9;
|
|
L_9 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_6, L_8, NULL);
|
|
V_2 = L_9;
|
|
bool L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_11 = ___0_array;
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* L_12;
|
|
L_12 = AndroidJNISafe_FromIntArray_mC4C4DC70FFA39CD6E3E02FDAC7192324E6D4614E(L_11, NULL);
|
|
V_3 = ((*(float*)UnBox((RuntimeObject*)L_12, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
Type_t* L_13 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_14 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.boolean_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_15;
|
|
L_15 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_14, NULL);
|
|
bool L_16;
|
|
L_16 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_13, L_15, NULL);
|
|
V_4 = L_16;
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_18 = ___0_array;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_19;
|
|
L_19 = AndroidJNISafe_FromBooleanArray_m36ED740401185EC0A959CA0F96A324A69E668646(L_18, NULL);
|
|
V_3 = ((*(float*)UnBox((RuntimeObject*)L_19, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
Type_t* L_20 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_21 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.byte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_22;
|
|
L_22 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_21, NULL);
|
|
bool L_23;
|
|
L_23 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_20, L_22, NULL);
|
|
V_5 = L_23;
|
|
bool L_24 = V_5;
|
|
if (!L_24)
|
|
{
|
|
goto IL_009e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9((RuntimeObject*)_stringLiteral24CC8D396132365E532646F936DFC8579E2299B2, NULL);
|
|
intptr_t L_25 = ___0_array;
|
|
ByteU5BU5D_tA6237BF417AE52AD70CFB4EF24A7A82613DF9031* L_26;
|
|
L_26 = AndroidJNISafe_FromByteArray_mB06EF0FDBF6C738231E8F9D4998C38551131C4C5(L_25, NULL);
|
|
V_3 = ((*(float*)UnBox((RuntimeObject*)L_26, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_009e:
|
|
{
|
|
Type_t* L_27 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_28 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.sbyte_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_29;
|
|
L_29 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_28, NULL);
|
|
bool L_30;
|
|
L_30 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_27, L_29, NULL);
|
|
V_6 = L_30;
|
|
bool L_31 = V_6;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_32 = ___0_array;
|
|
SByteU5BU5D_t88116DA68378C3333DB73E7D36C1A06AFAA91913* L_33;
|
|
L_33 = AndroidJNISafe_FromSByteArray_m261D638D8B059AB777BEF0BEFDD0822717DFF2B1(L_32, NULL);
|
|
V_3 = ((*(float*)UnBox((RuntimeObject*)L_33, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
Type_t* L_34 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_35 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int16_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_36;
|
|
L_36 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_35, NULL);
|
|
bool L_37;
|
|
L_37 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_34, L_36, NULL);
|
|
V_7 = L_37;
|
|
bool L_38 = V_7;
|
|
if (!L_38)
|
|
{
|
|
goto IL_00ec;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_39 = ___0_array;
|
|
Int16U5BU5D_t8175CE8DD9C9F9FB0CF4F58E45BC570575B43CFB* L_40;
|
|
L_40 = AndroidJNISafe_FromShortArray_m62C0CB2D0BAE96D4B8CE365630361150EBE884FC(L_39, NULL);
|
|
V_3 = ((*(float*)UnBox((RuntimeObject*)L_40, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_00ec:
|
|
{
|
|
Type_t* L_41 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_42 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.int64_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_43;
|
|
L_43 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_42, NULL);
|
|
bool L_44;
|
|
L_44 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_41, L_43, NULL);
|
|
V_8 = L_44;
|
|
bool L_45 = V_8;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0113;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_46 = ___0_array;
|
|
Int64U5BU5D_tAEDFCBDB5414E2A140A6F34C0538BF97FCF67A1D* L_47;
|
|
L_47 = AndroidJNISafe_FromLongArray_mC4D73C0DA27F212947AB85AA2030A35BECDF8288(L_46, NULL);
|
|
V_3 = ((*(float*)UnBox((RuntimeObject*)L_47, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
Type_t* L_48 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_49 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.single_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_50;
|
|
L_50 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_49, NULL);
|
|
bool L_51;
|
|
L_51 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_48, L_50, NULL);
|
|
V_9 = L_51;
|
|
bool L_52 = V_9;
|
|
if (!L_52)
|
|
{
|
|
goto IL_013a;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_53 = ___0_array;
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* L_54;
|
|
L_54 = AndroidJNISafe_FromFloatArray_mDE02985159EEFD2CB28611C797AC21DE8B6300B8(L_53, NULL);
|
|
V_3 = ((*(float*)UnBox((RuntimeObject*)L_54, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_013a:
|
|
{
|
|
Type_t* L_55 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_56 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.double_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_57;
|
|
L_57 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_56, NULL);
|
|
bool L_58;
|
|
L_58 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_55, L_57, NULL);
|
|
V_10 = L_58;
|
|
bool L_59 = V_10;
|
|
if (!L_59)
|
|
{
|
|
goto IL_0161;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_60 = ___0_array;
|
|
DoubleU5BU5D_tCC308475BD3B8229DB2582938669EF2F9ECC1FEE* L_61;
|
|
L_61 = AndroidJNISafe_FromDoubleArray_mDEA8F2C7854101272F3A2733F351B570AAD5D9D9(L_60, NULL);
|
|
V_3 = ((*(float*)UnBox((RuntimeObject*)L_61, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0161:
|
|
{
|
|
Type_t* L_62 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_63 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.char_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_64;
|
|
L_64 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_63, NULL);
|
|
bool L_65;
|
|
L_65 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_62, L_64, NULL);
|
|
V_11 = L_65;
|
|
bool L_66 = V_11;
|
|
if (!L_66)
|
|
{
|
|
goto IL_0188;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_67 = ___0_array;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_68;
|
|
L_68 = AndroidJNISafe_FromCharArray_m54EDC9D2BE92F9973F4E00EE953EE242B231EA96(L_67, NULL);
|
|
V_3 = ((*(float*)UnBox((RuntimeObject*)L_68, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0188:
|
|
{
|
|
goto IL_0376;
|
|
}
|
|
|
|
IL_018e:
|
|
{
|
|
Type_t* L_69 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_70 = { reinterpret_cast<intptr_t> (&il2cpp_defaults.string_class->byval_arg) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_71;
|
|
L_71 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_70, NULL);
|
|
bool L_72;
|
|
L_72 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_69, L_71, NULL);
|
|
V_12 = L_72;
|
|
bool L_73 = V_12;
|
|
if (!L_73)
|
|
{
|
|
goto IL_0272;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_74 = ___0_array;
|
|
int32_t L_75;
|
|
L_75 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_74, NULL);
|
|
V_13 = L_75;
|
|
int32_t L_76 = V_13;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_77 = (StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248*)SZArrayNew(StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248_il2cpp_TypeInfo_var, (uint32_t)L_76);
|
|
V_14 = L_77;
|
|
int32_t L_78 = V_13;
|
|
V_17 = (bool)((((int32_t)L_78) == ((int32_t)0))? 1 : 0);
|
|
bool L_79 = V_17;
|
|
if (!L_79)
|
|
{
|
|
goto IL_01d1;
|
|
}
|
|
}
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_80 = V_14;
|
|
V_3 = ((*(float*)UnBox((RuntimeObject*)L_80, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_01d1:
|
|
{
|
|
int32_t L_81 = V_13;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_82 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_81) > ((int32_t)L_82)))
|
|
{
|
|
goto IL_01de;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_83 = V_13;
|
|
G_B26_0 = L_83;
|
|
goto IL_01e3;
|
|
}
|
|
|
|
IL_01de:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_84 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B26_0 = L_84;
|
|
}
|
|
|
|
IL_01e3:
|
|
{
|
|
V_15 = G_B26_0;
|
|
int32_t L_85 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_85, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_024f:
|
|
{
|
|
{
|
|
bool L_86 = V_16;
|
|
V_22 = L_86;
|
|
bool L_87 = V_22;
|
|
if (!L_87)
|
|
{
|
|
goto IL_0263;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_88;
|
|
L_88 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0263:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_18 = 0;
|
|
goto IL_0240_1;
|
|
}
|
|
|
|
IL_01f6_1:
|
|
{
|
|
int32_t L_89 = V_18;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_90 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_20 = (bool)((((int32_t)((int32_t)(L_89%L_90))) == ((int32_t)0))? 1 : 0);
|
|
bool L_91 = V_20;
|
|
if (!L_91)
|
|
{
|
|
goto IL_0223_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_92;
|
|
L_92 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_16 = (bool)0;
|
|
int32_t L_93 = V_15;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_93, NULL);
|
|
V_16 = (bool)1;
|
|
}
|
|
|
|
IL_0223_1:
|
|
{
|
|
intptr_t L_94 = ___0_array;
|
|
int32_t L_95 = V_18;
|
|
intptr_t L_96;
|
|
L_96 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_94, L_95, NULL);
|
|
V_19 = L_96;
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_97 = V_14;
|
|
int32_t L_98 = V_18;
|
|
intptr_t L_99 = V_19;
|
|
String_t* L_100;
|
|
L_100 = AndroidJNISafe_GetStringChars_mE246814CD8FF4EDDEE6EBF107367C4A8EAF03849(L_99, NULL);
|
|
NullCheck(L_97);
|
|
(L_97)->SetAt(static_cast<il2cpp_array_size_t>(L_98), (String_t*)L_100);
|
|
int32_t L_101 = V_18;
|
|
V_18 = ((int32_t)il2cpp_codegen_add(L_101, 1));
|
|
}
|
|
|
|
IL_0240_1:
|
|
{
|
|
int32_t L_102 = V_18;
|
|
int32_t L_103 = V_13;
|
|
V_21 = (bool)((((int32_t)L_102) < ((int32_t)L_103))? 1 : 0);
|
|
bool L_104 = V_21;
|
|
if (L_104)
|
|
{
|
|
goto IL_01f6_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0265;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0265:
|
|
{
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* L_105 = V_14;
|
|
V_3 = ((*(float*)UnBox((RuntimeObject*)L_105, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0272:
|
|
{
|
|
Type_t* L_106 = V_0;
|
|
RuntimeTypeHandle_t332A452B8B6179E4469B69525D0FE82A88030F7B L_107 = { reinterpret_cast<intptr_t> (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_0_0_0_var) };
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_defaults.systemtype_class);
|
|
Type_t* L_108;
|
|
L_108 = Type_GetTypeFromHandle_m6062B81682F79A4D6DF2640692EE6D9987858C57(L_107, NULL);
|
|
bool L_109;
|
|
L_109 = Type_op_Equality_m99930A0E44E420A685FABA60E60BA1CC5FA0EBDC(L_106, L_108, NULL);
|
|
V_23 = L_109;
|
|
bool L_110 = V_23;
|
|
if (!L_110)
|
|
{
|
|
goto IL_0353;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_111 = ___0_array;
|
|
int32_t L_112;
|
|
L_112 = AndroidJNISafe_GetArrayLength_m809419F04C9BB93FED5B4A89F0539231C9B90E6F(L_111, NULL);
|
|
V_24 = L_112;
|
|
int32_t L_113 = V_24;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_114 = (AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001*)SZArrayNew(AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001_il2cpp_TypeInfo_var, (uint32_t)L_113);
|
|
V_25 = L_114;
|
|
int32_t L_115 = V_24;
|
|
V_28 = (bool)((((int32_t)L_115) == ((int32_t)0))? 1 : 0);
|
|
bool L_116 = V_28;
|
|
if (!L_116)
|
|
{
|
|
goto IL_02b5;
|
|
}
|
|
}
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_117 = V_25;
|
|
V_3 = ((*(float*)UnBox((RuntimeObject*)L_117, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_02b5:
|
|
{
|
|
int32_t L_118 = V_24;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_119 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
if ((((int32_t)L_118) > ((int32_t)L_119)))
|
|
{
|
|
goto IL_02c2;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_120 = V_24;
|
|
G_B43_0 = L_120;
|
|
goto IL_02c7;
|
|
}
|
|
|
|
IL_02c2:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_121 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
G_B43_0 = L_121;
|
|
}
|
|
|
|
IL_02c7:
|
|
{
|
|
V_26 = G_B43_0;
|
|
int32_t L_122 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_122, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0333:
|
|
{
|
|
{
|
|
bool L_123 = V_27;
|
|
V_33 = L_123;
|
|
bool L_124 = V_33;
|
|
if (!L_124)
|
|
{
|
|
goto IL_0347;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_125;
|
|
L_125 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
}
|
|
|
|
IL_0347:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
});
|
|
try
|
|
{
|
|
{
|
|
V_29 = 0;
|
|
goto IL_0324_1;
|
|
}
|
|
|
|
IL_02da_1:
|
|
{
|
|
int32_t L_126 = V_29;
|
|
il2cpp_codegen_runtime_class_init_inline(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var);
|
|
int32_t L_127 = ((_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_StaticFields*)il2cpp_codegen_static_fields_for(_AndroidJNIHelper_tA796944DDB1B1459DF68C9FFA518F452C81364F3_il2cpp_TypeInfo_var))->___FRAME_SIZE_FOR_ARRAYS;
|
|
V_31 = (bool)((((int32_t)((int32_t)(L_126%L_127))) == ((int32_t)0))? 1 : 0);
|
|
bool L_128 = V_31;
|
|
if (!L_128)
|
|
{
|
|
goto IL_0307_1;
|
|
}
|
|
}
|
|
{
|
|
intptr_t L_129;
|
|
L_129 = AndroidJNI_PopLocalFrame_m32AF6F9065F09D80BFDD3F573B62C782F392E609(0, NULL);
|
|
V_27 = (bool)0;
|
|
int32_t L_130 = V_26;
|
|
AndroidJNISafe_PushLocalFrame_mBD80F37B9AA8EF3360C22C260458B0B8CAC0876B(L_130, NULL);
|
|
V_27 = (bool)1;
|
|
}
|
|
|
|
IL_0307_1:
|
|
{
|
|
intptr_t L_131 = ___0_array;
|
|
int32_t L_132 = V_29;
|
|
intptr_t L_133;
|
|
L_133 = AndroidJNI_GetObjectArrayElement_mC4CAF9744617F69EFCD95B71D95492DA20A0FACE(L_131, L_132, NULL);
|
|
V_30 = L_133;
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_134 = V_25;
|
|
int32_t L_135 = V_29;
|
|
intptr_t L_136 = V_30;
|
|
AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0* L_137 = (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)il2cpp_codegen_object_new(AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0_il2cpp_TypeInfo_var);
|
|
AndroidJavaObject__ctor_m0CEE7D570807333CE2C193A82AB3AB8D4F873A6B(L_137, L_136, NULL);
|
|
NullCheck(L_134);
|
|
ArrayElementTypeCheck (L_134, L_137);
|
|
(L_134)->SetAt(static_cast<il2cpp_array_size_t>(L_135), (AndroidJavaObject_t8FFB930F335C1178405B82AC2BF512BB1EEF9EB0*)L_137);
|
|
int32_t L_138 = V_29;
|
|
V_29 = ((int32_t)il2cpp_codegen_add(L_138, 1));
|
|
}
|
|
|
|
IL_0324_1:
|
|
{
|
|
int32_t L_139 = V_29;
|
|
int32_t L_140 = V_24;
|
|
V_32 = (bool)((((int32_t)L_139) < ((int32_t)L_140))? 1 : 0);
|
|
bool L_141 = V_32;
|
|
if (L_141)
|
|
{
|
|
goto IL_02da_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0349;
|
|
}
|
|
}
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0349:
|
|
{
|
|
AndroidJavaObjectU5BU5D_tBCEB142050F282B940177011644246618E002001* L_142 = V_25;
|
|
V_3 = ((*(float*)UnBox((RuntimeObject*)L_142, il2cpp_rgctx_data(method->rgctx_data, 1))));
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0353:
|
|
{
|
|
Type_t* L_143 = V_0;
|
|
Type_t* L_144 = L_143;
|
|
if (L_144)
|
|
{
|
|
G_B56_0 = L_144;
|
|
G_B56_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
goto IL_0361;
|
|
}
|
|
G_B55_0 = L_144;
|
|
G_B55_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral51253131B895C2F8066BCC47E62D44F18F43446C));
|
|
}
|
|
{
|
|
G_B57_0 = ((String_t*)(NULL));
|
|
G_B57_1 = G_B55_1;
|
|
goto IL_0366;
|
|
}
|
|
|
|
IL_0361:
|
|
{
|
|
NullCheck((RuntimeObject*)G_B56_0);
|
|
String_t* L_145;
|
|
L_145 = VirtualFuncInvoker0< String_t* >::Invoke(3, (RuntimeObject*)G_B56_0);
|
|
G_B57_0 = L_145;
|
|
G_B57_1 = G_B56_1;
|
|
}
|
|
|
|
IL_0366:
|
|
{
|
|
String_t* L_146;
|
|
L_146 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(G_B57_1, G_B57_0, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral42646B33B50B6AA15E22733C8900716F0FE19E1D)), NULL);
|
|
Exception_t* L_147 = (Exception_t*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)));
|
|
Exception__ctor_m9B2BD92CD68916245A75109105D9071C9D430E7F(L_147, L_146, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_147, method);
|
|
}
|
|
|
|
IL_0376:
|
|
{
|
|
il2cpp_codegen_initobj((&V_34), sizeof(float));
|
|
float L_148 = V_34;
|
|
V_3 = L_148;
|
|
goto IL_0383;
|
|
}
|
|
|
|
IL_0383:
|
|
{
|
|
float L_149 = V_3;
|
|
return L_149;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder__ctor_mC547A5D6689BA8A20086588E263F23FB8C901651_inline (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, bool ___0_disposeImmediately, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayPool_1_get_Shared_m8EB88B4EDF81135B55DB0F33A749B8087FE4646F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* V_0 = NULL;
|
|
{
|
|
bool L_0 = ___0_disposeImmediately;
|
|
if (!L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
bool L_1 = ((Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var))->___scratchBufferUsed;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_ThrowNestedException_mA0C15DF423CF71BA364C3B5CF1E12A787CAA64F6(NULL);
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_2 = ___0_disposeImmediately;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = ((Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var))->___scratchBuffer;
|
|
V_0 = L_3;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = V_0;
|
|
if (L_4)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)SZArrayNew(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB_il2cpp_TypeInfo_var, (uint32_t)((int32_t)31111));
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = L_5;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
((Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var))->___scratchBuffer = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var))->___scratchBuffer), (void*)L_6);
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
((Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var))->___scratchBufferUsed = (bool)1;
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B_il2cpp_TypeInfo_var);
|
|
ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B* L_7;
|
|
L_7 = ArrayPool_1_get_Shared_m8EB88B4EDF81135B55DB0F33A749B8087FE4646F_inline(ArrayPool_1_get_Shared_m8EB88B4EDF81135B55DB0F33A749B8087FE4646F_RuntimeMethod_var);
|
|
NullCheck(L_7);
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_8;
|
|
L_8 = VirtualFuncInvoker1< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, int32_t >::Invoke(4, L_7, ((int32_t)32768));
|
|
V_0 = L_8;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_9 = V_0;
|
|
__this->___buffer = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___buffer), (void*)L_9);
|
|
__this->___index = 0;
|
|
bool L_10 = ___0_disposeImmediately;
|
|
__this->___disposeImmediately = L_10;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_Dispose_mBAB7E98CD5B3FC7D2DC228B4C5630EA024F2EE00_inline (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayPool_1_get_Shared_m8EB88B4EDF81135B55DB0F33A749B8087FE4646F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___buffer;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_1 = __this->___buffer;
|
|
NullCheck(L_1);
|
|
if ((((int32_t)((int32_t)(((RuntimeArray*)L_1)->max_length))) == ((int32_t)((int32_t)31111))))
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B_il2cpp_TypeInfo_var);
|
|
ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B* L_2;
|
|
L_2 = ArrayPool_1_get_Shared_m8EB88B4EDF81135B55DB0F33A749B8087FE4646F_inline(ArrayPool_1_get_Shared_m8EB88B4EDF81135B55DB0F33A749B8087FE4646F_RuntimeMethod_var);
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_3 = __this->___buffer;
|
|
NullCheck(L_2);
|
|
VirtualActionInvoker2< CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*, bool >::Invoke(5, L_2, L_3, (bool)0);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
__this->___buffer = (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___buffer), (void*)(CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB*)NULL);
|
|
__this->___index = 0;
|
|
bool L_4 = __this->___disposeImmediately;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0044;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
((Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_ThreadStaticFields*)il2cpp_codegen_get_thread_static_data(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var))->___scratchBufferUsed = (bool)0;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_Append_m5E727DF8886A37E83186F209A4D8FB14EE802365_inline (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1;
|
|
L_1 = MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline(L_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Append_m38E3D512CE8BCE983294FAC3BC669E708ADC9200_inline(__this, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_Append_m323E301A6EA4CA1CD939E98A944A9D72ED5FB379_inline (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryExtensions_AsSpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mA4CB919BC75EECE15369129A6636919CBA5569BF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___buffer;
|
|
int32_t L_1 = __this->___index;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_2;
|
|
L_2 = MemoryExtensions_AsSpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mA4CB919BC75EECE15369129A6636919CBA5569BF_inline(L_0, L_1, MemoryExtensions_AsSpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mA4CB919BC75EECE15369129A6636919CBA5569BF_RuntimeMethod_var);
|
|
il2cpp_codegen_initobj((&V_1), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = V_1;
|
|
bool L_4;
|
|
L_4 = Int32_TryFormat_m09C5DAC7B8CB25D5D7FAEB7043384D0B05679A1A((&___0_value), L_2, (&V_0), L_3, (RuntimeObject*)NULL, NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Grow_mD6B54B7C7FC4FDA7D4B9BA46F741EEB4100DD359(__this, L_5, NULL);
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = __this->___buffer;
|
|
int32_t L_7 = __this->___index;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_8;
|
|
L_8 = MemoryExtensions_AsSpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mA4CB919BC75EECE15369129A6636919CBA5569BF_inline(L_6, L_7, MemoryExtensions_AsSpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mA4CB919BC75EECE15369129A6636919CBA5569BF_RuntimeMethod_var);
|
|
il2cpp_codegen_initobj((&V_1), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_9 = V_1;
|
|
bool L_10;
|
|
L_10 = Int32_TryFormat_m09C5DAC7B8CB25D5D7FAEB7043384D0B05679A1A((&___0_value), L_8, (&V_0), L_9, (RuntimeObject*)NULL, NULL);
|
|
if (L_10)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_ThrowArgumentException_mA28B474FC8F192818F802CCDB026D43A87AD76DA(__this, _stringLiteral46F273EF641E07D271D91E0DC24A4392582671F8, NULL);
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
int32_t L_11 = __this->___index;
|
|
int32_t L_12 = V_0;
|
|
__this->___index = ((int32_t)il2cpp_codegen_add(L_11, L_12));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m0EB07912D71097A8B05F586158966837F5C3DB38_inline (String_t* ___0_text, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
String_t* L_0 = ___0_text;
|
|
if (L_0)
|
|
{
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
String_t* L_2 = ___0_text;
|
|
NullCheck(L_2);
|
|
Il2CppChar* L_3;
|
|
L_3 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_2, NULL);
|
|
String_t* L_4 = ___0_text;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_4, NULL);
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_6;
|
|
memset((&L_6), 0, sizeof(L_6));
|
|
ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_6), L_3, L_5, ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline (String_t* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____stringLength;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline (String_t* ___0_text, int32_t ___1_start, int32_t ___2_length, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
String_t* L_0 = ___0_text;
|
|
if (L_0)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___1_start;
|
|
if (L_1)
|
|
{
|
|
goto IL_0009;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___2_length;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_m9B335696876184D17D1F8D7AF94C1B5B0869AA97(((int32_t)24), NULL);
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_4 = ___1_start;
|
|
String_t* L_5 = ___0_text;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_5, NULL);
|
|
if ((!(((uint32_t)L_4) <= ((uint32_t)L_6))))
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7 = ___2_length;
|
|
String_t* L_8 = ___0_text;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_8, NULL);
|
|
int32_t L_10 = ___1_start;
|
|
if ((!(((uint32_t)L_7) > ((uint32_t)((int32_t)il2cpp_codegen_subtract(L_9, L_10))))))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_m9B335696876184D17D1F8D7AF94C1B5B0869AA97(((int32_t)24), NULL);
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
String_t* L_11 = ___0_text;
|
|
NullCheck(L_11);
|
|
Il2CppChar* L_12;
|
|
L_12 = String_GetRawStringData_m87BC50B7B314C055E27A28032D1003D42FDE411D(L_11, NULL);
|
|
int32_t L_13 = ___1_start;
|
|
Il2CppChar* L_14;
|
|
L_14 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_12, L_13);
|
|
int32_t L_15 = ___2_length;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_16;
|
|
memset((&L_16), 0, sizeof(L_16));
|
|
ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_inline((&L_16), L_14, L_15, ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_RuntimeMethod_var);
|
|
return L_16;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A FormatParser_Parse_mEFB1A2FE2E6C364B317AAC557E2E897A151A78E1_inline (String_t* ___0_format, int32_t ___1_i, const RuntimeMethod* method)
|
|
{
|
|
Il2CppChar V_0 = 0x0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
bool V_5 = false;
|
|
int32_t V_6 = 0;
|
|
{
|
|
V_0 = 0;
|
|
String_t* L_0 = ___0_format;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_0, NULL);
|
|
V_1 = L_1;
|
|
int32_t L_2 = ___1_i;
|
|
___1_i = ((int32_t)il2cpp_codegen_add(L_2, 1));
|
|
int32_t L_3 = ___1_i;
|
|
int32_t L_4 = V_1;
|
|
if ((((int32_t)L_3) == ((int32_t)L_4)))
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_5 = ___0_format;
|
|
int32_t L_6 = ___1_i;
|
|
NullCheck(L_5);
|
|
Il2CppChar L_7;
|
|
L_7 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_5, L_6, NULL);
|
|
Il2CppChar L_8 = L_7;
|
|
V_0 = L_8;
|
|
bool L_9;
|
|
L_9 = FormatParser_IsDigit_m5419D5E5B6C049D06D6A73373A2C7E0BFBFD4937_inline(L_8, NULL);
|
|
if (L_9)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
ExceptionUtil_ThrowFormatError_m3E01A23A5D59A42DCB5F431C8A2182FF66B22D19(NULL);
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
V_2 = 0;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
int32_t L_10 = V_2;
|
|
Il2CppChar L_11 = V_0;
|
|
V_2 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_10, ((int32_t)10))), (int32_t)L_11)), ((int32_t)48)));
|
|
int32_t L_12 = ___1_i;
|
|
int32_t L_13 = ((int32_t)il2cpp_codegen_add(L_12, 1));
|
|
___1_i = L_13;
|
|
int32_t L_14 = V_1;
|
|
if ((!(((uint32_t)L_13) == ((uint32_t)L_14))))
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
ExceptionUtil_ThrowFormatError_m3E01A23A5D59A42DCB5F431C8A2182FF66B22D19(NULL);
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
String_t* L_15 = ___0_format;
|
|
int32_t L_16 = ___1_i;
|
|
NullCheck(L_15);
|
|
Il2CppChar L_17;
|
|
L_17 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_15, L_16, NULL);
|
|
V_0 = L_17;
|
|
Il2CppChar L_18 = V_0;
|
|
bool L_19;
|
|
L_19 = FormatParser_IsDigit_m5419D5E5B6C049D06D6A73373A2C7E0BFBFD4937_inline(L_18, NULL);
|
|
if (!L_19)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_20 = V_2;
|
|
if ((((int32_t)L_20) < ((int32_t)((int32_t)16))))
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
int32_t L_21 = V_2;
|
|
if ((((int32_t)L_21) < ((int32_t)((int32_t)16))))
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
ExceptionUtil_ThrowFormatException_mFBF0F2A3DCBA8CBECDF0D589C93717870D38769B(NULL);
|
|
goto IL_0067;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
int32_t L_22 = ___1_i;
|
|
___1_i = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
int32_t L_23 = ___1_i;
|
|
int32_t L_24 = V_1;
|
|
if ((((int32_t)L_23) >= ((int32_t)L_24)))
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_25 = ___0_format;
|
|
int32_t L_26 = ___1_i;
|
|
NullCheck(L_25);
|
|
Il2CppChar L_27;
|
|
L_27 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_25, L_26, NULL);
|
|
Il2CppChar L_28 = L_27;
|
|
V_0 = L_28;
|
|
if ((((int32_t)L_28) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
V_3 = 0;
|
|
Il2CppChar L_29 = V_0;
|
|
if ((!(((uint32_t)L_29) == ((uint32_t)((int32_t)44)))))
|
|
{
|
|
goto IL_0115;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_30 = ___1_i;
|
|
___1_i = ((int32_t)il2cpp_codegen_add(L_30, 1));
|
|
goto IL_008e;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
int32_t L_31 = ___1_i;
|
|
___1_i = ((int32_t)il2cpp_codegen_add(L_31, 1));
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
int32_t L_32 = ___1_i;
|
|
int32_t L_33 = V_1;
|
|
if ((((int32_t)L_32) >= ((int32_t)L_33)))
|
|
{
|
|
goto IL_009f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_34 = ___0_format;
|
|
int32_t L_35 = ___1_i;
|
|
NullCheck(L_34);
|
|
Il2CppChar L_36;
|
|
L_36 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_34, L_35, NULL);
|
|
Il2CppChar L_37 = L_36;
|
|
V_0 = L_37;
|
|
if ((((int32_t)L_37) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0089;
|
|
}
|
|
}
|
|
|
|
IL_009f:
|
|
{
|
|
int32_t L_38 = ___1_i;
|
|
int32_t L_39 = V_1;
|
|
if ((!(((uint32_t)L_38) == ((uint32_t)L_39))))
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
ExceptionUtil_ThrowFormatError_m3E01A23A5D59A42DCB5F431C8A2182FF66B22D19(NULL);
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
V_5 = (bool)0;
|
|
Il2CppChar L_40 = V_0;
|
|
if ((!(((uint32_t)L_40) == ((uint32_t)((int32_t)45)))))
|
|
{
|
|
goto IL_00c9;
|
|
}
|
|
}
|
|
{
|
|
V_5 = (bool)1;
|
|
int32_t L_41 = ___1_i;
|
|
int32_t L_42 = ((int32_t)il2cpp_codegen_add(L_41, 1));
|
|
___1_i = L_42;
|
|
int32_t L_43 = V_1;
|
|
if ((!(((uint32_t)L_42) == ((uint32_t)L_43))))
|
|
{
|
|
goto IL_00c1;
|
|
}
|
|
}
|
|
{
|
|
ExceptionUtil_ThrowFormatError_m3E01A23A5D59A42DCB5F431C8A2182FF66B22D19(NULL);
|
|
}
|
|
|
|
IL_00c1:
|
|
{
|
|
String_t* L_44 = ___0_format;
|
|
int32_t L_45 = ___1_i;
|
|
NullCheck(L_44);
|
|
Il2CppChar L_46;
|
|
L_46 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_44, L_45, NULL);
|
|
V_0 = L_46;
|
|
}
|
|
|
|
IL_00c9:
|
|
{
|
|
Il2CppChar L_47 = V_0;
|
|
bool L_48;
|
|
L_48 = FormatParser_IsDigit_m5419D5E5B6C049D06D6A73373A2C7E0BFBFD4937_inline(L_47, NULL);
|
|
if (L_48)
|
|
{
|
|
goto IL_00d6;
|
|
}
|
|
}
|
|
{
|
|
ExceptionUtil_ThrowFormatError_m3E01A23A5D59A42DCB5F431C8A2182FF66B22D19(NULL);
|
|
}
|
|
|
|
IL_00d6:
|
|
{
|
|
int32_t L_49 = V_3;
|
|
Il2CppChar L_50 = V_0;
|
|
V_3 = ((int32_t)il2cpp_codegen_subtract(((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_49, ((int32_t)10))), (int32_t)L_50)), ((int32_t)48)));
|
|
int32_t L_51 = ___1_i;
|
|
int32_t L_52 = ((int32_t)il2cpp_codegen_add(L_51, 1));
|
|
___1_i = L_52;
|
|
int32_t L_53 = V_1;
|
|
if ((!(((uint32_t)L_52) == ((uint32_t)L_53))))
|
|
{
|
|
goto IL_00ee;
|
|
}
|
|
}
|
|
{
|
|
ExceptionUtil_ThrowFormatError_m3E01A23A5D59A42DCB5F431C8A2182FF66B22D19(NULL);
|
|
}
|
|
|
|
IL_00ee:
|
|
{
|
|
String_t* L_54 = ___0_format;
|
|
int32_t L_55 = ___1_i;
|
|
NullCheck(L_54);
|
|
Il2CppChar L_56;
|
|
L_56 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_54, L_55, NULL);
|
|
V_0 = L_56;
|
|
Il2CppChar L_57 = V_0;
|
|
bool L_58;
|
|
L_58 = FormatParser_IsDigit_m5419D5E5B6C049D06D6A73373A2C7E0BFBFD4937_inline(L_57, NULL);
|
|
if (!L_58)
|
|
{
|
|
goto IL_0106;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_59 = V_3;
|
|
if ((((int32_t)L_59) < ((int32_t)((int32_t)1000))))
|
|
{
|
|
goto IL_00d6;
|
|
}
|
|
}
|
|
|
|
IL_0106:
|
|
{
|
|
bool L_60 = V_5;
|
|
if (!L_60)
|
|
{
|
|
goto IL_0115;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_61 = V_3;
|
|
V_3 = ((int32_t)il2cpp_codegen_multiply(L_61, (-1)));
|
|
goto IL_0115;
|
|
}
|
|
|
|
IL_0110:
|
|
{
|
|
int32_t L_62 = ___1_i;
|
|
___1_i = ((int32_t)il2cpp_codegen_add(L_62, 1));
|
|
}
|
|
|
|
IL_0115:
|
|
{
|
|
int32_t L_63 = ___1_i;
|
|
int32_t L_64 = V_1;
|
|
if ((((int32_t)L_63) >= ((int32_t)L_64)))
|
|
{
|
|
goto IL_0126;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_65 = ___0_format;
|
|
int32_t L_66 = ___1_i;
|
|
NullCheck(L_65);
|
|
Il2CppChar L_67;
|
|
L_67 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_65, L_66, NULL);
|
|
Il2CppChar L_68 = L_67;
|
|
V_0 = L_68;
|
|
if ((((int32_t)L_68) == ((int32_t)((int32_t)32))))
|
|
{
|
|
goto IL_0110;
|
|
}
|
|
}
|
|
|
|
IL_0126:
|
|
{
|
|
il2cpp_codegen_initobj((&V_4), sizeof(ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1));
|
|
Il2CppChar L_69 = V_0;
|
|
if ((!(((uint32_t)L_69) == ((uint32_t)((int32_t)58)))))
|
|
{
|
|
goto IL_0177;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_70 = ___1_i;
|
|
___1_i = ((int32_t)il2cpp_codegen_add(L_70, 1));
|
|
int32_t L_71 = ___1_i;
|
|
V_6 = L_71;
|
|
}
|
|
|
|
IL_013b:
|
|
{
|
|
int32_t L_72 = ___1_i;
|
|
int32_t L_73 = V_1;
|
|
if ((!(((uint32_t)L_72) == ((uint32_t)L_73))))
|
|
{
|
|
goto IL_0144;
|
|
}
|
|
}
|
|
{
|
|
ExceptionUtil_ThrowFormatError_m3E01A23A5D59A42DCB5F431C8A2182FF66B22D19(NULL);
|
|
}
|
|
|
|
IL_0144:
|
|
{
|
|
String_t* L_74 = ___0_format;
|
|
int32_t L_75 = ___1_i;
|
|
NullCheck(L_74);
|
|
Il2CppChar L_76;
|
|
L_76 = String_get_Chars_mC49DF0CD2D3BE7BE97B3AD9C995BE3094F8E36D3(L_74, L_75, NULL);
|
|
V_0 = L_76;
|
|
Il2CppChar L_77 = V_0;
|
|
if ((((int32_t)L_77) == ((int32_t)((int32_t)125))))
|
|
{
|
|
goto IL_0162;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_78 = V_0;
|
|
if ((!(((uint32_t)L_78) == ((uint32_t)((int32_t)123)))))
|
|
{
|
|
goto IL_015b;
|
|
}
|
|
}
|
|
{
|
|
ExceptionUtil_ThrowFormatError_m3E01A23A5D59A42DCB5F431C8A2182FF66B22D19(NULL);
|
|
}
|
|
|
|
IL_015b:
|
|
{
|
|
int32_t L_79 = ___1_i;
|
|
___1_i = ((int32_t)il2cpp_codegen_add(L_79, 1));
|
|
goto IL_013b;
|
|
}
|
|
|
|
IL_0162:
|
|
{
|
|
int32_t L_80 = ___1_i;
|
|
int32_t L_81 = V_6;
|
|
if ((((int32_t)L_80) <= ((int32_t)L_81)))
|
|
{
|
|
goto IL_0181;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_82 = ___0_format;
|
|
int32_t L_83 = V_6;
|
|
int32_t L_84 = ___1_i;
|
|
int32_t L_85 = V_6;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_86;
|
|
L_86 = MemoryExtensions_AsSpan_m8409F3DA0EF95BF6B3A8741E5C56E729B0A824C6_inline(L_82, L_83, ((int32_t)il2cpp_codegen_subtract(L_84, L_85)), NULL);
|
|
V_4 = L_86;
|
|
goto IL_0181;
|
|
}
|
|
|
|
IL_0177:
|
|
{
|
|
Il2CppChar L_87 = V_0;
|
|
if ((((int32_t)L_87) == ((int32_t)((int32_t)125))))
|
|
{
|
|
goto IL_0181;
|
|
}
|
|
}
|
|
{
|
|
ExceptionUtil_ThrowFormatError_m3E01A23A5D59A42DCB5F431C8A2182FF66B22D19(NULL);
|
|
}
|
|
|
|
IL_0181:
|
|
{
|
|
int32_t L_88 = ___1_i;
|
|
___1_i = ((int32_t)il2cpp_codegen_add(L_88, 1));
|
|
int32_t L_89 = V_2;
|
|
ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 L_90 = V_4;
|
|
int32_t L_91 = ___1_i;
|
|
int32_t L_92 = V_3;
|
|
ParseResult_t065AF36BBF548782D7758BD823B4F9EF690A989A L_93;
|
|
memset((&L_93), 0, sizeof(L_93));
|
|
ParseResult__ctor_mC46F2B6B483CBCAF3EF4B5CAB2CFA477301775C2((&L_93), L_89, L_90, L_91, L_92, NULL);
|
|
return L_93;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_m835590E344B05AF6AF00A78E92C4175BD781A3D2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, void* ___0_pointer, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
int32_t L_0 = ___1_length;
|
|
if ((((int32_t)L_0) >= ((int32_t)0)))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
void* L_1 = ___0_pointer;
|
|
Il2CppChar* L_2;
|
|
L_2 = il2cpp_unsafe_as_ref<Il2CppChar>((uint8_t*)L_1);
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_3), L_2);
|
|
__this->____pointer = L_3;
|
|
int32_t L_4 = ___1_length;
|
|
__this->____length = L_4;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlyListAdaptor_1__ctor_m2D097C7912B71BFF8538B85CB906070396EF38E0_gshared_inline (ReadOnlyListAdaptor_1_tBFCA480E6C2E698D93F07ACF26582DF92E020484* __this, RuntimeObject* ___0_list, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_list;
|
|
__this->____list = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->____list), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Utf16ValueStringBuilder_Append_m38E3D512CE8BCE983294FAC3BC669E708ADC9200_inline (Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172* __this, ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MemoryExtensions_AsSpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mA4CB919BC75EECE15369129A6636919CBA5569BF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = __this->___buffer;
|
|
NullCheck(L_0);
|
|
int32_t L_1 = __this->___index;
|
|
int32_t L_2;
|
|
L_2 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_value), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_0)->max_length)), L_1))) >= ((int32_t)L_2)))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_3;
|
|
L_3 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_value), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(Utf16ValueStringBuilder_tFA2A57C45340AC5E62924F75D486F7F678212172_il2cpp_TypeInfo_var);
|
|
Utf16ValueStringBuilder_Grow_mD6B54B7C7FC4FDA7D4B9BA46F741EEB4100DD359(__this, L_3, NULL);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_4 = __this->___buffer;
|
|
int32_t L_5 = __this->___index;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_6;
|
|
L_6 = MemoryExtensions_AsSpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mA4CB919BC75EECE15369129A6636919CBA5569BF_inline(L_4, L_5, MemoryExtensions_AsSpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mA4CB919BC75EECE15369129A6636919CBA5569BF_RuntimeMethod_var);
|
|
ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030((&___0_value), L_6, ReadOnlySpan_1_CopyTo_m42F1668DECE40277D97A37705EA6BE27CF7D5030_RuntimeMethod_var);
|
|
int32_t L_7 = __this->___index;
|
|
int32_t L_8;
|
|
L_8 = ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_inline((&___0_value), ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_RuntimeMethod_var);
|
|
__this->___index = ((int32_t)il2cpp_codegen_add(L_7, L_8));
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FormatParser_IsDigit_m5419D5E5B6C049D06D6A73373A2C7E0BFBFD4937_inline (Il2CppChar ___0_c, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar L_0 = ___0_c;
|
|
if ((((int32_t)((int32_t)48)) > ((int32_t)L_0)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
Il2CppChar L_1 = ___0_c;
|
|
return (bool)((((int32_t)((((int32_t)L_1) > ((int32_t)((int32_t)57)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B* ArrayPool_1_get_Shared_m8EB88B4EDF81135B55DB0F33A749B8087FE4646F_gshared_inline (const RuntimeMethod* method)
|
|
{
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1));
|
|
ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B* L_0 = ((ArrayPool_1_t3CE8332C9DFE03FF160AB0CE0FF17DF7792E0E4B_StaticFields*)il2cpp_codegen_static_fields_for(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1)))->___U3CSharedU3Ek__BackingField;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D MemoryExtensions_AsSpan_TisChar_t521A6F19B456D956AF452D926C32709DC03D6B17_mA4CB919BC75EECE15369129A6636919CBA5569BF_gshared_inline (CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* ___0_array, int32_t ___1_start, const RuntimeMethod* method)
|
|
{
|
|
il2cpp_rgctx_method_init(method);
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Il2CppChar V_1 = 0x0;
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_0 = ___0_array;
|
|
if (L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___1_start;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL);
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D));
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(Il2CppChar));
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
int32_t L_4 = ___1_start;
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_5 = ___0_array;
|
|
NullCheck(L_5);
|
|
if ((!(((uint32_t)L_4) > ((uint32_t)((int32_t)(((RuntimeArray*)L_5)->max_length))))))
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
ThrowHelper_ThrowArgumentOutOfRangeException_mD7D90276EDCDF9394A8EA635923E3B48BB71BD56(NULL);
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_6 = ___0_array;
|
|
NullCheck((RuntimeArray*)L_6);
|
|
uint8_t* L_7;
|
|
L_7 = Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline((RuntimeArray*)L_6, NULL);
|
|
Il2CppChar* L_8;
|
|
L_8 = il2cpp_unsafe_as_ref<Il2CppChar>(L_7);
|
|
int32_t L_9 = ___1_start;
|
|
Il2CppChar* L_10;
|
|
L_10 = il2cpp_unsafe_add<Il2CppChar,int32_t>(L_8, L_9);
|
|
CharU5BU5D_t799905CF001DD5F13F7DBB310181FC4D8B7D0AAB* L_11 = ___0_array;
|
|
NullCheck(L_11);
|
|
int32_t L_12 = ___1_start;
|
|
Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D L_13;
|
|
memset((&L_13), 0, sizeof(L_13));
|
|
Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_inline((&L_13), L_10, ((int32_t)il2cpp_codegen_subtract(((int32_t)(((RuntimeArray*)L_11)->max_length)), L_12)), il2cpp_rgctx_method(method->rgctx_data, 6));
|
|
return L_13;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ReadOnlySpan_1__ctor_m0152E50B40750679B83FF9F30CA539FFBB98EEE8_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar* L_0 = ___0_ptr;
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0);
|
|
__this->____pointer = L_1;
|
|
int32_t L_2 = ___1_length;
|
|
__this->____length = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR uint8_t* Array_GetRawSzArrayData_m2F8F5B2A381AEF971F12866D9C0A6C4FBA59F6BB_inline (RuntimeArray* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0* L_0;
|
|
L_0 = il2cpp_unsafe_as<RawData_t37CAF2D3F74B7723974ED7CEEE9B297D8FA64ED0*>(__this);
|
|
NullCheck(L_0);
|
|
uint8_t* L_1 = (uint8_t*)(&L_0->___Data);
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ReadOnlySpan_1_get_Length_m36BD32453530B535FE60A8123643219FEAABC351_gshared_inline (ReadOnlySpan_1_t59614EA6E51A945A32B02AB17FBCBDF9A5C419C1* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____length;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Span_1__ctor_mC9BE2938B716B46BB6B9070B94DBE5CE814BC0E2_gshared_inline (Span_1_tEDDF15FCF9EC6DEBA0F696BAACDDBAB9D92C252D* __this, Il2CppChar* ___0_ptr, int32_t ___1_length, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Il2CppChar* L_0 = ___0_ptr;
|
|
ByReference_1_t7BA5A6CA164F770BC688F21C5978D368716465F5 L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
il2cpp_codegen_by_reference_constructor((Il2CppByReference*)(&L_1), L_0);
|
|
__this->____pointer = L_1;
|
|
int32_t L_2 = ___1_length;
|
|
__this->____length = L_2;
|
|
return;
|
|
}
|
|
}
|