72 lines
3.4 KiB
C#
72 lines
3.4 KiB
C#
|
using dnlib.DotNet;
|
|||
|
using HybridCLR.Editor.ABI;
|
|||
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Reflection;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
namespace HybridCLR.Editor.MethodBridge
|
|||
|
{
|
|||
|
|
|||
|
|
|||
|
|
|||
|
public class PlatformGeneratorArm64 : PlatformGeneratorBase
|
|||
|
{
|
|||
|
public override PlatformABI PlatformABI { get; } = PlatformABI.Universal64;
|
|||
|
|
|||
|
public override void GenerateManaged2NativeMethod(MethodDesc method, List<string> lines)
|
|||
|
{
|
|||
|
int totalQuadWordNum = method.ParamInfos.Count + method.ReturnInfo.GetParamSlotNum(this.PlatformABI);
|
|||
|
string paramListStr = string.Join(", ", method.ParamInfos.Select(p => $"{p.Type.GetTypeName()} __arg{p.Index}").Concat(new string[] { "const MethodInfo* method" }));
|
|||
|
string paramNameListStr = string.Join(", ", method.ParamInfos.Select(p => p.Managed2NativeParamValue(this.PlatformABI)).Concat(new string[] { "method" }));
|
|||
|
|
|||
|
lines.Add($@"
|
|||
|
// {method.MethodDef}
|
|||
|
static void __M2N_{method.CreateCallSigName()}(const MethodInfo* method, uint16_t* argVarIndexs, StackObject* localVarBase, void* ret)
|
|||
|
{{
|
|||
|
typedef {method.ReturnInfo.Type.GetTypeName()} (*NativeMethod)({paramListStr});
|
|||
|
{(!method.ReturnInfo.IsVoid ? $"*({method.ReturnInfo.Type.GetTypeName()}*)ret = " : "")}((NativeMethod)(method->methodPointerCallByInterp))({paramNameListStr});
|
|||
|
}}
|
|||
|
");
|
|||
|
}
|
|||
|
|
|||
|
public override void GenerateNative2ManagedMethod(MethodDesc method, List<string> lines)
|
|||
|
{
|
|||
|
int totalQuadWordNum = method.ParamInfos.Count + method.ReturnInfo.GetParamSlotNum(this.PlatformABI);
|
|||
|
string paramListStr = string.Join(", ", method.ParamInfos.Select(p => $"{p.Type.GetTypeName()} __arg{p.Index}").Concat(new string[] { "const MethodInfo* method" }));
|
|||
|
|
|||
|
lines.Add($@"
|
|||
|
// {method.MethodDef}
|
|||
|
static {method.ReturnInfo.Type.GetTypeName()} __N2M_{method.CreateCallSigName()}({paramListStr})
|
|||
|
{{
|
|||
|
StackObject args[{Math.Max(totalQuadWordNum, 1)}] = {{{string.Join(", ", method.ParamInfos.Select(p => p.Native2ManagedParamValue(this.PlatformABI)))} }};
|
|||
|
StackObject* ret = {(method.ReturnInfo.IsVoid ? "nullptr" : "args + " + method.ParamInfos.Count)};
|
|||
|
Interpreter::Execute(method, args, ret);
|
|||
|
{(!method.ReturnInfo.IsVoid ? $"return *({method.ReturnInfo.Type.GetTypeName()}*)ret;" : "")}
|
|||
|
}}
|
|||
|
");
|
|||
|
}
|
|||
|
|
|||
|
public override void GenerateAdjustThunkMethod(MethodDesc method, List<string> lines)
|
|||
|
{
|
|||
|
int totalQuadWordNum = method.ParamInfos.Count + method.ReturnInfo.GetParamSlotNum(this.PlatformABI);
|
|||
|
|
|||
|
string paramListStr = string.Join(", ", method.ParamInfos.Select(p => $"{p.Type.GetTypeName()} __arg{p.Index}").Concat(new string[] { "const MethodInfo* method" }));
|
|||
|
|
|||
|
lines.Add($@"
|
|||
|
// {method.MethodDef}
|
|||
|
static {method.ReturnInfo.Type.GetTypeName()} __N2M_AdjustorThunk_{method.CreateCallSigName()}({paramListStr})
|
|||
|
{{
|
|||
|
StackObject args[{Math.Max(totalQuadWordNum, 1)}] = {{{string.Join(", ", method.ParamInfos.Select(p => (p.Index == 0 ? $"(uint64_t)(*(uint8_t**)&__arg{p.Index} + sizeof(Il2CppObject))" : p.Native2ManagedParamValue(this.PlatformABI))))} }};
|
|||
|
StackObject* ret = {(method.ReturnInfo.IsVoid ? "nullptr" : "args + " + method.ParamInfos.Count)};
|
|||
|
Interpreter::Execute(method, args, ret);
|
|||
|
{(!method.ReturnInfo.IsVoid ? $"return *({method.ReturnInfo.Type.GetTypeName()}*)ret;" : "")}
|
|||
|
}}
|
|||
|
");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|