1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #pragma once
- #include "../CommonDef.h"
- #include "InterpreterDefs.h"
- namespace hybridclr
- {
- namespace interpreter
- {
- union StackObject;
- typedef void (*Managed2NativeCallMethod)(const MethodInfo* method, uint16_t* argVarIndexs, StackObject* localVarBase, void* ret);
- typedef void (*NativeClassCtor0)(Il2CppObject* obj, const MethodInfo* method);
- struct Managed2NativeMethodInfo
- {
- const char* signature;
- Managed2NativeCallMethod method;
- };
- struct Native2ManagedMethodInfo
- {
- const char* signature;
- Il2CppMethodPointer method;
- };
- struct NativeAdjustThunkMethodInfo
- {
- const char* signature;
- Il2CppMethodPointer method;
- };
- struct FullName2Signature
- {
- const char* fullName;
- const char* signature;
- };
- extern Managed2NativeMethodInfo g_managed2nativeStub[];
- extern Native2ManagedMethodInfo g_native2managedStub[];
- extern NativeAdjustThunkMethodInfo g_adjustThunkStub[];
- extern FullName2Signature g_fullName2SignatureStub[];
-
- void ConvertInvokeArgs(StackObject* resultArgs, const MethodInfo* method, MethodArgDesc* argDescs, void** args);
- bool ComputeSignature(const MethodInfo* method, bool call, char* sigBuf, size_t bufferSize);
- bool ComputeSignature(const Il2CppMethodDefinition* method, bool call, char* sigBuf, size_t bufferSize);
- bool ComputeSignature(const Il2CppType* ret, const Il2CppType* params, uint32_t paramCount, bool instanceCall, char* sigBuf, size_t bufferSize);
-
- template<typename T> uint64_t N2MAsUint64ValueOrAddress(T& value)
- {
- return sizeof(T) <= 8 ? *(uint64_t*)&value : (uint64_t)&value;
- }
- template<typename T> T& M2NFromValueOrAddress(void* value)
- {
-
- return *(T*)value;
- }
-
- }
- }
|