oxc/crates/oxc_allocator/src/lib.rs
overlookmotel 6bc18e15e0
refactor(bench): reuse allocator in parser + lexer benchmarks (#3053)
Re-use allocator in parser + lexer benchmarks.

I believe this is the recommended usage when parsing a bunch of files -
to re-use one allocator rather than create a fresh one for each run, so
it makes sense to me that this is what the benchmark should measure.

Doesn't show much difference on CodSpeed because it only runs the
benchmark once, and it treats allocations as free anyway. But I imagine
the difference may show up a bit more in a standard criterion benchmark.
2024-04-22 09:03:26 +08:00

52 lines
843 B
Rust

use std::{
convert::From,
ops::{Deref, DerefMut},
};
mod arena;
pub use arena::{Box, String, Vec};
use bumpalo::Bump;
#[derive(Default)]
pub struct Allocator {
bump: Bump,
}
impl From<Bump> for Allocator {
fn from(bump: Bump) -> Self {
Self { bump }
}
}
impl Deref for Allocator {
type Target = Bump;
fn deref(&self) -> &Self::Target {
&self.bump
}
}
impl DerefMut for Allocator {
fn deref_mut(&mut self) -> &mut Self::Target {
&mut self.bump
}
}
#[cfg(test)]
mod test {
use std::ops::Deref;
use crate::Allocator;
use bumpalo::Bump;
#[test]
fn test_api() {
let bump = Bump::new();
let allocator: Allocator = bump.into();
#[allow(clippy::explicit_deref_methods)]
{
_ = allocator.deref();
}
}
}