Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
43
third-party/vendor/tracing/benches/empty_span.rs
vendored
Normal file
43
third-party/vendor/tracing/benches/empty_span.rs
vendored
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
use criterion::{black_box, criterion_group, criterion_main, Criterion};
|
||||
|
||||
mod shared;
|
||||
|
||||
fn bench(c: &mut Criterion) {
|
||||
let mut group = c.benchmark_group("empty_span");
|
||||
shared::for_all_dispatches(&mut group, |b| {
|
||||
b.iter(|| {
|
||||
let span = tracing::span::Span::none();
|
||||
black_box(&span);
|
||||
})
|
||||
});
|
||||
group.bench_function("baseline_struct", |b| {
|
||||
b.iter(|| {
|
||||
let span = FakeEmptySpan::new();
|
||||
black_box(&span);
|
||||
})
|
||||
});
|
||||
}
|
||||
|
||||
struct FakeEmptySpan {
|
||||
inner: Option<(usize, std::sync::Arc<()>)>,
|
||||
meta: Option<&'static ()>,
|
||||
}
|
||||
|
||||
impl FakeEmptySpan {
|
||||
fn new() -> Self {
|
||||
Self {
|
||||
inner: None,
|
||||
meta: None,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
impl Drop for FakeEmptySpan {
|
||||
fn drop(&mut self) {
|
||||
black_box(&self.inner);
|
||||
black_box(&self.meta);
|
||||
}
|
||||
}
|
||||
|
||||
criterion_group!(benches, bench);
|
||||
criterion_main!(benches);
|
||||
Loading…
Add table
Add a link
Reference in a new issue