From f99338dc2e4f64f3746ca7dcb8f160de9082b46f Mon Sep 17 00:00:00 2001 From: jdpurcell Date: Sat, 17 Jan 2015 03:55:41 +0000 Subject: [PATCH] Optimization (25% faster or so). --- BizHawk.Client.Common/rewind/Rewinder.cs | 35 ++++++++---------------- 1 file changed, 12 insertions(+), 23 deletions(-) diff --git a/BizHawk.Client.Common/rewind/Rewinder.cs b/BizHawk.Client.Common/rewind/Rewinder.cs index a6ea88213b..75f044bb96 100644 --- a/BizHawk.Client.Common/rewind/Rewinder.cs +++ b/BizHawk.Client.Common/rewind/Rewinder.cs @@ -253,7 +253,7 @@ namespace BizHawk.Client.Common stream.Write(currentState, 0, currentState.Length); } - private void CaptureRewindStateDelta(byte[] currentState, bool isSmall) + private unsafe void CaptureRewindStateDelta(byte[] currentState, bool isSmall) { // in case the state sizes mismatch, capture a full state rather than trying to do anything clever if (currentState.Length != _lastState.Length) @@ -278,8 +278,13 @@ namespace BizHawk.Client.Common { var writer = new BinaryWriter(ms); writer.Write(false); // delta state - for (int i = 0; i < currentState.Length; i++) + int stateLength = Math.Min(currentState.Length, _lastState.Length); // Just to be safe :) + fixed (byte* pCurrentState = ¤tState[0]) + fixed (byte* pLastState = &_lastState[0]) + for (int i = 0; i < stateLength; i++) { + bool thisByteMatches = *(pCurrentState + i) == *(pLastState + i); + if (inChangeSequence == false) { if (i >= _lastState.Length) @@ -287,7 +292,7 @@ namespace BizHawk.Client.Common continue; } - if (currentState[i] == _lastState[i]) + if (thisByteMatches) { continue; } @@ -296,9 +301,10 @@ namespace BizHawk.Client.Common beginChangeSequence = i; } - if (i - beginChangeSequence == 254 || i == currentState.Length - 1) + if (thisByteMatches || i - beginChangeSequence == 254 || i == currentState.Length - 1) { - writer.Write((byte)(i - beginChangeSequence + 1)); + int length = i - beginChangeSequence + (thisByteMatches ? 0 : 1); + writer.Write((byte)length); if (isSmall) { writer.Write((ushort)beginChangeSequence); @@ -308,24 +314,7 @@ namespace BizHawk.Client.Common writer.Write(beginChangeSequence); } - writer.Write(_lastState, beginChangeSequence, i - beginChangeSequence + 1); - inChangeSequence = false; - continue; - } - - if (currentState[i] == _lastState[i]) - { - writer.Write((byte)(i - beginChangeSequence)); - if (isSmall) - { - writer.Write((ushort)beginChangeSequence); - } - else - { - writer.Write(beginChangeSequence); - } - - writer.Write(_lastState, beginChangeSequence, i - beginChangeSequence); + writer.Write(_lastState, beginChangeSequence, length); inChangeSequence = false; } }