-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathImplement malloc and free.cpp
83 lines (55 loc) · 1.71 KB
/
Implement malloc and free.cpp
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
Implement malloc and free in C
*/
/*
Background: for each process, OS already allocated a small memory space. When the program calls malloc,
it will search this space at first.
If the space is not enough, malloc will call function sbrk to extend the end of the allocated memory space.
*/
//memory control block
struct mcb {
int available; //1 if this memory space is free, 0 if not.
int size; //size of this memory space
}
void *memStart; //the memory address which malloc searches from.
void *lastAddr; //last effective memory address
int hasInit;
void init() {
lastAddr = sbrk(0); //initialize the last effective memory address as the stack end
memStart = lastAddr;
hasInit = 1;
}
void *malloc_mem(int num) {
if (!hasInit) {
init();
}
void *current = memStart;
void *ret = NULL; // the final return address
num += sizeof(mcb); //need to add the size of mcb
while (current != lastAddr) {
mcb *pcurrent = current;
if (pcurrent->available && pcurrent->size >= num) { // if size is enough
pcurrent->available = 0;
ret = current;
break;
}
current += pcurrent->size; //check next memory block
}
if (!ret) { //if there is no available memory block,or allocated first time
sbrk(num); //adjust the size of stack end
ret = lastAddr;
lastAddr += num;
mcb *pcb = ret;
pcb->size = num;
pcb->available = 0;
}
ret += sizeof(mcb); // return ret, skip the size of mcb
return ret;
}
/*
free memory function
*/
void free_mem(void *start) {
mcb *pmcb = (mcb *)(start - sizeof(mcb));
pmcb->available = 1;
}