Vulkan: HashTableSlim lookup optimization (#4688)

This commit is contained in:
riperiperi 2023-04-16 18:57:01 +01:00 committed by GitHub
parent 3e68a87d63
commit 138d5dc64a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,6 +15,7 @@ namespace Ryujinx.Graphics.Vulkan
private struct Entry
{
public int Hash;
public K Key;
public V Value;
}
@ -59,6 +60,7 @@ namespace Ryujinx.Graphics.Vulkan
{
var entry = new Entry()
{
Hash = key.GetHashCode(),
Key = key,
Value = value
};
@ -91,12 +93,11 @@ namespace Ryujinx.Graphics.Vulkan
var bucket = _hashTable[hashCode & TotalBucketsMask];
if (bucket != null)
{
for (int i = 0; i < bucket.Length; i++)
{
ref var entry = ref bucket[i];
if (entry.Key.Equals(ref key))
if (entry.Hash == hashCode && entry.Key.Equals(ref key))
{
value = entry.Value;
return true;