2022-09-22 08:56:07 +08:00
|
|
|
|
using dnlib.DotNet;
|
2023-06-07 11:47:17 +08:00
|
|
|
|
using HybridCLR.Editor.ABI;
|
2022-09-22 08:56:07 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Concurrent;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace HybridCLR.Editor.Meta
|
|
|
|
|
{
|
|
|
|
|
public class MethodReferenceAnalyzer
|
|
|
|
|
{
|
2023-06-07 11:47:17 +08:00
|
|
|
|
private readonly Action<MethodDef, List<TypeSig>, List<TypeSig>, GenericMethod> _onNewMethod;
|
2022-09-22 08:56:07 +08:00
|
|
|
|
|
|
|
|
|
private readonly ConcurrentDictionary<MethodDef, List<IMethod>> _methodEffectInsts = new ConcurrentDictionary<MethodDef, List<IMethod>>();
|
|
|
|
|
|
2023-06-07 11:47:17 +08:00
|
|
|
|
public MethodReferenceAnalyzer(Action<MethodDef, List<TypeSig>, List<TypeSig>, GenericMethod> onNewMethod)
|
2022-09-22 08:56:07 +08:00
|
|
|
|
{
|
|
|
|
|
_onNewMethod = onNewMethod;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void WalkMethod(MethodDef method, List<TypeSig> klassGenericInst, List<TypeSig> methodGenericInst)
|
|
|
|
|
{
|
|
|
|
|
var ctx = new GenericArgumentContext(klassGenericInst, methodGenericInst);
|
|
|
|
|
|
|
|
|
|
if (_methodEffectInsts.TryGetValue(method, out var effectInsts))
|
|
|
|
|
{
|
|
|
|
|
foreach (var met in effectInsts)
|
|
|
|
|
{
|
|
|
|
|
var resolveMet = GenericMethod.ResolveMethod(met, ctx)?.ToGenericShare();
|
2023-06-07 11:47:17 +08:00
|
|
|
|
_onNewMethod(method, klassGenericInst, methodGenericInst, resolveMet);
|
2022-09-22 08:56:07 +08:00
|
|
|
|
}
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var body = method.Body;
|
|
|
|
|
if (body == null || !body.HasInstructions)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
effectInsts = new List<IMethod>();
|
|
|
|
|
foreach (var inst in body.Instructions)
|
|
|
|
|
{
|
|
|
|
|
if (inst.Operand == null)
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
switch (inst.Operand)
|
|
|
|
|
{
|
|
|
|
|
case IMethod met:
|
|
|
|
|
{
|
|
|
|
|
if (!met.IsMethod)
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
var resolveMet = GenericMethod.ResolveMethod(met, ctx)?.ToGenericShare();
|
|
|
|
|
if (resolveMet == null)
|
|
|
|
|
{
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
effectInsts.Add(met);
|
2023-06-07 11:47:17 +08:00
|
|
|
|
_onNewMethod(method, klassGenericInst, methodGenericInst, resolveMet);
|
2022-09-22 08:56:07 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
case ITokenOperand token:
|
|
|
|
|
{
|
|
|
|
|
//GenericParamContext paramContext = method.HasGenericParameters || method.DeclaringType.HasGenericParameters ?
|
|
|
|
|
// new GenericParamContext(method.DeclaringType, method) : default;
|
|
|
|
|
//method.Module.ResolveToken(token.MDToken, paramContext);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
_methodEffectInsts.TryAdd(method, effectInsts);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|