Skip to content

Commit fdb2b17

Browse files
committed
Upgrade rust and fix clipy errors
1 parent fc44b5f commit fdb2b17

File tree

10 files changed

+23
-20
lines changed

10 files changed

+23
-20
lines changed

hoard/src/lib.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
#![feature(thread_local)]
22
#![feature(step_trait)]
33
#![feature(allocator_api)]
4-
#![feature(const_trait_impl)]
54

65
extern crate mallockit;
76

mallockit/macros/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pub fn plan(_attr: TokenStream, item: TokenStream) -> TokenStream {
4545

4646
static PLAN: ::mallockit::util::Lazy<Plan> = ::mallockit::util::Lazy::new(|| <Plan as ::mallockit::Plan>::new());
4747

48-
#[cfg(any(feature = "malloc", feature = "mallockit/malloc"))]
48+
#[cfg(feature = "malloc")]
4949
#[::mallockit::ctor]
5050
unsafe fn ctor() {
5151
<<Plan as ::mallockit::Plan>::Mutator as ::mallockit::mutator::TLS>::current();

mallockit/src/lib.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
#![allow(incomplete_features)]
2-
#![feature(const_trait_impl)]
32
#![feature(step_trait)]
43
#![feature(thread_local)]
54
#![feature(allocator_api)]
@@ -8,7 +7,6 @@
87
#![feature(alloc_layout_extra)]
98
#![feature(adt_const_params)]
109
#![feature(generic_const_exprs)]
11-
#![feature(effects)]
1210

1311
extern crate mallockit_macros;
1412
pub extern crate spin;

mallockit/src/space/large_object_space.rs

+7-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use std::{alloc::Layout, marker::PhantomData};
22

33
use super::{
4+
meta::Meta,
45
page_resource::{FreelistPageResource, PageResource},
56
Allocator, Space, SpaceId,
67
};
@@ -59,11 +60,9 @@ pub struct LargeObjectAllocator<
5960
S: PageSize = Size4K,
6061
const MAX_CACHEABLE_SIZE: usize = 0,
6162
const THRESHOLD_SLOP: usize = 0,
62-
> where
63-
[(); bins::<S>(MAX_CACHEABLE_SIZE)]: Sized,
64-
{
63+
> {
6564
space: &'static LargeObjectSpace,
66-
bins: [Address; bins::<S>(MAX_CACHEABLE_SIZE)],
65+
bins: Vec<Address, Meta>,
6766
max_live: usize,
6867
live: usize,
6968
cleared: bool,
@@ -72,15 +71,16 @@ pub struct LargeObjectAllocator<
7271

7372
impl<S: PageSize, const MAX_CACHEABLE_SIZE: usize, const THRESHOLD_SLOP: usize>
7473
LargeObjectAllocator<S, MAX_CACHEABLE_SIZE, THRESHOLD_SLOP>
75-
where
76-
[(); bins::<S>(MAX_CACHEABLE_SIZE)]: Sized,
7774
{
7875
const CACHE_ENABLED: bool = bins::<S>(MAX_CACHEABLE_SIZE) > 0;
7976

8077
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+
8181
Self {
8282
space: los,
83-
bins: [Address::ZERO; bins::<S>(MAX_CACHEABLE_SIZE)],
83+
bins: bins_vec,
8484
max_live: 0,
8585
live: 0,
8686
cleared: false,
@@ -118,8 +118,6 @@ where
118118

119119
impl<S: PageSize, const MAX_CACHEABLE_SIZE: usize, const THRESHOLD_SLOP: usize> Allocator
120120
for LargeObjectAllocator<S, MAX_CACHEABLE_SIZE, THRESHOLD_SLOP>
121-
where
122-
[(); bins::<S>(MAX_CACHEABLE_SIZE)]: Sized,
123121
{
124122
#[cold]
125123
fn alloc(&mut self, layout: Layout) -> Option<Address> {
@@ -171,8 +169,6 @@ where
171169

172170
impl<S: PageSize, const MAX_CACHEABLE_SIZE: usize, const THRESHOLD_SLOP: usize> Drop
173171
for LargeObjectAllocator<S, MAX_CACHEABLE_SIZE, THRESHOLD_SLOP>
174-
where
175-
[(); bins::<S>(MAX_CACHEABLE_SIZE)]: Sized,
176172
{
177173
fn drop(&mut self) {
178174
if Self::CACHE_ENABLED {

mallockit/src/util/bits.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ pub struct BitField {
66
pub shift: usize,
77
}
88

9-
#[const_trait]
109
pub trait BitFieldSlot: Sized {
1110
fn get(&self, field: BitField) -> usize;
1211
fn set(&mut self, field: BitField, value: usize);
@@ -38,7 +37,7 @@ impl BitFieldSlot for AtomicUsize {
3837
}
3938
}
4039

41-
impl const BitFieldSlot for usize {
40+
impl BitFieldSlot for usize {
4241
fn get(&self, field: BitField) -> usize {
4342
let value = *self;
4443
(value >> field.shift) & ((1usize << field.bits) - 1)

mallockit/src/util/malloc/malloc_api.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ impl<P: Plan> MallocAPI<P> {
236236
#[doc(hidden)]
237237
macro_rules! export_malloc_api {
238238
($plan: expr, $plan_ty: ty) => {
239-
#[cfg(any(feature = "malloc", feature = "mallockit/malloc"))]
239+
#[cfg(feature = "malloc")]
240240
pub mod __mallockit_malloc_api {
241241
use super::*;
242242
use $crate::Plan;

mallockit/src/util/mem/aligned_block.rs

-1
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,6 @@ macro_rules! impl_aligned_block {
205205
};
206206
}
207207

208-
#[const_trait]
209208
pub trait AlignedBlockConfig: Sized {
210209
type Header: Sized = ();
211210

mallockit/src/util/mem/alloc/arena.rs

+6
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,12 @@ pub struct Arena<T: Sized> {
99
phanton: PhantomData<T>,
1010
}
1111

12+
impl Default for Arena<u8> {
13+
fn default() -> Self {
14+
Self::new()
15+
}
16+
}
17+
1218
impl<T: Sized> Arena<T> {
1319
pub const fn new() -> Self {
1420
Self {

mallockit/src/util/mem/alloc/discrete_tlab.rs

+6
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ pub struct DiscreteTLAB<const MAX_SIZE_CLASS: usize = { Address::LOG_BYTES }> {
66
bytes: usize,
77
}
88

9+
impl<const MAX_SIZE_CLASS: usize> Default for DiscreteTLAB<MAX_SIZE_CLASS> {
10+
fn default() -> Self {
11+
Self::new()
12+
}
13+
}
14+
915
impl<const MAX_SIZE_CLASS: usize> DiscreteTLAB<MAX_SIZE_CLASS> {
1016
pub const fn new() -> Self {
1117
Self {

rust-toolchain

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
nightly-2024-11-01
1+
nightly-2024-11-20

0 commit comments

Comments
 (0)