_malloc.c
1.75 KB
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
#include <ultra64.h>
#include "string.h"
#include "_malloc.h"
void *_malloc(void *ptr, int size)
{
unsigned int size2, sizeall;
unsigned int *next2, *p;
struct mallocST *malloc_st_ptr;
if (!size) return NULL; /* サイズ0時の確保はできない */
malloc_st_ptr = ptr;
/* 大きさを 16 でアラインし、ヘッダサイズを加算する */
size += 15;
size &= (~15);
sizeall = size + MALLOC_HEADSIZE;
size2 = 0 ;
next2 = NULL ;
/* size よりも大きい空いているブロックを探す */
while(1){
if( !malloc_st_ptr->flag && (malloc_st_ptr->size >= size) ){
/* size に一番近い大きさの空きブロックを探す */
if( (size2 > malloc_st_ptr->size) || !size2 ){
p = (unsigned int *)malloc_st_ptr;
size2 = malloc_st_ptr->size;
next2 = malloc_st_ptr->next;
}
}
if( !(malloc_st_ptr->next) ){
break;
}
malloc_st_ptr = (struct mallocST *)malloc_st_ptr->next;
}
if( size2 ){
malloc_st_ptr = (struct mallocST *)p;
if( size2 >= (size + MALLOC_HEADSIZE + 16) ){
malloc_st_ptr->next
= (unsigned int *)((unsigned int)p + sizeall); /* メモリ確保 */
malloc_st_ptr->size = size;
malloc_st_ptr->flag = 1;
malloc_st_ptr
= (struct mallocST *)malloc_st_ptr->next; /* あまりメモリ開放 */
malloc_st_ptr->next = next2;
malloc_st_ptr->size
= size2 - sizeall; /* sizeall = (size + MALLOC_HEADSIZE) */
malloc_st_ptr->flag = 0;
}else{
malloc_st_ptr->next = next2;
malloc_st_ptr->size = size2;
malloc_st_ptr->flag = 1;
}
return (unsigned char *)p + MALLOC_HEADSIZE ;
}
return NULL;
}