From c18f1af150555e88b2b875e0384f74f06279f796 Mon Sep 17 00:00:00 2001 From: goyuken Date: Wed, 29 Jan 2014 04:31:23 +0000 Subject: [PATCH] PCE: fix noticeable LOH thrashing when rewinding with big savestates (arcade card) --- .../Consoles/PC Engine/PCEngine.cs | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs index 902a9be787..bdb368437e 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/PCEngine.cs @@ -233,6 +233,7 @@ namespace BizHawk.Emulation.Cores.PCEngine Cpu.ResetPC(); SetupMemoryDomains(); + SetupStateBuff(); } int _lagcount = 0; @@ -523,7 +524,8 @@ namespace BizHawk.Emulation.Cores.PCEngine } } - public byte[] SaveStateBinary() + byte[] SaveStateBinaryBuff; + void SetupStateBuff() { int buflen = 75908; if (SuperGrafx) buflen += 90700; @@ -533,15 +535,17 @@ namespace BizHawk.Emulation.Cores.PCEngine if (TurboCD) buflen += 0x20000 + 2165; if (ArcadeCard) buflen += 42; if (ArcadeCard && !ArcadeCardRewindHack) buflen += 0x200000; - //Console.WriteLine("LENGTH1 " + buflen); + SaveStateBinaryBuff = new byte[buflen]; + Console.WriteLine("PCE: Internal savestate buff of {0} allocated", buflen); + } - var buf = new byte[buflen]; - var stream = new MemoryStream(buf); + public byte[] SaveStateBinary() + { + var stream = new MemoryStream(SaveStateBinaryBuff); var writer = new BinaryWriter(stream); SaveStateBinary(writer); - //Console.WriteLine("LENGTH2 " + stream.Position); writer.Close(); - return buf; + return SaveStateBinaryBuff; } public bool BinarySaveStatesPreferred { get { return false; } }