-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathmmv2.c
561 lines (456 loc) · 15.4 KB
/
mmv2.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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
/*
* mm.c
*
* Timothy Kaboya - tkaboya
* HLD Description of my solution
* TODO
*/
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "mm.h"
#include "memlib.h"
/* do not change the following! */
#ifdef DRIVER
/* create aliases for driver tests */
#define malloc mm_malloc
#define free mm_free
#define realloc mm_realloc
#define calloc mm_calloc
#define checkheap mm_checkheap
#endif /* def DRIVER */
/* If you want debugging output, use the following macro. When you hand
* in, remove the #define DEBUG line. */
#define DEBUG
#ifdef DEBUG
# define dbg_printf(...) printf(__VA_ARGS__)
#else
# define dbg_printf(...)
#endif
/* Basic constants and macros */
#define WSIZE 4 /* Word and header/footer size (bytes) */
#define DSIZE 8 /* Double word size (bytes) */
#define CHUNKSIZE (1<<12) /* Extend heap by this amount (bytes) */
#define ALIGNMENT 8 /* single word (4) or double word (8) alignment */
#define MAX(x, y) ((x) > (y)? (x) : (y))
/* rounds up to the nearest multiple of ALIGNMENT */
#define ALIGN(p) (((size_t)(p) + (ALIGNMENT-1)) & ~0x7)
/* Pack a size and allocated bit into a word */
#define PACK(size, alloc) ((size) | (alloc))
/* Read and write a word at address p */
#define GET(p) (*(unsigned int *)(p))
#define PUT(p, val) (*(unsigned int *)(p) = (val))
/* Read the size and allocated fields from address p */
#define GET_SIZE(p) (GET(p) & ~0x7)
#define GET_ALLOC(p) (GET(p) & 0x1)
/* Given block ptr ptr, compute address of its header and footer */
#define HDRP(ptr) ((char *)(ptr) - WSIZE)
#define FTRP(ptr) ((char *)(ptr) + GET_SIZE(HDRP(ptr)) - DSIZE)
/* Given block ptr ptr, compute address of next and previous blocks */
#define NEXT_BLKP(ptr) ((char *)(ptr) + GET_SIZE(((char *)(ptr) - WSIZE)))
#define PREV_BLKP(ptr) ((char *)(ptr) - GET_SIZE(((char *)(ptr) - DSIZE)))
/* Given free list ptr, compute address of next and previous free list ptrs */
#define NEXT_FREEP(ptr) (*(char **)((char *)(ptr) + DSIZE))
#define PREV_FREEP(ptr) (*(char **)((char * )(ptr)))
/* Global variables */
static char *heap_listp = 0; /* Pointer to first block */
static char *free_listp = 0; /* Pointer to list to list of free blocks */
/* Function prototypes for internal helper routines */
static void *extend_heap(size_t words);
static void place(void *ptr, size_t asize);
static void *find_fit(size_t asize);
static void *coalesce(void *ptr);
/* My own helpers: :) */
static void printblock(void *ptr);
static void checkblock(void *ptr);
static void insertfreeblock(void *ptr);
static void removefreeblock(void *ptr);
static int freelistedge(void *ptr);
/*
* Initialize memory manager: return -1 on error, 0 on success.
* Memory is essentially one huge block that is in free list.
*/
int mm_init(void) {
printf("Calling init() \n");
/* Create the initial empty heap(free list) */
if ((heap_listp = mem_sbrk(4*WSIZE)) == (void *)-1)
return -1;
PUT(heap_listp, 0); /* Alignment padding */
PUT(heap_listp + (1*WSIZE), PACK(DSIZE, 1)); /* Prologue header */
PUT(heap_listp + (2*WSIZE), PACK(DSIZE, 1)); /* Prologue footer */
PUT(heap_listp + (3*WSIZE), PACK(0, 1)); /* Epilogue header */
heap_listp += (2*WSIZE);
/* Extend the empty heap with a free block of CHUNKSIZE bytes */
if (extend_heap(CHUNKSIZE/WSIZE) == NULL)
return -1;
free_listp = heap_listp + DSIZE;
PREV_FREEP(free_listp) = NULL;
NEXT_FREEP(free_listp) = NULL;
return 0;
}
/*
* malloc - Allocate a block with at least size bytes of payload
*/
void *malloc (size_t size) {
size_t asize; /* Adjusted block size */
size_t extendsize; /* Amount to extend heap if no fit */
char *ptr;
printf("Called malloc(%ld)\n",size);
if (heap_listp == 0){
mm_init();
}
/* Ignore spurious requests */
if (size == 0)
return NULL;
/* Adjust block size to include overhead and alignment reqs. */
if (size <= DSIZE)
asize = 2*DSIZE;
else
asize = DSIZE * ((size + (DSIZE) + (DSIZE-1)) / DSIZE);
/* Search the free list for a fit */
if ((ptr = find_fit(asize)) != NULL) {
place(ptr, asize);
printf("(%ld) at Addr: %lx\n", asize, (long)ptr);
return ptr;
}
/* No fit found. Get more memory and place the block */
extendsize = MAX(asize,CHUNKSIZE);
if ((ptr = extend_heap(extendsize/WSIZE)) == NULL)
return NULL;
place(ptr, asize);
return ptr;
}
/*
* free - Free a block
*/
void free (void *ptr) {
printf("Called free(%lx)\n",(long)ptr);
if (ptr == 0)
return;
size_t size = GET_SIZE(HDRP(ptr));
if (heap_listp == 0){
mm_init();
}
/* Set header, footer alloc bits to zero */
PUT(HDRP(ptr), PACK(size, 0));
PUT(FTRP(ptr), PACK(size, 0));
coalesce(ptr);
}
/*
* realloc - Naive implementation of realloc
*/
void *realloc(void *ptr, size_t size) {
size_t oldsize;
void *newptr;
printf("Called realloc(0x%lx:%ld)\n",(long)ptr, size);
/* If size == 0 then this is just free, and we return NULL. */
if(size == 0) {
mm_free(ptr);
return 0;
}
/* If oldptr is NULL, then this is just malloc. */
if(ptr == NULL) {
return mm_malloc(size);
}
newptr = mm_malloc(size);
/* If realloc() fails the original block is left untouched */
if(!newptr) {
return 0;
}
/* Copy the old data. */
oldsize = GET_SIZE(HDRP(ptr));
if(size < oldsize) oldsize = size;
memcpy(newptr, ptr, oldsize);
/* Free the old block. */
mm_free(ptr);
return newptr;
}
/*
* calloc - Allocate the block and set it to zero
* Borrowed from mm-naive.c
*
* FYI: This function is not tested by mdriver, but it is
* needed to run the traces.
*/
void *calloc (size_t nmemb, size_t size) {
size_t bytes = nmemb * size;
void *newptr;
newptr = malloc(bytes);
memset(newptr, 0, bytes);
return newptr;
}
/*
* Return whether the pointer is in the heap.
* May be useful for debugging.
*/
static int in_heap(const void *p) {
return p <= mem_heap_hi() && p >= mem_heap_lo();
}
/*
* Return whether the pointer is aligned.
* May be useful for debugging.
*/
static int aligned(const void *p) {
return (size_t)ALIGN(p) == (size_t)p;
}
/*
* mm_checkheap - Check the heap for correctness. Helpful hint: You
* can call this function using mm_checkheap(__LINE__);
* to identify the line number of the call site.
*/
void mm_checkheap(int lineno) {
void *ptr;
int numfree1 = 0, numfree2 = 0; /* Count free blocks */
ptr = heap_listp; /* Start from the first block address */
/* Check prologue */
if ((GET_SIZE(ptr) != 8) || (GET_ALLOC(ptr) != 1)) {
printf("Addr: %p - ** Prologue Error** \n", ptr);
assert(0);
}
ptr = NEXT_BLKP(ptr);
/* Iterating through entire heap. Convoluted code checks that
* we are not at the epilogue. Loops thr and checks epilogue block! */
while (!((GET_SIZE(HDRP(ptr)) == 0) && (GET_ALLOC(HDRP(ptr)) == 1))) {
/* Check each block's address alignment */
if (!aligned(ptr)) {
printf("Addr: %p - ** Block Alignment Error** \n", ptr);
assert(0);
}
/* Each block's bounds check */
if (!in_heap(ptr)) {
printf("Addr: %p - ** Out of Heap Bounds Error** \n", ptr);
assert(0);
}
/* Check each block's header and footer */
checkblock(ptr);
/* Check coalescing: If alloc bit of current and next block is 0 */
if (!(GET_ALLOC(HDRP(ptr)) || GET_ALLOC(HDRP(NEXT_BLKP(ptr))))) {
printf("Addr: %p - ** Coalescing Error** \n", ptr);
assert(0);
}
/* Count number of free blocks */
if(!(GET_ALLOC(HDRP(ptr))))
numfree1++;
ptr = NEXT_BLKP(ptr);
}
/* Heap Check for explicit + segre list ++ Check handount */
ptr = free_listp;
if (ptr == 0) {
return;
}
/* Iterating through free list */
while (ptr != NULL) {
if (!freelistedge(ptr)) {
/* All next/prev pointers are consistent */
if (PREV_FREEP(NEXT_FREEP(ptr)) != NEXT_FREEP(PREV_FREEP(ptr))) {
printf("Addr: %p - ** Next/Prev Consistency Error ** \n", ptr);
assert(0);
}
}
/* Free List bounds check */
if (!in_heap(ptr)) {
printf("Addr: %p - ** Free List Out of bounds** \n", ptr);
assert(0);
}
numfree2++;
ptr = NEXT_FREEP(ptr);
}
if (numfree1 != numfree2) {
printf(" Error: - ** %d Free List Count %d ** \n", numfree1, numfree2);
assert(0);
}
}
/*
* The remaining routines are internal helper routines
*/
/*
* extend_heap - Extend heap with free block and return its block pointer
*/
static void *extend_heap(size_t words)
{
char *ptr;
size_t size;
/* Allocate an even number of words to maintain alignment */
size = (words % 2) ? (words+1) * WSIZE : words * WSIZE;
if ((long)(ptr = mem_sbrk(size)) == -1)
return NULL;
/* Initialize free block header/footer and the epilogue header */
PUT(HDRP(ptr), PACK(size, 0)); /* Free block header */
PUT(FTRP(ptr), PACK(size, 0)); /* Free block footer */
PUT(HDRP(NEXT_BLKP(ptr)), PACK(0, 1)); /* New epilogue header */
/* Coalesce if the previous block was free */
return coalesce(ptr);
}
/*
* coalesce - Boundary tag coalescing. Return ptr to coalesced block
*/
static void *coalesce (void *ptr)
{
size_t prev_alloc = GET_ALLOC(FTRP(PREV_BLKP(ptr)));
size_t next_alloc = GET_ALLOC(HDRP(NEXT_BLKP(ptr)));
size_t size = GET_SIZE(HDRP(ptr));
if (prev_alloc && !next_alloc) { /* Case 2 */
size += GET_SIZE(HDRP(NEXT_BLKP(ptr)));
removefreeblock(NEXT_BLKP(ptr)); /* remove next block */
PUT(HDRP(ptr), PACK(size, 0));
PUT(FTRP(ptr), PACK(size, 0));
}
else if (!prev_alloc && next_alloc) { /* Case 3 */
size += GET_SIZE(HDRP(PREV_BLKP(ptr)));
ptr = PREV_BLKP(ptr);
removefreeblock(ptr); /* remove previous block */
PUT(HDRP(ptr), PACK(size, 0));
PUT(FTRP(ptr), PACK(size, 0));
}
else if (!prev_alloc && !next_alloc){ /* Case 4 */
size += GET_SIZE(FTRP(PREV_BLKP(ptr))) +
GET_SIZE(HDRP(NEXT_BLKP(ptr)));
removefreeblock(NEXT_BLKP(ptr)); /* remove next block */
removefreeblock(PREV_BLKP(ptr)); /* remove previous block */
ptr = PREV_BLKP(ptr);
PUT(HDRP(ptr), PACK(size, 0));
PUT(FTRP(ptr), PACK(size, 0));
}
insertfreeblock(ptr); /* Insert Coalesced block in free list */
return ptr;
}
/*
* place - Place block of asize bytes at start of free block ptr
* and split if remainder would be at least minimum block size
*/
static void place(void *ptr, size_t asize)
{
size_t csize = GET_SIZE(HDRP(ptr));
if ((csize - asize) >= (2*DSIZE)) {
PUT(HDRP(ptr), PACK(asize, 1));
PUT(FTRP(ptr), PACK(asize, 1));
removefreeblock(ptr);
ptr = NEXT_BLKP(ptr);
PUT(HDRP(ptr), PACK(csize-asize, 0));
PUT(FTRP(ptr), PACK(csize-asize, 0));
insertfreeblock(ptr);
}
else {
PUT(HDRP(ptr), PACK(csize, 1));
PUT(FTRP(ptr), PACK(csize, 1));
removefreeblock(ptr);
}
}
/*
* find_fit - Find a fit for a block with asize bytes
*/
static void *find_fit (size_t asize)
{
/* First-fit search */
void *ptr;
/* TODO: Iterate over free list instead */
for (ptr = free_listp; ptr != NULL; ptr = NEXT_FREEP(ptr)) {
if (!GET_ALLOC(HDRP(ptr)) && (asize <= GET_SIZE(HDRP(ptr)))) {
return ptr;
}
}
return NULL; /* No fit */
}
/*
* Print block - print block header and footer.
* For debugging purposes
*/
static void printblock(void *ptr) {
size_t hsize, fsize;
size_t halloc, falloc;
hsize = GET_SIZE(HDRP(ptr));
fsize = GET_SIZE(FTRP(ptr));
halloc = GET_ALLOC(HDRP(ptr));
falloc = GET_ALLOC(FTRP(ptr));
if (ptr == NULL ) {
printf("Error: Null Pointer Address!! \n");
return;
}
printf("Addr: %p, Hdr: [%zu:%c], Ftr: [%zu:%c] \n",
ptr, hsize, (halloc ? 'a':'f'), fsize, (falloc ? 'a':'f'));
if (hsize == 0 && halloc == 1)
printf("Addr: %p - EOF Block \n", ptr);
}
/*
* Check block - check block header and footer.
*
* Check min size, alignment, prev/next allocate, free bit consistency,
* Header and footer match
* Called by Mem Heap
*/
static void checkblock(void *ptr) {
/* Check Minimum size */
if (GET_ALLOC(HDRP(ptr))) {
if (GET_SIZE(HDRP(ptr)) < (2*DSIZE)) {
printf("Addr: %p - ** Min Size Error ** \n", ptr);
assert(0);
}
}
/* Header/Footer Alignmment */
if (GET_SIZE(HDRP(ptr)) % ALIGNMENT) {
printf("Addr: %p - ** Header Not double word aligned** \n", ptr);
assert(0);
}
/* Check header: footer match */
if ((GET_SIZE(HDRP(ptr)) != GET_SIZE(FTRP(ptr))) ||
(GET_ALLOC(HDRP(ptr)) != GET_ALLOC(FTRP(ptr)))) {
printf("Addr: %p - ** Header Footer mismatch** \n", ptr);
printblock(ptr);
assert(0);
}
}
/*
* Insert Free Block - Add free block to list.
* Free block is added to the front of the list.
*/
static void insertfreeblock(void *ptr) {
/* special case */
if (free_listp == NULL) {
NEXT_FREEP(ptr) = NULL;
PREV_FREEP(ptr) = NULL;
free_listp = ptr;
return;
}
PREV_FREEP(ptr) = NULL;
NEXT_FREEP(ptr) = free_listp; /* Set curr next to head of list */
PREV_FREEP(free_listp) = ptr;
free_listp = ptr; /* curr ptr is now head of list */
}
/*
* Delete free block - Removes block from list
* Handling all four cases with either next/prev pointers being null
*
*/
static void removefreeblock(void *ptr) {
/* Case when we have nothing in list */
if (free_listp == 0)
return;
/* Case 1 */
if ((PREV_FREEP(ptr) == NULL) && (NEXT_FREEP(ptr) == NULL)) {
free_listp = 0;
}
/* Case 2 */
else if ((PREV_FREEP(ptr) == NULL) && (NEXT_FREEP(ptr) != NULL)) {
free_listp = NEXT_FREEP(ptr);
PREV_FREEP(free_listp) = NULL;
}
/* Case 3 */
else if ((PREV_FREEP(ptr) != NULL) && (NEXT_FREEP(ptr) == NULL)) {
/* Last one now points to NULL */
NEXT_FREEP(PREV_FREEP(ptr)) = NULL;
}
/* Case 4 */
else if ((PREV_FREEP(ptr) != NULL) && (NEXT_FREEP(ptr) != NULL)) {
PREV_FREEP(NEXT_FREEP(ptr)) = PREV_FREEP(ptr);
NEXT_FREEP(PREV_FREEP(ptr)) = NEXT_FREEP(ptr);
}
}
/*
* freelistedge - Returns 1 is free list ptr is at edge of list.
* This check is used to handle edge conditions.
*/
static int freelistedge(void *ptr) {
return ((NEXT_FREEP(ptr) == NULL) || (PREV_FREEP(ptr) == NULL));
}