1
1
use std:: { alloc:: Layout , marker:: PhantomData } ;
2
2
3
3
use super :: {
4
+ meta:: Meta ,
4
5
page_resource:: { FreelistPageResource , PageResource } ,
5
6
Allocator , Space , SpaceId ,
6
7
} ;
@@ -59,11 +60,9 @@ pub struct LargeObjectAllocator<
59
60
S : PageSize = Size4K ,
60
61
const MAX_CACHEABLE_SIZE : usize = 0 ,
61
62
const THRESHOLD_SLOP : usize = 0 ,
62
- > where
63
- [ ( ) ; bins :: < S > ( MAX_CACHEABLE_SIZE ) ] : Sized ,
64
- {
63
+ > {
65
64
space : & ' static LargeObjectSpace ,
66
- bins : [ Address ; bins :: < S > ( MAX_CACHEABLE_SIZE ) ] ,
65
+ bins : Vec < Address , Meta > ,
67
66
max_live : usize ,
68
67
live : usize ,
69
68
cleared : bool ,
@@ -72,15 +71,16 @@ pub struct LargeObjectAllocator<
72
71
73
72
impl < S : PageSize , const MAX_CACHEABLE_SIZE : usize , const THRESHOLD_SLOP : usize >
74
73
LargeObjectAllocator < S , MAX_CACHEABLE_SIZE , THRESHOLD_SLOP >
75
- where
76
- [ ( ) ; bins :: < S > ( MAX_CACHEABLE_SIZE ) ] : Sized ,
77
74
{
78
75
const CACHE_ENABLED : bool = bins :: < S > ( MAX_CACHEABLE_SIZE ) > 0 ;
79
76
80
77
pub fn new ( los : & ' static LargeObjectSpace ) -> Self {
78
+ let mut bins_vec = Vec :: new_in ( Meta ) ;
79
+ bins_vec. resize ( bins :: < S > ( MAX_CACHEABLE_SIZE ) , Address :: ZERO ) ;
80
+
81
81
Self {
82
82
space : los,
83
- bins : [ Address :: ZERO ; bins :: < S > ( MAX_CACHEABLE_SIZE ) ] ,
83
+ bins : bins_vec ,
84
84
max_live : 0 ,
85
85
live : 0 ,
86
86
cleared : false ,
@@ -118,8 +118,6 @@ where
118
118
119
119
impl < S : PageSize , const MAX_CACHEABLE_SIZE : usize , const THRESHOLD_SLOP : usize > Allocator
120
120
for LargeObjectAllocator < S , MAX_CACHEABLE_SIZE , THRESHOLD_SLOP >
121
- where
122
- [ ( ) ; bins :: < S > ( MAX_CACHEABLE_SIZE ) ] : Sized ,
123
121
{
124
122
#[ cold]
125
123
fn alloc ( & mut self , layout : Layout ) -> Option < Address > {
@@ -171,8 +169,6 @@ where
171
169
172
170
impl < S : PageSize , const MAX_CACHEABLE_SIZE : usize , const THRESHOLD_SLOP : usize > Drop
173
171
for LargeObjectAllocator < S , MAX_CACHEABLE_SIZE , THRESHOLD_SLOP >
174
- where
175
- [ ( ) ; bins :: < S > ( MAX_CACHEABLE_SIZE ) ] : Sized ,
176
172
{
177
173
fn drop ( & mut self ) {
178
174
if Self :: CACHE_ENABLED {
0 commit comments