From 4eb89c823d4078b1b4d5bdb4c3ba2c916fa4eb35 Mon Sep 17 00:00:00 2001 From: zeromus Date: Wed, 5 Aug 2015 19:42:01 -0500 Subject: [PATCH] fix slow big O in TasStateManager, causing performance catastrophe when state scavenging begins. But I'm not 100% sure I did it right. --- .../movie/tasproj/TasStateManager.cs | 26 +++++++++++++++---- 1 file changed, 21 insertions(+), 5 deletions(-) diff --git a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs index 8b3d29f8d1..c7dbb86fe1 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasStateManager.cs @@ -215,14 +215,30 @@ namespace BizHawk.Client.Common { shouldRemove++; - // No need to have two savestates with only lag frames between them. - for (int i = shouldRemove; i < States.Count - 1; i++) + // No need to have two savestates with only lag frames between them: + // zero 05-aug-2015 - changed algorithm to iterate through States (a SortedList) instead of repeatedly call ElementAt (which is slow) + // previously : for (int i = shouldRemove; i < States.Count - 1; i++) if (AllLag(States.ElementAt(i).Key, States.ElementAt(i + 1).Key)) { shouldRemove = i; break; } } + int ctr = 0; + KeyValuePair? prior = null; + foreach (var kvp in States) { - if (AllLag(States.ElementAt(i).Key, States.ElementAt(i + 1).Key)) + ctr++; + if (ctr < shouldRemove) { - shouldRemove = i; - break; + prior = kvp; + continue; } + + if (prior.HasValue) + { + if (AllLag(prior.Value.Key, kvp.Key)) + { + shouldRemove = ctr-1; + break; + } + } + + prior = kvp; } // Keep marker states