-
Notifications
You must be signed in to change notification settings - Fork 14
/
allocate.h
97 lines (86 loc) · 2.69 KB
/
allocate.h
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
#ifndef ALLOCATE_H
#define ALLOCATE_H
#include "compat.h"
struct allocation_blob {
struct allocation_blob *next;
unsigned int left, offset;
unsigned char data[];
};
struct allocator_struct {
const char *name;
struct allocation_blob *blobs;
unsigned int alignment;
unsigned int chunking;
void *freelist;
/* statistics */
unsigned long allocations, total_bytes, useful_bytes;
};
struct allocator_stats {
const char *name;
unsigned int allocations;
unsigned long total_bytes, useful_bytes;
};
extern void protect_allocations(struct allocator_struct *desc);
extern void drop_all_allocations(struct allocator_struct *desc);
extern void *allocate(struct allocator_struct *desc, unsigned int size);
extern void free_one_entry(struct allocator_struct *desc, void *entry);
extern void show_allocations(struct allocator_struct *);
extern void get_allocator_stats(struct allocator_struct *, struct allocator_stats *);
extern void show_allocation_stats(void);
#define __DECLARE_ALLOCATOR(type, x) \
extern type *__alloc_##x(int); \
extern void __free_##x(type *); \
extern void show_##x##_alloc(void); \
extern void get_##x##_stats(struct allocator_stats *); \
extern void clear_##x##_alloc(void); \
extern void protect_##x##_alloc(void);
#define DECLARE_ALLOCATOR(x) __DECLARE_ALLOCATOR(struct x, x)
#define __DO_ALLOCATOR(type, objsize, objalign, objname, x) \
static struct allocator_struct x##_allocator = { \
.name = objname, \
.alignment = objalign, \
.chunking = CHUNK }; \
type *__alloc_##x(int extra) \
{ \
return allocate(&x##_allocator, objsize+extra); \
} \
void __free_##x(type *entry) \
{ \
free_one_entry(&x##_allocator, entry); \
} \
void show_##x##_alloc(void) \
{ \
show_allocations(&x##_allocator); \
} \
void get_##x##_stats(struct allocator_stats *s) \
{ \
get_allocator_stats(&x##_allocator, s); \
} \
void clear_##x##_alloc(void) \
{ \
drop_all_allocations(&x##_allocator); \
} \
void protect_##x##_alloc(void) \
{ \
protect_allocations(&x##_allocator); \
}
#define __ALLOCATOR(t, n, x) \
__DO_ALLOCATOR(t, sizeof(t), __alignof__(t), n, x)
#define ALLOCATOR(x, n) __ALLOCATOR(struct x, n, x)
DECLARE_ALLOCATOR(ident);
DECLARE_ALLOCATOR(token);
DECLARE_ALLOCATOR(context);
DECLARE_ALLOCATOR(symbol);
DECLARE_ALLOCATOR(asm_operand);
DECLARE_ALLOCATOR(expression);
DECLARE_ALLOCATOR(statement);
DECLARE_ALLOCATOR(string);
DECLARE_ALLOCATOR(scope);
__DECLARE_ALLOCATOR(void, bytes);
DECLARE_ALLOCATOR(basic_block);
DECLARE_ALLOCATOR(entrypoint);
DECLARE_ALLOCATOR(instruction);
DECLARE_ALLOCATOR(multijmp);
DECLARE_ALLOCATOR(pseudo);
DECLARE_ALLOCATOR(attribute);
#endif