-
Notifications
You must be signed in to change notification settings - Fork 0
/
mm_explicit_lifo.c
326 lines (278 loc) · 9.67 KB
/
mm_explicit_lifo.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
/*
* mm-naive.c - The fastest, least memory-efficient malloc package.
*
* In this naive approach, a block is allocated by simply incrementing
* the brk pointer. A block is pure payload. There are no headers or
* footers. Blocks are never coalesced or reused. Realloc is
* implemented directly using mm_malloc and mm_free.
*
* NOTE TO STUDENTS: Replace this header comment with your own header
* comment that gives a high level description of your solution.
*/
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include <unistd.h>
#include <string.h>
#include "mm.h"
#include "memlib.h"
/*********************************************************
* NOTE TO STUDENTS: Before you do anything else, please
* provide your team information in the following struct.
********************************************************/
team_t team = {
/* Team name */
"Team 4",
/* First member's full name */
"Yerin Park",
/* First member's email address */
/* Second member's full name (leave blank if none) */
"",
/* Second member's email address (leave blank if none) */
""};
// /* single word (4) or double word (8) alignment */
// #define ALIGNMENT 8
// /* rounds up to the nearest multiple of ALIGNMENT */
// #define ALIGN(size) (((size) + (ALIGNMENT - 1)) & ~0x7)
// #define SIZE_T_SIZE (ALIGN(sizeof(size_t)))
/* MACRO */
/* 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 MAX(x, y) ((x) > (y) ? (x) : (y))
/* 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 bp, compute address of its header and footer */
#define HDRP(bp) ((char *)(bp)-WSIZE)
#define FTRP(bp) ((char *)(bp) + GET_SIZE(HDRP(bp)) - DSIZE)
/* Given block ptr bp, compute address of next and previous blocks */
#define NEXT_BLKP(bp) ((char *)(bp) + GET_SIZE(((char *)(bp)-WSIZE)))
#define PREV_BLKP(bp) ((char *)(bp)-GET_SIZE(((char *)(bp)-DSIZE)))
/* Free List 상에서의 이전, 이후 블록의 포인터를 리턴한다. */
#define PRED_FREEP(bp) (*(void **)(bp)) // 이전 블록의 bp
#define SUCC_FREEP(bp) (*(void **)(bp + WSIZE)) // 이후 블록의 bp
static void *heap_listp = NULL; // prologue 블럭을 가리키는 포인터
static void *free_listp = NULL; // free list 첫 블럭을 가리키는 포인터
void put_block(void *bp);
void remove_block(void *bp);
// 인접한 free block과 연결하기
static void *coalesce(void *bp)
{
size_t prev_alloc = GET_ALLOC(FTRP(PREV_BLKP(bp)));
size_t next_alloc = GET_ALLOC(HDRP(NEXT_BLKP(bp)));
size_t size = GET_SIZE(HDRP(bp));
// [case1] prev: alloc, next: alloc //
if (prev_alloc && next_alloc)
{
put_block(bp);
return bp;
}
// [case2] prev: alloc, next: free //
else if (prev_alloc && !next_alloc)
{
remove_block(NEXT_BLKP(bp));
size += GET_SIZE(HDRP(NEXT_BLKP(bp)));
PUT(HDRP(bp), PACK(size, 0));
PUT(FTRP(bp), PACK(size, 0));
}
// [case3] prev: free, next: alloc //
else if (!prev_alloc && next_alloc)
{
remove_block(PREV_BLKP(bp));
size += GET_SIZE(HDRP(PREV_BLKP(bp)));
bp = PREV_BLKP(bp);
PUT(HDRP(bp), PACK(size, 0));
PUT(FTRP(bp), PACK(size, 0));
}
// [case4] prev: free, next: free //
else
{
remove_block(NEXT_BLKP(bp));
remove_block(PREV_BLKP(bp));
size += GET_SIZE(HDRP(PREV_BLKP(bp))) + GET_SIZE(FTRP(NEXT_BLKP(bp)));
bp = PREV_BLKP(bp);
PUT(HDRP(bp), PACK(size, 0));
PUT(FTRP(bp), PACK(size, 0));
}
put_block(bp);
return bp;
}
/*
* mm_free - Freeing a block does nothing.
*/
void mm_free(void *bp)
{
size_t size = GET_SIZE(HDRP(bp));
PUT(HDRP(bp), PACK(size, 0));
PUT(FTRP(bp), PACK(size, 0));
coalesce(bp);
}
static void *extend_heap(size_t words)
{
void *bp;
size_t size;
/* Allocate an even number of words to maintain alignment */
size = (words % 2) ? (words + 1) * WSIZE : words * WSIZE;
if ((long)(bp = mem_sbrk(size)) == -1)
return NULL; // mem_brk를 size만큼 늘리기
/* Initialize free block header/footer and the eplilogue header */
PUT(HDRP(bp), PACK(size, 0)); // old epilogue 영역을 new free block의 header로 초기화
PUT(FTRP(bp), PACK(size, 0)); // free block footer
PUT(HDRP(NEXT_BLKP(bp)), PACK(0, 1)); // new epilogue
/* Coalesce if the previous block was free */
return coalesce(bp);
}
// First-fit
static void *find_first_fit(size_t asize)
{
/* First-fit search */
void *bp;
for (bp = free_listp; GET_ALLOC(HDRP(bp)) != 1; bp = SUCC_FREEP(bp))
{
if (asize <= GET_SIZE(HDRP(bp))) //
{
return bp;
}
}
return NULL; /* No fit */
}
static void *find_best_fit(size_t asize)
{
/* Best-fit search */
void *bp;
size_t min_size = 1e9;
void *min_bp = NULL;
for (bp = heap_listp; GET_SIZE(HDRP(bp)) > 0; bp = NEXT_BLKP(bp))
{
if (!GET_ALLOC(HDRP(bp)))
{ /* Best fit이 없을 때를 대비해서 asize보다 큰 최소 블럭(Second Best)을 계속 업데이트*/
if (min_size > GET_SIZE(HDRP(bp)) && asize < GET_SIZE(HDRP(bp)))
{
min_size = GET_SIZE(HDRP(bp));
min_bp = bp;
}
if (asize == GET_SIZE(HDRP(bp))) /* Best fit */
return bp;
}
}
return min_bp; /* Best fit이 없을 때 */
}
static void place(void *bp, size_t asize)
{
size_t csize = GET_SIZE(HDRP(bp)); // current size = 할당을 위해 선택된 현재 블럭의 크기
// allocate될 블럭이므로 free list에서 제거
remove_block(bp);
if ((csize - asize) >= (2 * DSIZE)) // 선택된 현재 블럭을 분할할 수 있을 때
{
PUT(HDRP(bp), PACK(asize, 1)); // asize 크기의 블럭 할당
PUT(FTRP(bp), PACK(asize, 1));
bp = NEXT_BLKP(bp);
PUT(HDRP(bp), PACK(csize - asize, 0)); // 남은 부분은 free block으로 반환
PUT(FTRP(bp), PACK(csize - asize, 0));
put_block(bp); // 분할된 free block을 free list에 추가
}
else
{
PUT(HDRP(bp), PACK(csize, 1)); // 쪼갤 수 없을 때 - csize 크기의 블럭 할당
PUT(FTRP(bp), PACK(csize, 1));
}
}
/*
* mm_init - initialize the malloc package.
*/
int mm_init(void)
{
/* Create the initial empty heap */
if ((heap_listp = mem_sbrk(6 * WSIZE)) == (void *)-1)
return -1;
PUT(heap_listp, 0); /* Alignment padding */
PUT(heap_listp + (1 * WSIZE), PACK(16, 1)); /* Prologue header */
PUT(heap_listp + (2 * WSIZE), NULL); // prologue block 안의 PRED 포인터 NULL로 초기화
PUT(heap_listp + (3 * WSIZE), NULL); // prologue block 안의 SUCC 포인터 NULL로 초기화
PUT(heap_listp + (4 * WSIZE), PACK(16, 1)); /* Prologue footer */
PUT(heap_listp + (5 * WSIZE), PACK(0, 1)); /* Epilogue header */
free_listp = heap_listp + DSIZE;
/* Extend the empty heap with a free block of CHUNKSIZE bytes */
if (extend_heap(CHUNKSIZE / WSIZE) == NULL)
return -1;
return 0;
}
/*
* mm_malloc - Allocate a block by incrementing the brk pointer.
* Always allocate a block whose size is a multiple of the alignment.
*/
void *mm_malloc(size_t size)
{
size_t asize; /* Adjusted block size */
size_t extendsize; /* Amound to extend heap if no fit */
void *bp;
/* Ignore spurious requests */
if (size == 0)
return NULL;
/* Adjust blck 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 ((bp = find_first_fit(asize)) != NULL) // find_first_fit or find_next_fit or find_best_fit
{
place(bp, asize);
return bp;
}
/* No fit found. Get more memory and place the block */
extendsize = MAX(asize, CHUNKSIZE);
if ((bp = extend_heap(extendsize / WSIZE)) == NULL)
return NULL;
place(bp, asize);
return bp;
}
void *mm_realloc(void *bp, size_t size)
{
void *oldptr = bp;
void *newptr;
size_t copySize;
newptr = mm_malloc(size);
if (newptr == NULL)
return NULL;
copySize = GET_SIZE(HDRP(oldptr));
if (size < copySize)
copySize = size;
//메모리의 특정한 부분으로부터 얼마까지의 부분을 다른 메모리 영역으로 복사해주는 함수
//(oldptr로부터 copySize만큼의 문자를 newptr로 복사해라)
memcpy(newptr, oldptr, copySize);
mm_free(oldptr);
return newptr;
}
// 반환되거나 생성된 free block을 free list의 첫 부분에 넣기
void put_block(void *bp)
{
SUCC_FREEP(bp) = free_listp;
PRED_FREEP(bp) = NULL;
PRED_FREEP(free_listp) = bp;
free_listp = bp;
}
// 할당되거나 연결된 free block을 free list에서 제거하기
void remove_block(void *bp)
{
// free list 첫 블록을 없앨 때
if (bp == free_listp)
{
PRED_FREEP(SUCC_FREEP(bp)) = NULL;
free_listp = SUCC_FREEP(bp);
}
// 첫 블록이 아닌 원소를 없앨 때
else
{
SUCC_FREEP(PRED_FREEP(bp)) = SUCC_FREEP(bp);
PRED_FREEP(SUCC_FREEP(bp)) = PRED_FREEP(bp);
}
}