]> pd.if.org Git - nbds/blob - runtime/mem.c
1787a6253f299e67c01c063758aa26399d64bc87
[nbds] / runtime / mem.c
1 /* 
2  * Written by Josh Dybnis and released to the public domain, as explained at
3  * http://creativecommons.org/licenses/publicdomain
4  *
5  * Extreamly fast multi-threaded malloc. 64 bit platforms only!
6  */
7 #include <sys/mman.h>
8 #include <stdio.h>
9 #include <errno.h>
10 #include "common.h"
11 #include "rlocal.h"
12 #include "lwt.h"
13
14 #define GET_SCALE(n) (sizeof(void *)*__CHAR_BIT__ - __builtin_clzl((n) - 1)) // log2 of <n>, rounded up
15 #define MAX_SCALE 31 // allocate blocks up to 4GB in size (arbitrary, could be bigger)
16 #define REGION_SCALE 22 // 4MB regions
17 #define REGION_SIZE (1 << REGION_SCALE)
18 #define HEADER_REGION_SCALE 22 // 4MB is space enough for headers for over 2,000,000 regions
19
20 typedef struct block {
21     struct block *next;
22 } block_t;
23
24 // region header
25 typedef struct header {
26     uint8_t owner; // thread id of owner
27     uint8_t scale; // log2 of the block size
28 } header_t;
29
30 typedef struct private_list {
31     block_t *head;
32     uint32_t next_pub;
33     uint32_t count;
34 } private_list_t;
35
36 static header_t *region_header_ = NULL;
37
38 static block_t *pub_free_list_[MAX_NUM_THREADS][MAX_SCALE+1][MAX_NUM_THREADS] = {};
39 static private_list_t pri_free_list_[MAX_NUM_THREADS][MAX_SCALE+1] = {};
40
41 static void *get_new_region (int scale) {
42     if (scale < REGION_SCALE) {
43         scale = REGION_SCALE;
44     }
45     TRACE("m0", "get_new_region(): mmap new region scale: %llu", scale, 0);
46     void *region = mmap(NULL, (1 << scale), PROT_READ|PROT_WRITE, MAP_ANON|MAP_PRIVATE, -1, 0);
47     if (region == (void *)-1) {
48         perror("get_new_region: mmap");
49         exit(-1);
50     }
51     assert(region);
52     return region;
53 }
54
55 void mem_init (void) {
56     assert(region_header_ == NULL);
57     region_header_ = (header_t *)get_new_region(HEADER_REGION_SCALE);
58     memset(region_header_, 0, REGION_SIZE);
59 }
60
61 // Put <x> onto its owner's public free list (in the appropriate size bin).
62 //
63 // TODO: maybe we want to munmap() larger size blocks to reclaim virtual address space?
64 void nbd_free (void *x) {
65     assert(x);
66     LOCALIZE_THREAD_LOCAL(tid_, int);
67     block_t  *b = (block_t *)x;
68     assert(((size_t)b >> REGION_SCALE) < ((1 << HEADER_REGION_SCALE) / sizeof(header_t)));
69     header_t *h = region_header_ + ((size_t)b >> REGION_SCALE);
70 #ifndef NDEBUG
71     memset(b, 0xcd, (1 << h->scale));
72 #endif
73     TRACE("m0", "nbd_free(): block %p scale %llu", b, h->scale);
74     if (h->owner == tid_) {
75         TRACE("m0", "nbd_free(): private block, free list head %p", 
76                     h->owner, pri_free_list_[tid_][h->scale].head);
77         b->next = pri_free_list_[tid_][h->scale].head;
78         pri_free_list_[tid_][h->scale].head = b;
79     } else {
80         TRACE("m0", "nbd_free(): owner %llu free list head %p", 
81                     h->owner, pub_free_list_[h->owner][h->scale][tid_]);
82         do {
83             b->next = pub_free_list_[h->owner][h->scale][tid_];
84         } while (SYNC_CAS(&pub_free_list_[h->owner][h->scale][tid_], b->next, b) != b->next);
85     }
86 }
87
88 // Allocate a block of memory at least size <n>. Blocks are binned in powers-of-two. Round up
89 // <n> to the nearest power-of-two. 
90 //
91 // First check the current thread's private free list for an available block. If no blocks are on
92 // the private free list, pull blocks off of the current thread's public free lists and put them
93 // on the private free list. If we didn't find any blocks on the public free lists, allocate a new
94 // region, break it up into blocks and put them on the private free list.
95 void *nbd_malloc (size_t n) {
96     assert(n);
97     LOCALIZE_THREAD_LOCAL(tid_, int);
98     if (n < sizeof(block_t)) {
99         n = sizeof(block_t);
100     }
101     int b_scale = GET_SCALE(n);
102     assert(b_scale <= MAX_SCALE);
103     TRACE("m0", "nbd_malloc(): size %llu scale %llu", n, b_scale);
104     private_list_t *pri = &pri_free_list_[tid_][b_scale]; // our private free list
105     TRACE("m0", "nbd_malloc(): private free list first block %p", pri->head, 0);
106
107     // If our private free list is empty, try to find blocks on our public free list. If that fails,
108     // allocate a new region.
109     if (EXPECT_FALSE(pri->head == NULL)) {
110         block_t **pubs = pub_free_list_[tid_][b_scale]; // our public free lists
111         while (1) {
112             // look for blocks on our public free lists round robin
113             pri->next_pub = (pri->next_pub+1) & (MAX_NUM_THREADS-1);
114
115             TRACE("m0", "nbd_malloc(): searching public free list %llu", pri->next_pub, 0);
116             if (pri->next_pub == tid_) {
117                 uint32_t count = pri->count;
118                 pri->count = 0;
119                 // If our private list is empty and we haven't gotten at least half a region's worth 
120                 // of block's from our public lists, we allocate a new region. This guarentees that
121                 // we amortize the cost of accessing our public lists accross enough nbd_malloc() 
122                 // calls.
123                 uint32_t min_count = b_scale > REGION_SCALE ? 1 << (b_scale-REGION_SCALE-1) : 1;
124                 if (count < min_count) {
125                     char  *region = get_new_region(b_scale);
126                     size_t b_size = 1 << b_scale;
127                     size_t region_size = (b_size < REGION_SIZE) ? REGION_SIZE : b_size;
128                     for (int i = region_size; i != 0; i -= b_size) {
129                         block_t *b = (block_t *)(region + i - b_size);
130                         b->next = pri->head;
131                         pri->head = b;
132                     }
133                     break;
134                 }
135                 continue;
136             }
137
138             if (pubs[pri->next_pub] != NULL) {
139                 block_t *stolen = SYNC_SWAP(&pubs[pri->next_pub], NULL);
140                 TRACE("m0", "nbd_malloc(): stole list %p", stolen, 0);
141                 if (stolen == NULL)
142                     continue;
143                 pri->head = stolen;
144                 break;
145             }
146         }
147         assert(pri->head);
148     }
149
150     // Pull a block off of our private free list.
151     block_t *b = pri->head;
152     TRACE("m0", "nbd_malloc(): take block %p off of of private list (new head is %p)", b, b->next);
153     assert(b);
154     pri->head = b->next;
155     pri->count++;
156     return b;
157 }