forked from iH8sn0w/iDove
-
Notifications
You must be signed in to change notification settings - Fork 0
/
malloc.c
executable file
·97 lines (79 loc) · 2.31 KB
/
malloc.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
/**
* GreenPois0n Cynanide - malloc.c
* Copyright (C) 2010 Chronic-Dev Team
* Copyright (C) 2010 Joshua Hill
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
**/
#include "heap.h"
void* malloc(uint32_t size) {
unsigned int zone;
unsigned int min_size;
chunk_header_t** header;
chunk_header_t* candidate;
chunk_header_t* next_chunk;
enter_critical_section();
min_size = get_min_alloc(size);
zone = get_zone(min_size);
header = &gHeapHeader[zone];
NEXT:
if(zone <= 0x1F) {
for(candidate = *header; ; candidate = candidate->next) {
if(!candidate) {
zone++;
header++;
goto NEXT;
}
if(min_size <= (8 * candidate->size)) {
break;
}
}
*candidate->head = candidate->next;
next_chunk = candidate->next;
if(next_chunk) {
next_chunk->head = candidate->head;
}
link_chunk(candidate, min_size);
gHeapRemaining -= candidate->size * 8;
exit_critical_section();
} else {
return 0;
}
return (void*) candidate + 8;
}
void link_chunk(chunk_header_t* chunk, unsigned int size) {
chunk_header_t* next;
chunk_header_t* last;
chunk_header_t** header;
if(chunk->size * 8 < size + 16) {
next = _get_next_chunk(chunk);
chunk->prev_size &= 0xFDu;
} else {
next = (void*) chunk + size;
last = _get_next_chunk(chunk);
next->prev_size = (next->prev_size & 0xFD) | 1;
next->prev_size = (next->prev_size & 3) | (4 * (size / 8));
next->size = chunk->size - ((size / 8) & 0x3FFFFFFF);
chunk->size = size / 8;
last->prev_size = (last->prev_size & 3) | (4 * next->size);
header = &gHeapHeader[_get_zone(next->size * 8)];
next->head = header;
next->next = *header;
if(*header) {
(*header)->head = &next->next;
}
*header = next;
}
chunk->prev_size &= 0xFEu;
}