From 5c475ce8989367c5836499e50afbeb7265fcb36c Mon Sep 17 00:00:00 2001
From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com>
Date: Thu, 26 Oct 2023 03:22:28 -0700
Subject: [PATCH] Remove BizExvoker (unused for a long time, probably never
going to use it) Move MemoryBlock stuff and FPCtrl over from BizInvoke to
Common Move imports over to Common, remove unused imports Do tons of cleanup
here
---
src/BizHawk.BizInvoke/BizExvoker.cs | 124 ------------
src/BizHawk.BizInvoke/BizInvokeUtilities.cs | 14 +-
src/BizHawk.BizInvoke/BizInvoker.cs | 40 ++--
src/BizHawk.BizInvoke/BizInvokerUtilities.cs | 19 +-
.../CallingConventionAdapter.cs | 105 +++++-----
.../MemoryBlockWindowsPal.cs | 188 ------------------
src/BizHawk.BizInvoke/POSIXLibC.cs | 33 ---
.../rewind/ZwinderBuffer.cs | 8 +-
src/BizHawk.Client.EmuHawk/Program.cs | 1 -
.../FPCtrl.cs | 6 +-
.../MemoryBlock}/IMemoryBlockPal.cs | 3 +-
.../MemoryBlock}/MemoryBlock.cs | 62 ++++--
.../MemoryBlock}/MemoryBlockLinuxPal.cs | 50 +++--
.../MemoryBlock/MemoryBlockUtils.cs} | 66 +++---
.../MemoryBlock/MemoryBlockWindowsPal.cs | 54 +++++
.../MemoryBlock}/MemoryViewStream.cs | 83 ++++----
src/BizHawk.Common/POSIX/MmanImports.cs | 26 +++
src/BizHawk.Common/Win32/Kernel32Imports.cs | 62 ++++++
.../Waterbox/NymaCore.Settings.cs | 7 +-
.../Waterbox/WaterboxCore.cs | 11 +-
20 files changed, 394 insertions(+), 568 deletions(-)
delete mode 100644 src/BizHawk.BizInvoke/BizExvoker.cs
delete mode 100644 src/BizHawk.BizInvoke/MemoryBlockWindowsPal.cs
delete mode 100644 src/BizHawk.BizInvoke/POSIXLibC.cs
rename src/{BizHawk.BizInvoke => BizHawk.Common}/FPCtrl.cs (92%)
rename src/{BizHawk.BizInvoke => BizHawk.Common/MemoryBlock}/IMemoryBlockPal.cs (90%)
rename src/{BizHawk.BizInvoke => BizHawk.Common/MemoryBlock}/MemoryBlock.cs (83%)
rename src/{BizHawk.BizInvoke => BizHawk.Common/MemoryBlock}/MemoryBlockLinuxPal.cs (59%)
rename src/{BizHawk.BizInvoke/WaterboxUtils.cs => BizHawk.Common/MemoryBlock/MemoryBlockUtils.cs} (65%)
create mode 100644 src/BizHawk.Common/MemoryBlock/MemoryBlockWindowsPal.cs
rename src/{BizHawk.BizInvoke => BizHawk.Common/MemoryBlock}/MemoryViewStream.cs (71%)
create mode 100644 src/BizHawk.Common/POSIX/MmanImports.cs
create mode 100644 src/BizHawk.Common/Win32/Kernel32Imports.cs
diff --git a/src/BizHawk.BizInvoke/BizExvoker.cs b/src/BizHawk.BizInvoke/BizExvoker.cs
deleted file mode 100644
index 9afc683e5e..0000000000
--- a/src/BizHawk.BizInvoke/BizExvoker.cs
+++ /dev/null
@@ -1,124 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Linq;
-using System.Reflection;
-using System.Reflection.Emit;
-using System.Runtime.InteropServices;
-using BizHawk.Common;
-using BizHawk.Common.CollectionExtensions;
-
-namespace BizHawk.BizInvoke
-{
- public static class BizExvoker
- {
- ///
- /// the assembly that all delegate types are placed in
- ///
- private static readonly AssemblyBuilder ImplAssemblyBuilder;
-
- ///
- /// the module that all delegate types are placed in
- ///
- private static readonly ModuleBuilder ImplModuleBuilder;
-
- static BizExvoker()
- {
- var aname = new AssemblyName("BizExvokeProxyAssembly");
- ImplAssemblyBuilder = AssemblyBuilder.DefineDynamicAssembly(aname, AssemblyBuilderAccess.Run);
- ImplModuleBuilder = ImplAssemblyBuilder.DefineDynamicModule("BizExvokerModule");
- }
-
- ///
- /// holds the delegate types for a type
- ///
- private class DelegateStorage
- {
- ///
- /// the type that this storage was made for
- ///
- public Type OriginalType { get; }
- ///
- /// the type that the delegate types reside in
- ///
- public Type StorageType { get; }
-
- public List DelegateTypes { get; } = new List();
-
- public class StoredDelegateInfo
- {
- public MethodInfo Method { get; }
- public Type DelegateType { get; }
- public string EntryPointName { get; }
- public StoredDelegateInfo(MethodInfo method, Type delegateType, string entryPointName)
- {
- Method = method;
- DelegateType = delegateType;
- EntryPointName = entryPointName;
- }
- }
-
- public DelegateStorage(Type type)
- {
- var methods = type.GetMethods(BindingFlags.Instance | BindingFlags.Public)
- .Select(static m => (Info: m, Attr: m.GetCustomAttributes(true).OfType().FirstOrDefault()))
- .Where(static a => a.Attr is not null);
-
- var typeBuilder = ImplModuleBuilder.DefineType($"Bizhawk.BizExvokeHolder{type.Name}", TypeAttributes.Class | TypeAttributes.Public | TypeAttributes.Sealed);
-
- foreach (var a in methods)
- {
- var delegateType = BizInvokeUtilities.CreateDelegateType(a.Info, a.Attr!.CallingConvention, typeBuilder, out _).CreateType()!;
- DelegateTypes.Add(new StoredDelegateInfo(a.Info, delegateType, a.Attr.EntryPoint ?? a.Info.Name));
- }
- StorageType = typeBuilder.CreateType()!;
- OriginalType = type;
- }
- }
-
- private class ExvokerImpl : IImportResolver
- {
- private readonly Dictionary EntryPoints = new Dictionary();
-
- private readonly List Delegates = new List();
-
- public ExvokerImpl(object o, DelegateStorage d, ICallingConventionAdapter a)
- {
- foreach (var sdt in d.DelegateTypes)
- {
- var del = Delegate.CreateDelegate(sdt.DelegateType, o, sdt.Method);
- Delegates.Add(del); // prevent garbage collection of the delegate, which would invalidate the pointer
- EntryPoints.Add(sdt.EntryPointName, a.GetFunctionPointerForDelegate(del));
- }
- }
-
- public IntPtr GetProcAddrOrZero(string entryPoint) => EntryPoints.TryGetValue(entryPoint, out var ret) ? ret : IntPtr.Zero;
-
- public IntPtr GetProcAddrOrThrow(string entryPoint) => EntryPoints.TryGetValue(entryPoint, out var ret) ? ret : throw new InvalidOperationException($"could not find {entryPoint} in exports");
- }
-
- private static readonly Dictionary Impls = new Dictionary();
-
-
- public static IImportResolver GetExvoker(object o, ICallingConventionAdapter a)
- {
- DelegateStorage ds;
- lock (Impls) ds = Impls.GetValueOrPutNew1(o.GetType());
- return new ExvokerImpl(o, ds, a);
- }
- }
-
- /// Indicates that a method is to be exported by BizExvoker.
- [AttributeUsage(AttributeTargets.Method)]
- public sealed class BizExportAttribute : Attribute
- {
- public CallingConvention CallingConvention { get; }
-
- /// The annotated method's name is used iff .
- public string? EntryPoint { get; set; } = null;
-
- public BizExportAttribute(CallingConvention c)
- {
- CallingConvention = c;
- }
- }
-}
diff --git a/src/BizHawk.BizInvoke/BizInvokeUtilities.cs b/src/BizHawk.BizInvoke/BizInvokeUtilities.cs
index 0b9893bba1..f1ae099dcf 100644
--- a/src/BizHawk.BizInvoke/BizInvokeUtilities.cs
+++ b/src/BizHawk.BizInvoke/BizInvokeUtilities.cs
@@ -34,6 +34,7 @@ namespace BizHawk.BizInvoke
CallingConventions.Standard,
new[] { typeof(object), typeof(IntPtr) });
+ // ReSharper disable once BitwiseOperatorOnEnumWithoutFlags
delegateCtor.SetImplementationFlags(MethodImplAttributes.Runtime | MethodImplAttributes.Managed);
var delegateInvoke = delegateType.DefineMethod(
@@ -44,7 +45,7 @@ namespace BizHawk.BizInvoke
// we have to project all of the attributes from the baseMethod to the delegateInvoke
// so for something like [Out], the interop engine will see it and use it
- for (int i = 0; i < paramInfos.Length; i++)
+ for (var i = 0; i < paramInfos.Length; i++)
{
var p = delegateInvoke.DefineParameter(i + 1, ParameterAttributes.None, paramInfos[i].Name);
foreach (var a in paramInfos[i].GetCustomAttributes(false))
@@ -61,6 +62,7 @@ namespace BizHawk.BizInvoke
}
}
+ // ReSharper disable once BitwiseOperatorOnEnumWithoutFlags
delegateInvoke.SetImplementationFlags(MethodImplAttributes.Runtime | MethodImplAttributes.Managed);
// add the [UnmanagedFunctionPointer] to the delegate so interop will know how to call it
@@ -80,13 +82,15 @@ namespace BizHawk.BizInvoke
{
// anything more clever we can do here?
var t = o.GetType();
+
if (t == typeof(OutAttribute) || t == typeof(InAttribute))
{
- return new CustomAttributeBuilder(t.GetConstructor(Type.EmptyTypes)!, Array.Empty