-
Notifications
You must be signed in to change notification settings - Fork 0
/
span.h
81 lines (56 loc) · 1.39 KB
/
span.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
//
// Created by 26220 on 2021/2/22.
//
#ifndef MYMALLOC_SPAN_H
#define MYMALLOC_SPAN_H
#include "bitmap.h"
#include "consts.h"
#include <sys/mman.h>
#include <map>
#include <vector>
class Span;
class SpanList;
// 重命名, 原格式太复杂
using SpanMap = std::map<bool *, Span *, std::greater<bool *>>;
class Span {
public:
Span();
Span(void *sa, int s, int n, int a, int sc, int es);
public:
void *malloc();
public:
Span *next;
Span *prev;
// 已分配个数
int allocCount;
// 总共可分配个数
int nelems;
// 对于一个 地址, 可以根据它的地址找到所属的span, 以及对应的位置
// 但这个结构需要用一个hahstable来存储
// Span 的起始地址
void *startAddr;
// span的size, 单位为byte
int size;
// 一个bitmap结构, 表示这个span空闲的位置
BitMap bitmap;
// 所属的span的类别id
int spanClass;
// 单个元素的大小
int elemsize;
};
// 一个span的链表, 封装了一些方法
class SpanList {
public:
SpanList();
SpanList(int sc);
public:
Span *newSpan(SpanMap *spanMap);
void popFront();
void pushFront(Span *);
void pushBack(Span *pSpan);
void pop(Span *pSpan);
public:
Span *list;
int spanClass;
};
#endif //MYMALLOC_SPAN_H