have memory malloced then converted to GC

This commit is contained in:
2025-08-09 22:11:59 +01:00
parent b755e574bd
commit ad3e31b0a2
8 changed files with 636599 additions and 62 deletions

View File

@@ -35,13 +35,13 @@ typedef struct {
void *data;
size_t capacity;
size_t size;
struct hashmap_GC *hashmap;
struct hashmap *hashmap;
} ConstantArena;
typedef struct {
uint8_t registerCount;
DArray *return_jumps;
darray_armem bytecode;
DArray bytecode;
ConstantArena constants;
char *path;
} Translated;