Skip to content

Commit cae7f96

Browse files
committed
wip: obj size in side table
1 parent 196d0e0 commit cae7f96

File tree

2 files changed

+37
-27
lines changed

2 files changed

+37
-27
lines changed

ix/src/block.rs

+26-23
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ use crate::{pool::Pool, ImmixAllocator};
1414
use super::Address;
1515

1616
const OBJS_IN_BLOCK: usize = Block::BYTES / MIN_ALIGNMENT;
17+
const LINES_IN_BLOCK: usize = (1 << 15) >> Line::LOG_BYTES;
1718

1819
#[repr(C)]
1920
pub struct BlockMeta {
@@ -26,8 +27,9 @@ pub struct BlockMeta {
2627
// pub group: u8,
2728
// head_cell: Address,
2829
// pub owner: &'static Pool,
29-
// pub obj_size: [AtomicU8; OBJS_IN_BLOCK],
30-
pub line_marks: [AtomicU8; 8],
30+
pub obj_size: [AtomicU8; OBJS_IN_BLOCK],
31+
/// Num. dead objects per line.
32+
pub line_liveness: [AtomicU8; LINES_IN_BLOCK],
3133
}
3234

3335
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
@@ -85,28 +87,29 @@ impl Block {
8587
pub fn get_next_available_lines(self, search_start: Line) -> Option<Range<Line>> {
8688
let start_cursor = search_start.get_index_within_block();
8789
let mut cursor = start_cursor;
90+
unreachable!()
8891
// Find start
89-
while cursor < self.line_marks.len() {
90-
let mark = self.line_marks[cursor].load(Ordering::SeqCst);
91-
if mark == 0 {
92-
break;
93-
}
94-
cursor += 1;
95-
}
96-
if cursor == self.line_marks.len() {
97-
return None;
98-
}
99-
let start = Line::from_address(self.data_start() + cursor * Line::BYTES);
100-
// Find limit
101-
while cursor < self.line_marks.len() {
102-
let mark = self.line_marks[cursor].load(Ordering::SeqCst);
103-
if mark != 0 {
104-
break;
105-
}
106-
cursor += 1;
107-
}
108-
let end = Line::from_address(self.data_start() + cursor * Line::BYTES);
109-
Some(start..end)
92+
// while cursor < self.line_marks.len() {
93+
// let mark = self.line_marks[cursor].load(Ordering::SeqCst);
94+
// if mark == 0 {
95+
// break;
96+
// }
97+
// cursor += 1;
98+
// }
99+
// if cursor == self.line_marks.len() {
100+
// return None;
101+
// }
102+
// let start = Line::from_address(self.data_start() + cursor * Line::BYTES);
103+
// // Find limit
104+
// while cursor < self.line_marks.len() {
105+
// let mark = self.line_marks[cursor].load(Ordering::SeqCst);
106+
// if mark != 0 {
107+
// break;
108+
// }
109+
// cursor += 1;
110+
// }
111+
// let end = Line::from_address(self.data_start() + cursor * Line::BYTES);
112+
// Some(start..end)
110113
}
111114
}
112115

ix/src/immix_space.rs

+11-4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
use std::sync::atomic::Ordering;
2+
13
use super::{page_resource::BlockPageResource, Allocator, Space, SpaceId};
24
use crate::{
35
block::{self, Block, Line},
@@ -19,7 +21,7 @@ pub struct ImmixSpace {
1921
pub(crate) pool: Pool,
2022
}
2123

22-
const SIZE_ENCODING_SHIFT: usize = 56;
24+
// const SIZE_ENCODING_SHIFT: usize = 56;
2325

2426
impl Space for ImmixSpace {
2527
const MAX_ALLOCATION_SIZE: usize = (256 - 1) * MIN_ALIGNMENT;
@@ -43,7 +45,9 @@ impl Space for ImmixSpace {
4345
}
4446

4547
fn get_layout(ptr: Address) -> Layout {
46-
let words = ptr.as_usize() >> SIZE_ENCODING_SHIFT;
48+
let block = Block::containing(ptr);
49+
let index = (ptr - block.start()) >> LOG_MIN_ALIGNMENT;
50+
let words = block.obj_size[index].load(Ordering::Relaxed) as usize;
4751
let size = words << LOG_MIN_ALIGNMENT;
4852
mallockit::println!("get_layout {ptr:?} {words} {size}");
4953
Layout::from_size_align(size, MIN_ALIGNMENT).unwrap()
@@ -224,10 +228,13 @@ impl Allocator for ImmixAllocator {
224228
Some(result)
225229
}?;
226230
let words = layout.size() >> LOG_MIN_ALIGNMENT;
231+
let block = Block::containing(result);
232+
let index = (result - block.start()) >> LOG_MIN_ALIGNMENT;
233+
block.obj_size[index].store(words as u8, Ordering::Relaxed);
227234
// mallockit::println!("alloc {result:?} {words} {layout:?}");
228-
result = Address::from_usize(result.as_usize() | (words << SIZE_ENCODING_SHIFT));
235+
// result = Address::from_usize(result.as_usize() | (words << SIZE_ENCODING_SHIFT));
229236
// mallockit::println!("alloc -> {result:?} {words} {layout:?}");
230-
let v = unsafe { result.load::<usize>() };
237+
// let v = unsafe { result.load::<usize>() };
231238
// mallockit::println!("alloc -> {v:?}");
232239
return Some(result);
233240
}

0 commit comments

Comments
 (0)