@@ -14,6 +14,7 @@ use crate::{pool::Pool, ImmixAllocator};
14
14
use super :: Address ;
15
15
16
16
const OBJS_IN_BLOCK : usize = Block :: BYTES / MIN_ALIGNMENT ;
17
+ const LINES_IN_BLOCK : usize = ( 1 << 15 ) >> Line :: LOG_BYTES ;
17
18
18
19
#[ repr( C ) ]
19
20
pub struct BlockMeta {
@@ -26,8 +27,9 @@ pub struct BlockMeta {
26
27
// pub group: u8,
27
28
// head_cell: Address,
28
29
// 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 ] ,
31
33
}
32
34
33
35
#[ derive( Debug , Clone , Copy , PartialEq , Eq ) ]
@@ -85,28 +87,29 @@ impl Block {
85
87
pub fn get_next_available_lines ( self , search_start : Line ) -> Option < Range < Line > > {
86
88
let start_cursor = search_start. get_index_within_block ( ) ;
87
89
let mut cursor = start_cursor;
90
+ unreachable ! ( )
88
91
// 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)
110
113
}
111
114
}
112
115
0 commit comments