From a49a3724105dadbb8b5f7cdee053950ce75f9c6d Mon Sep 17 00:00:00 2001 From: nattthebear Date: Mon, 4 May 2020 14:36:51 -0400 Subject: [PATCH] add bulk read of intptr memory domains. speeds up ram search in quicknes --- .../Base Implementations/MemoryDomainImpls.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/src/BizHawk.Emulation.Common/Base Implementations/MemoryDomainImpls.cs b/src/BizHawk.Emulation.Common/Base Implementations/MemoryDomainImpls.cs index 42c5c5043e..571f1b1735 100644 --- a/src/BizHawk.Emulation.Common/Base Implementations/MemoryDomainImpls.cs +++ b/src/BizHawk.Emulation.Common/Base Implementations/MemoryDomainImpls.cs @@ -1,5 +1,6 @@ using BizHawk.Common; using System; +using System.Runtime.InteropServices; namespace BizHawk.Emulation.Common { @@ -160,6 +161,21 @@ namespace BizHawk.Emulation.Common } } + public override void BulkPeekByte(Range addresses, byte[] values) + { + var start = (ulong)addresses.Start; + var count = addresses.Count(); + + if (start < (ulong)Size && (start + count) <= (ulong)Size) + { + Marshal.Copy((IntPtr)((ulong)Data + start), values, 0, (int)count); + } + else + { + throw new ArgumentOutOfRangeException(nameof(addresses)); + } + } + public void SetSize(long size) { Size = size;