-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstorage.cpp
79 lines (61 loc) · 1.57 KB
/
storage.cpp
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
#include <iostream>
#include <list>
#include <assert.h>
#include "value.h"
#include "special.h"
#include "storage.h"
#include "garbage_collector.h"
#include "pointer.h"
static const int BLOCK_SIZE = 50001;
double_storage_t* ds_pool = NULL;
value_list_t protected_pool;
uint64_t free_list;
double_storage_t* get_double_storage_pool(int* size) {
*size = BLOCK_SIZE;
return ds_pool;
}
value_list_t* list_protected_values(void) {
return &protected_pool;
}
double_storage_t* make_double_storage_pool(void) {
double_storage_t* result = new double_storage_t[BLOCK_SIZE];
int i;
for (i = 0; i < BLOCK_SIZE; i++) {
result[i].first_slot = (value_t) (result + i + 1);
}
result[i].first_slot = 0;
return result;
}
double_storage_t* pop_free_ds(void) {
if (free_list == 0)
collect();
assert(free_list != 0);
double_storage_t* result = (double_storage_t*) free_list;
free_list = result->first_slot;
result->first_slot = result->second_slot = UNDEFINED;
return result;
}
void init_storage(void) {
ds_pool = make_double_storage_pool();
free_list = (value_t) ds_pool;
}
double_storage_t* alloc_double_storage(void) {
return pop_free_ds();
}
void free_double_storage(double_storage_t* storage) {
storage->header = 0;
storage->first_slot = free_list;
free_list = (uint64_t) storage;
}
void protect_value(value_t value) {
protected_pool.push_front(value);
}
void protect_storage(double_storage_t* storage) {
protected_pool.push_front(wrap_pointer(storage));
}
void unprotect_storage(int count) {
while (count > 0) {
protected_pool.pop_front();
count--;
}
}