2023-09-17 20:58:18 +08:00
|
|
|
using System;
|
2022-09-22 08:56:07 +08:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Reflection;
|
2023-10-09 22:24:35 +08:00
|
|
|
using System.Runtime.CompilerServices;
|
2022-09-22 08:56:07 +08:00
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace HybridCLR
|
|
|
|
{
|
|
|
|
public static class RuntimeApi
|
|
|
|
{
|
2022-10-08 12:35:34 +08:00
|
|
|
/// <summary>
|
|
|
|
/// 加载补充元数据assembly
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="dllBytes"></param>
|
|
|
|
/// <returns></returns>
|
|
|
|
/// <exception cref="NotSupportedException"></exception>
|
2023-10-09 22:24:35 +08:00
|
|
|
#if UNITY_EDITOR
|
2022-10-26 11:28:49 +08:00
|
|
|
public static unsafe LoadImageErrorCode LoadMetadataForAOTAssembly(byte[] dllBytes, HomologousImageMode mode)
|
2022-09-28 21:48:09 +08:00
|
|
|
{
|
2022-10-08 12:35:34 +08:00
|
|
|
return LoadImageErrorCode.OK;
|
2023-07-03 22:52:56 +08:00
|
|
|
}
|
|
|
|
#else
|
2023-10-09 22:24:35 +08:00
|
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
|
|
public static extern LoadImageErrorCode LoadMetadataForAOTAssembly(byte[] dllBytes, HomologousImageMode mode);
|
2023-07-03 22:52:56 +08:00
|
|
|
#endif
|
2022-11-05 22:22:39 +08:00
|
|
|
|
2022-10-08 12:35:34 +08:00
|
|
|
/// <summary>
|
|
|
|
/// 获取解释器线程栈的最大StackObject个数(size*8 为最终占用的内存大小)
|
|
|
|
/// </summary>
|
|
|
|
/// <returns></returns>
|
2023-07-03 22:52:56 +08:00
|
|
|
public static int GetInterpreterThreadObjectStackSize()
|
|
|
|
{
|
2023-12-22 12:24:09 +08:00
|
|
|
return GetRuntimeOption(RuntimeOptionId.InterpreterThreadObjectStackSize);
|
2023-07-03 22:52:56 +08:00
|
|
|
}
|
2023-10-09 22:24:35 +08:00
|
|
|
|
2022-10-08 12:35:34 +08:00
|
|
|
/// <summary>
|
|
|
|
/// 设置解释器线程栈的最大StackObject个数(size*8 为最终占用的内存大小)
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="size"></param>
|
2023-07-03 22:52:56 +08:00
|
|
|
public static void SetInterpreterThreadObjectStackSize(int size)
|
|
|
|
{
|
2023-12-22 12:24:09 +08:00
|
|
|
SetRuntimeOption(RuntimeOptionId.InterpreterThreadObjectStackSize, size);
|
2023-07-03 22:52:56 +08:00
|
|
|
}
|
2023-12-22 12:24:09 +08:00
|
|
|
|
|
|
|
|
2022-10-08 12:35:34 +08:00
|
|
|
/// <summary>
|
|
|
|
/// 获取解释器线程函数帧数量(sizeof(InterpreterFrame)*size 为最终占用的内存大小)
|
|
|
|
/// </summary>
|
|
|
|
/// <returns></returns>
|
2023-07-03 22:52:56 +08:00
|
|
|
public static int GetInterpreterThreadFrameStackSize()
|
|
|
|
{
|
2023-12-22 12:24:09 +08:00
|
|
|
return GetRuntimeOption(RuntimeOptionId.InterpreterThreadFrameStackSize);
|
2023-07-03 22:52:56 +08:00
|
|
|
}
|
2023-12-22 12:24:09 +08:00
|
|
|
|
2022-10-08 12:35:34 +08:00
|
|
|
/// <summary>
|
|
|
|
/// 设置解释器线程函数帧数量(sizeof(InterpreterFrame)*size 为最终占用的内存大小)
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="size"></param>
|
2023-07-03 22:52:56 +08:00
|
|
|
public static void SetInterpreterThreadFrameStackSize(int size)
|
|
|
|
{
|
2023-12-22 12:24:09 +08:00
|
|
|
SetRuntimeOption(RuntimeOptionId.InterpreterThreadFrameStackSize, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#if UNITY_EDITOR
|
|
|
|
|
|
|
|
private static readonly Dictionary<RuntimeOptionId, int> s_runtimeOptions = new Dictionary<RuntimeOptionId, int>();
|
|
|
|
|
|
|
|
public static void SetRuntimeOption(RuntimeOptionId optionId, int value)
|
|
|
|
{
|
|
|
|
s_runtimeOptions[optionId] = value;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
|
|
|
public static extern void SetRuntimeOption(RuntimeOptionId optionId, int value);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if UNITY_EDITOR
|
|
|
|
public static int GetRuntimeOption(RuntimeOptionId optionId)
|
|
|
|
{
|
|
|
|
if (s_runtimeOptions.TryGetValue(optionId, out var value))
|
|
|
|
{
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
return 0;
|
2023-07-03 22:52:56 +08:00
|
|
|
}
|
2023-07-07 21:38:38 +08:00
|
|
|
#else
|
2023-10-09 22:24:35 +08:00
|
|
|
[MethodImpl(MethodImplOptions.InternalCall)]
|
2023-12-22 12:24:09 +08:00
|
|
|
public static extern int GetRuntimeOption(RuntimeOptionId optionId);
|
2023-07-03 22:52:56 +08:00
|
|
|
#endif
|
2022-09-22 08:56:07 +08:00
|
|
|
}
|
|
|
|
}
|