RuntimeApi.cs 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Reflection;
  5. using System.Runtime.InteropServices;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace HybridCLR
  9. {
  10. public static class RuntimeApi
  11. {
  12. #if UNITY_STANDALONE_WIN
  13. private const string dllName = "GameAssembly";
  14. #elif UNITY_IOS || UNITY_STANDALONE_OSX || UNITY_WEBGL
  15. private const string dllName = "__Internal";
  16. #else
  17. private const string dllName = "il2cpp";
  18. #endif
  19. /// <summary>
  20. /// 加载补充元数据assembly
  21. /// </summary>
  22. /// <param name="dllBytes"></param>
  23. /// <returns></returns>
  24. /// <exception cref="NotSupportedException"></exception>
  25. public static unsafe LoadImageErrorCode LoadMetadataForAOTAssembly(byte[] dllBytes, HomologousImageMode mode)
  26. {
  27. #if UNITY_EDITOR
  28. return LoadImageErrorCode.OK;
  29. #else
  30. fixed(byte* data = dllBytes)
  31. {
  32. return (LoadImageErrorCode)LoadMetadataForAOTAssembly(data, dllBytes.Length, (int)mode);
  33. }
  34. #endif
  35. }
  36. /// <summary>
  37. /// 加载补充元数据assembly
  38. /// </summary>
  39. /// <param name="dllBytes"></param>
  40. /// <param name="dllSize"></param>
  41. /// <returns></returns>
  42. [DllImport(dllName, EntryPoint = "RuntimeApi_LoadMetadataForAOTAssembly")]
  43. public static extern unsafe int LoadMetadataForAOTAssembly(byte* dllBytes, int dllSize, int mode);
  44. /// <summary>
  45. /// 获取解释器线程栈的最大StackObject个数(size*8 为最终占用的内存大小)
  46. /// </summary>
  47. /// <returns></returns>
  48. [DllImport(dllName, EntryPoint = "RuntimeApi_GetInterpreterThreadObjectStackSize")]
  49. public static extern int GetInterpreterThreadObjectStackSize();
  50. /// <summary>
  51. /// 设置解释器线程栈的最大StackObject个数(size*8 为最终占用的内存大小)
  52. /// </summary>
  53. /// <param name="size"></param>
  54. [DllImport(dllName, EntryPoint = "RuntimeApi_SetInterpreterThreadObjectStackSize")]
  55. public static extern void SetInterpreterThreadObjectStackSize(int size);
  56. /// <summary>
  57. /// 获取解释器线程函数帧数量(sizeof(InterpreterFrame)*size 为最终占用的内存大小)
  58. /// </summary>
  59. /// <returns></returns>
  60. [DllImport(dllName, EntryPoint = "RuntimeApi_GetInterpreterThreadFrameStackSize")]
  61. public static extern int GetInterpreterThreadFrameStackSize();
  62. /// <summary>
  63. /// 设置解释器线程函数帧数量(sizeof(InterpreterFrame)*size 为最终占用的内存大小)
  64. /// </summary>
  65. /// <param name="size"></param>
  66. [DllImport(dllName, EntryPoint = "RuntimeApi_SetInterpreterThreadFrameStackSize")]
  67. public static extern void SetInterpreterThreadFrameStackSize(int size);
  68. }
  69. }