-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmemory.c
More file actions
39 lines (34 loc) · 828 Bytes
/
memory.c
File metadata and controls
39 lines (34 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include "memory.h"
#include <stdlib.h>
#include "object.h"
#include "vm.h"
static void freeObject(Obj* object) {
switch (object->type)
{
case OBJ_STRING: {
ObjString* string = (ObjString*)object;
FREE_ARRAY(char, string->chars, string->length + 1);
FREE(ObjString, string);
break;
}
default:
break;
}
}
void* reallocate(void *pointer, size_t oldSize, size_t newSize) {
if (newSize == 0) {
free(pointer);
return NULL;
}
void* result = realloc(pointer, newSize);
if (result == NULL) exit(1);
return result;
}
void freeObjects() {
Obj* object = vm.objects;
while(object != NULL) {
Obj* next = object->next;
freeObject(object);
object = next;
}
}