-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathparser.rs
89 lines (67 loc) · 2.39 KB
/
parser.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
use std::path::Path;
use criterion::{measurement::WallTime, *};
use rayon::prelude::*;
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
trait TheBencher {
type ParseOutput;
const ID: &'static str;
fn parse(filename: &Path, source: &str) -> Self::ParseOutput;
fn bench(g: &mut BenchmarkGroup<'_, WallTime>, path: &Path, source: &str) {
let cpus = num_cpus::get_physical();
let id = BenchmarkId::new(Self::ID, "single-thread");
g.bench_with_input(id, &source, |b, source| {
b.iter(|| Self::parse(path, source))
});
let id = BenchmarkId::new(Self::ID, "no-drop");
g.bench_with_input(id, &source, |b, source| {
b.iter_with_large_drop(|| Self::parse(path, source))
});
let id = BenchmarkId::new(Self::ID, "parallel");
g.bench_with_input(id, &source, |b, source| {
b.iter(|| {
(0..cpus).into_par_iter().for_each(|_| {
Self::parse(path, source);
});
})
});
}
}
struct OxcBencher;
impl TheBencher for OxcBencher {
type ParseOutput = oxc::allocator::Allocator;
const ID: &'static str = "oxc";
fn parse(path: &Path, source: &str) -> Self::ParseOutput {
bench_parser::oxc::parse(path, source)
}
}
struct SwcBencher;
impl TheBencher for SwcBencher {
type ParseOutput = swc_ecma_ast::Module;
const ID: &'static str = "swc";
fn parse(path: &Path, source: &str) -> Self::ParseOutput {
bench_parser::swc::parse(path, source)
}
}
struct BiomeBencher;
impl TheBencher for BiomeBencher {
type ParseOutput = biome_js_parser::Parse<biome_js_syntax::AnyJsRoot>;
const ID: &'static str = "biome";
fn parse(path: &Path, source: &str) -> Self::ParseOutput {
bench_parser::biome::parse(path, source)
}
}
fn parser_benchmark(c: &mut Criterion) {
let filenames = ["typescript.js", "cal.com.tsx"];
for filename in filenames {
let path = Path::new("files").join(filename);
let source = std::fs::read_to_string(&path).unwrap();
let mut g = c.benchmark_group(filename);
OxcBencher::bench(&mut g, &path, &source);
SwcBencher::bench(&mut g, &path, &source);
BiomeBencher::bench(&mut g, &path, &source);
g.finish();
}
}
criterion_group!(parser, parser_benchmark);
criterion_main!(parser);