-
Notifications
You must be signed in to change notification settings - Fork 0
/
bigdriver.c
329 lines (263 loc) · 9.09 KB
/
bigdriver.c
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
#include <stdio.h>
#include <unistd.h>
#include "mymalloc.h"
// Ooooh, pretty colors...
#define CRESET "\e[0m"
#define CRED "\e[31m"
#define CGREEN "\e[32m"
#define CYELLOW "\e[33m"
#define CBLUE "\e[34m"
#define CMAGENTA "\e[35m"
#define CCYAN "\e[36m"
// You can use these in printf format strings like:
// printf("This is " RED("red") " text.\n");
// NO COMMAS!!
#define RED(X) CRED X CRESET
#define GREEN(X) CGREEN X CRESET
#define YELLOW(X) CYELLOW X CRESET
#define BLUE(X) CBLUE X CRESET
#define MAGENTA(X) CMAGENTA X CRESET
#define CYAN(X) CCYAN X CRESET
#define PTR_ADD_BYTES(ptr, byte_offs) ((void*)(((char*)(ptr)) + (byte_offs)))
void check_heap_size(const char* where, void* heap_at_start)
{
void* heap_at_end = sbrk(0);
unsigned int heap_size_diff = (unsigned int)(heap_at_end - heap_at_start);
if(heap_size_diff)
printf(RED("After %s the heap got bigger by %u (0x%X) bytes...\n"),
where, heap_size_diff, heap_size_diff);
else
printf(GREEN("Yay, after %s, everything was freed!\n"), where);
}
void fill_array(int* arr, int length)
{
int i;
for(i = 0; i < length; i++)
arr[i] = i + 1;
}
int* make_array(int length)
{
int* ret = my_malloc(sizeof(int) * length);
fill_array(ret, length);
return ret;
}
// A very simple test that allocates two blocks, fills them with data,
// then frees them in reverse order. Even the simplest allocator should
// work for this, and the heap should be back where it started afterwards.
void test_writing()
{
printf(CYAN("Running test_writing...\n"));
printf(YELLOW("If this crashes, make sure my_malloc returns a pointer to the data part of the"
" block, NOT the header. my_free also has to handle that by moving the pointer backwards."));
printf("!!! " RED("RUN OTHER TESTS TOO. THIS IS NOT THE ONLY TEST.") " !!!\n");
void* heap_at_start = sbrk(0);
int* a = make_array(10);
int* b = make_array(10);
// Just to make sure..
int i;
for(i = 0; i < 10; i++)
printf("a[%d] = %d, b[%d] = %d\n", i, a[i], i, b[i]);
// Freeing in reverse order.
my_free(b);
my_free(a);
check_heap_size("test_writing", heap_at_start);
}
// A slightly more complex test that makes sure you can deallocate in either order and
// that those deallocated blocks can be reused.
void test_reuse()
{
printf(CYAN("Running test_reuse...\n"));
void* heap_at_start = sbrk(0);
int* a = make_array(20);
int* b = make_array(20);
my_free(a);
// After that free, your heap should have two blocks:
// - A free 80-byte block at the beginning
// - Then a used 80-byte block as the heap tail
// So when we allocate another block of a *smaller* size,
// it should reuse the first one:
int* c = make_array(10);
if(a != c)
printf(RED("You didn't reuse the free block!\n"));
// Here, if you DIDN'T implement splitting,
// you will still have two blocks:
// - A used 80-byte block (NOT 40 bytes!) at the beginning
// - A used 80-byte block as the heap tail
// But if you DID implement splitting, you will have:
// - A used 40-byte block at the beginning
// - A free *24-byte* block in the middle (assuming your block header is 16 bytes)
// - A used 80-byte block as the heap tail
my_free(c);
// No matter what, here you will have two blocks:
// - A free 80-byte block at the beginning
// - A used 80-byte block as the heap tail
// If you have 2 free blocks instead of 1, your coalescing isn't working.
my_free(b);
// Finally, if you DIDN'T implement coalescing, you
// will still have one free 80-byte block on the heap,
// and you'll get a message saying the heap grew
// by 80 + sizeof(header) bytes.
// But if you DID implement coalescing, you will have
// nothing left on the heap here!
check_heap_size("test_reuse", heap_at_start);
}
// A test which ensures that best-fit works how it should.
void test_best_fit()
{
printf(CYAN("Running test_best_fit...\n"));
void* heap_at_start = sbrk(0);
int* a = make_array(50);
int* div1 = make_array(1);
int* b = make_array(40);
int* div2 = make_array(1);
int* c = make_array(30);
int* div3 = make_array(1);
int* d = make_array(20);
int* div4 = make_array(1);
int* e = make_array(10);
int* div5 = make_array(1);
my_free(a);
my_free(b);
my_free(c);
my_free(d);
my_free(e);
// Should have 5 free blocks, separated by tiny used blocks.
// Now let's make some in-between sized arrays, which should reuse those older slots,
// regardless of where they are on the heap.
int* should_be_a = make_array(49);
int* should_be_e = make_array(9);
int* should_be_c = make_array(29);
int* should_be_d = make_array(19);
int* should_be_b = make_array(39);
if(should_be_a != a) printf(RED("the 200-byte block was not reused.\n"));
if(should_be_b != b) printf(RED("the 160-byte block was not reused.\n"));
if(should_be_c != c) printf(RED("the 120-byte block was not reused.\n"));
if(should_be_d != d) printf(RED("the 80-byte block was not reused.\n"));
if(should_be_e != e) printf(RED("the 40-byte block was not reused.\n"));
my_free(a);
my_free(b);
my_free(c);
my_free(d);
my_free(e);
my_free(div1);
my_free(div2);
my_free(div3);
my_free(div4);
my_free(div5);
check_heap_size("test_best_fit", heap_at_start);
}
// Makes sure that your coalescing works.
void test_coalescing()
{
printf(CYAN("Running test_coalescing...\n"));
void* heap_at_start = sbrk(0);
int* a = make_array(10);
int* b = make_array(10);
int* c = make_array(10);
int* d = make_array(10);
int* e = make_array(10);
// Should have 5 used 40-byte blocks.
// Now let's test freeing. The first free will test
// freeing at the beginning of the heap, and the next
// ones will test with a single previous free neighbor.
// After each of these frees, you should have ONE
// free block of the given size (assuming your headers are 16 bytes):
my_free(a); // 40B
my_free(b); // 96B
my_free(c); // 152B
my_free(d); // 208B
// This should reuse a's block, since it's 208 bytes.
int* f = make_array(52);
if(a != f)
printf(RED("You didn't reuse the coalesced block!\n"));
// Now, when we free these, they should coalesce into
// a single big block, and then be sbrk'ed away!
my_free(f);
my_free(e);
check_heap_size("part 1 of test_coalescing", heap_at_start);
// Let's re-allocate...
a = make_array(10);
b = make_array(10);
c = make_array(10);
d = make_array(10);
e = make_array(10);
// Now let's test freeing random blocks. my_free(a)
// will test freeing with a single next free neighbor, and
// my_free(c) will test with two free neighbors.
// After each you should have:
my_free(b); // one free 40B
my_free(d); // two free 40B
my_free(a); // one free 96B, one free 40B
my_free(c); // one free 208B
my_free(e); // nothing left!
check_heap_size("part 2 of test_coalescing", heap_at_start);
// Finally, let's make sure coalescing at the beginning
// and end of the heap work properly.
a = make_array(10);
b = make_array(10);
c = make_array(10);
d = make_array(10);
e = make_array(10);
// After each you should have:
my_free(b); // one free 40B, four used 40B
my_free(a); // one free 96B, three used 40B
my_free(d); // one free 96B, one free 40B, two used 40B
my_free(e); // one free 96B, one used 40B
my_free(c); // nothing left!
check_heap_size("part 3 of test_coalescing", heap_at_start);
}
// Makes sure that your block splitting works.
void test_splitting()
{
printf(CYAN("Running test_splitting...\n"));
void* heap_at_start = sbrk(0);
int* medium = make_array(64); // make a 256-byte block.
int* holder = make_array(4); // holds the break back.
my_free(medium);
// Now there should be a free 256-byte block.
// THIS allocation SHOULD NOT split the block, since it's
// too big (would leave a too-small block).
// It would want a 228 byte data portion, + 16 bytes for the header, would leave
// only 8 bytes for the free split block's data.
int* too_big = make_array(57);
// Now you should have two blocks on the heap, but the first used one should still
// be 256 bytes, even though the user only asked for 228!
my_free(too_big);
// Still 2 blocks, but the first is free again.
// Let's see if your algorithm can find small blocks to split.
// After each, you should be left with a free block of the given
// size:
int* tiny1 = make_array(4); // 224B
int* tiny2 = make_array(4); // 192B
int* tiny3 = make_array(4); // 160B
int* tiny4 = make_array(4); // 128B
if(tiny1 != medium)
printf(RED("You didn't split the 256B block!\n"));
else if(tiny2 != PTR_ADD_BYTES(tiny1, 32))
printf(RED("You didn't split the 224B block!\n"));
else if(tiny3 != PTR_ADD_BYTES(tiny2, 32))
printf(RED("You didn't split the 192B block!\n"));
else if(tiny4 != PTR_ADD_BYTES(tiny3, 32))
printf(RED("You didn't split the 160B block!\n"));
my_free(tiny1);
my_free(tiny2);
my_free(tiny3);
my_free(tiny4);
my_free(holder);
check_heap_size("test_splitting", heap_at_start);
}
int main()
{
void* heap_at_start = sbrk(0);
// Uncomment a test and recompile before running it.
// When complete, you should be able to uncomment all the tests
// and they should run flawlessly.
test_writing();
test_reuse();
test_best_fit();
test_coalescing();
test_splitting();
// Just to make sure!
check_heap_size("main", heap_at_start);
return 0;
}