improve performance by using an inline locals array in hashmaps

This commit is contained in:
William Bell
2025-09-08 02:21:26 +01:00
parent 23c4a7ebd1
commit d46a6dc209
8 changed files with 60 additions and 27 deletions

View File

@@ -87,7 +87,7 @@ static inline void run_instruction(Translated *translated, RuntimeState *state,
RuntimeState init_runtime_state(Translated translated, char *path);
Stack *create_scope(Stack *prev);
Stack *create_scope(Stack *prev, bool force);
void runtime(Translated translated, RuntimeState state, Stack *stack,
ArErr *err);