increase hash store history limit; fix incorrectly skipping important go-to-code-location commands

This commit is contained in:
Ryan Fleury
2024-10-08 17:02:49 -07:00
parent aea1999af0
commit 05045c8db0
8 changed files with 13 additions and 20 deletions
+3 -1
View File
@@ -7,12 +7,14 @@
////////////////////////////////
//~ rjf: Cache Types
#define HS_KEY_HASH_HISTORY_COUNT 64
typedef struct HS_KeyNode HS_KeyNode;
struct HS_KeyNode
{
HS_KeyNode *next;
U128 key;
U128 hash_history[2];
U128 hash_history[HS_KEY_HASH_HISTORY_COUNT];
U64 hash_history_gen;
};