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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
use std::{ptr::null_mut, sync::atomic::AtomicBool};
use crate::{gc_info_table::GC_TABLE, header::HeapObjectHeader};
#[repr(C)]
pub struct PreciseAllocation {
pub cell_size: usize,
pub mark: bool,
pub index_in_space: u32,
pub adjusted_alignment: bool,
pub has_valid_cell: bool,
pub is_newly_allocated: bool,
}
impl PreciseAllocation {
pub const ALIGNMENT: usize = 16;
pub const HALF_ALIGNMENT: usize = Self::ALIGNMENT / 2;
pub fn is_precise(raw_ptr: *mut ()) -> bool {
(raw_ptr as usize & Self::HALF_ALIGNMENT) != 0
}
pub fn mark_atomic(&self) -> &AtomicBool {
as_atomic!(&self.mark;AtomicBool)
}
pub fn from_cell(ptr: *mut HeapObjectHeader) -> *mut Self {
unsafe {
ptr.cast::<u8>()
.offset(-(Self::header_size() as isize))
.cast()
}
}
#[inline]
pub fn base_pointer(&self) -> *mut () {
if self.adjusted_alignment {
((self as *const Self as isize) - (Self::HALF_ALIGNMENT as isize)) as *mut ()
} else {
self as *const Self as *mut ()
}
}
pub fn cell(&self) -> *mut HeapObjectHeader {
let addr = unsafe { (self as *const Self as *const u8).add(Self::header_size()) };
addr as _
}
pub fn above_lower_bound(&self, raw_ptr: *mut ()) -> bool {
let ptr = raw_ptr;
let begin = self.cell() as *mut ();
ptr >= begin
}
pub fn below_upper_bound(&self, raw_ptr: *mut ()) -> bool {
let ptr = raw_ptr;
let begin = self.cell() as *mut ();
let end = (begin as usize + self.cell_size) as *mut ();
ptr <= (end as usize + 8) as *mut ()
}
pub const fn header_size() -> usize {
((core::mem::size_of::<PreciseAllocation>() + Self::HALF_ALIGNMENT - 1)
& !(Self::HALF_ALIGNMENT - 1))
| Self::HALF_ALIGNMENT
}
pub fn contains(&self, raw_ptr: *mut ()) -> bool {
self.above_lower_bound(raw_ptr) && self.below_upper_bound(raw_ptr)
}
pub fn flip(&mut self) {
self.is_newly_allocated |= self.is_marked();
self.mark_atomic().store(false, atomic::Ordering::Relaxed);
}
pub fn is_marked(&self) -> bool {
self.mark_atomic().load(atomic::Ordering::Relaxed)
}
pub fn test_and_set_marked(&self) -> bool {
if self.is_marked() {
return true;
}
match self.mark_atomic().compare_exchange(
false,
true,
atomic::Ordering::Relaxed,
atomic::Ordering::Relaxed,
) {
Ok(_) => false,
_ => true,
}
}
pub fn clear_marked(&self) {
self.mark_atomic().store(false, atomic::Ordering::Relaxed);
}
pub fn sweep(&mut self) -> bool {
let cell = self.cell();
unsafe {
if self.has_valid_cell && !self.is_live() {
let info = GC_TABLE.get_gc_info((*cell).get_gc_info_index());
if let Some(cb) = info.finalize {
cb((*cell).payload() as _);
}
self.has_valid_cell = false;
}
}
true
}
pub fn try_create(size: usize, index_in_space: u32) -> *mut Self {
let adjusted_alignment_allocation_size = Self::header_size() + size + Self::HALF_ALIGNMENT;
unsafe {
let mut space = libc::malloc(adjusted_alignment_allocation_size).cast::<u8>();
let mut adjusted_alignment = false;
if !is_aligned_for_precise_allocation(space) {
space = space.add(Self::HALF_ALIGNMENT);
adjusted_alignment = true;
assert!(is_aligned_for_precise_allocation(space));
}
assert!(size != 0);
space.cast::<Self>().write(Self {
adjusted_alignment,
mark: false,
has_valid_cell: true,
cell_size: size,
index_in_space,
is_newly_allocated: false,
});
space.cast()
}
}
pub fn is_newly_allocated(&self) -> bool {
self.is_newly_allocated
}
pub fn is_live(&self) -> bool {
self.is_marked() || self.is_newly_allocated
}
pub fn cell_size(&self) -> usize {
self.cell_size
}
pub fn destroy(&mut self) {
let base = self.base_pointer();
unsafe {
libc::free(base as _);
}
}
pub fn is_empty(&self) -> bool {
!self.is_marked() && !self.is_newly_allocated()
}
}
pub fn is_aligned_for_precise_allocation(mem: *mut u8) -> bool {
let allocable_ptr = mem as usize;
(allocable_ptr & (PreciseAllocation::ALIGNMENT - 1)) == 0
}
pub struct LargeObjectSpace {
pub(crate) allocations: Vec<*mut PreciseAllocation>,
pub(crate) precise_allocations_nursery_offset: usize,
pub(crate) precise_allocations_offest_for_this_collection: usize,
pub(crate) precise_allocations_offset_nursery_for_sweep: usize,
pub(crate) precise_allocations_for_this_collection_size: usize,
pub(crate) precise_allocations_for_this_collection_begin: *mut *mut PreciseAllocation,
pub(crate) precise_allocations_for_this_collection_end: *mut *mut PreciseAllocation,
}
impl LargeObjectSpace {
pub(crate) fn new() -> Self {
Self {
allocations: Vec::new(),
precise_allocations_nursery_offset: 0,
precise_allocations_offest_for_this_collection: 0,
precise_allocations_offset_nursery_for_sweep: 0,
precise_allocations_for_this_collection_end: null_mut(),
precise_allocations_for_this_collection_begin: null_mut(),
precise_allocations_for_this_collection_size: 0,
}
}
pub fn begin_marking(&mut self, full: bool) {
if full {
for alloc in self.allocations.iter() {
unsafe {
(**alloc).flip();
}
}
}
}
#[inline]
pub fn contains(&self, pointer: *const u8) -> *mut HeapObjectHeader {
unsafe {
if self.precise_allocations_for_this_collection_size != 0 {
if (**self.precise_allocations_for_this_collection_begin)
.above_lower_bound(pointer as _)
&& (**(self.precise_allocations_for_this_collection_end.sub(1)))
.below_upper_bound(pointer as _)
{
let prec = PreciseAllocation::from_cell(pointer as _);
let slice = std::slice::from_raw_parts(
self.precise_allocations_for_this_collection_begin,
self.precise_allocations_for_this_collection_size,
);
let result = slice.binary_search_by(|ptr| ptr.cmp(&prec));
if let Ok(_) = result {
return (*prec).cell();
}
}
}
null_mut()
}
}
pub fn prepare_for_allocation(&mut self, eden: bool) {
if eden {
self.precise_allocations_offset_nursery_for_sweep =
self.precise_allocations_nursery_offset;
} else {
self.precise_allocations_offset_nursery_for_sweep = 0;
}
self.precise_allocations_nursery_offset = self.allocations.len();
}
pub fn prepare_for_marking(&mut self, eden: bool) {
if eden {
self.precise_allocations_offest_for_this_collection =
self.precise_allocations_nursery_offset;
} else {
self.precise_allocations_offest_for_this_collection = 0;
}
}
pub fn prepare_for_conservative_scan(&mut self) {
unsafe {
self.precise_allocations_for_this_collection_begin = self
.allocations
.as_mut_ptr()
.add(self.precise_allocations_offest_for_this_collection);
self.precise_allocations_for_this_collection_size =
self.allocations.len() - self.precise_allocations_offest_for_this_collection;
self.precise_allocations_for_this_collection_end =
self.allocations.as_mut_ptr().add(self.allocations.len());
let slice = std::slice::from_raw_parts_mut(
self.precise_allocations_for_this_collection_begin,
self.precise_allocations_for_this_collection_size,
);
slice.sort_by(|a, b| a.cmp(b));
let mut index = self.precise_allocations_offest_for_this_collection;
let mut start = self.precise_allocations_for_this_collection_begin;
let end = self.precise_allocations_for_this_collection_end;
while start != end {
(**start).index_in_space = index as _;
index += 1;
start = start.add(1);
}
}
}
pub fn sweep(&mut self) {
let mut src_index = self.precise_allocations_offset_nursery_for_sweep;
let mut dst_index = src_index;
while src_index < self.allocations.len() {
let allocation = self.allocations[src_index];
src_index += 1;
unsafe {
(*allocation).sweep();
if (*allocation).is_empty() {
(*allocation).destroy();
continue;
} else {
(*allocation).index_in_space = dst_index as u32;
self.allocations[dst_index] = allocation;
dst_index += 1;
}
}
}
self.allocations.resize(dst_index, null_mut());
self.precise_allocations_nursery_offset = self.allocations.len();
}
pub fn allocate(&mut self, size: usize) -> *mut HeapObjectHeader {
unsafe {
let index = self.allocations.len();
let memory = PreciseAllocation::try_create(size, index as _);
if memory.is_null() {
panic!("LargeObjectSpace: OOM");
}
self.allocations.push(memory);
let cell = (*memory).cell();
(*cell).set_size(0);
(*memory).cell()
}
}
}
impl Drop for LargeObjectSpace {
fn drop(&mut self) {
while let Some(alloc) = self.allocations.pop() {
unsafe {
let hdr = (*alloc).cell();
if let Some(callback) = GC_TABLE.get_gc_info((*hdr).get_gc_info_index()).finalize {
callback((*hdr).payload() as _);
}
(*alloc).destroy();
}
}
}
}