mirror of
https://github.com/swc-project/swc.git
synced 2024-11-30 07:03:50 +03:00
105 lines
3.0 KiB
Rust
105 lines
3.0 KiB
Rust
extern crate swc_malloc;
|
|
|
|
use codspeed_criterion_compat::{black_box, criterion_group, criterion_main, Bencher, Criterion};
|
|
use swc_common::{input::StringInput, FileName};
|
|
use swc_html_ast::{DocumentMode, Element, Namespace};
|
|
use swc_html_parser::{lexer::Lexer, parser::Parser};
|
|
|
|
fn bench_document(b: &mut Bencher, src: &'static str) {
|
|
let _ = ::testing::run_test(false, |cm, _| {
|
|
let fm = cm.new_source_file(FileName::Anon.into(), src.into());
|
|
|
|
b.iter(|| {
|
|
let _ = black_box({
|
|
let lexer = Lexer::new(StringInput::from(&*fm));
|
|
let mut parser = Parser::new(lexer, Default::default());
|
|
|
|
parser.parse_document()
|
|
});
|
|
});
|
|
|
|
Ok(())
|
|
});
|
|
}
|
|
|
|
fn bench_document_fragment(b: &mut Bencher, src: &'static str) {
|
|
let _ = ::testing::run_test(false, |cm, _| {
|
|
let fm = cm.new_source_file(FileName::Anon.into(), src.into());
|
|
|
|
b.iter(|| {
|
|
let _ = black_box({
|
|
let lexer = Lexer::new(StringInput::from(&*fm));
|
|
let mut parser = Parser::new(lexer, Default::default());
|
|
|
|
parser.parse_document_fragment(
|
|
Element {
|
|
span: Default::default(),
|
|
tag_name: "template".into(),
|
|
namespace: Namespace::HTML,
|
|
attributes: Vec::new(),
|
|
is_self_closing: false,
|
|
children: Vec::new(),
|
|
content: None,
|
|
},
|
|
DocumentMode::NoQuirks,
|
|
None,
|
|
)
|
|
});
|
|
});
|
|
|
|
Ok(())
|
|
});
|
|
}
|
|
|
|
fn run_document(c: &mut Criterion, id: &str, src: &'static str) {
|
|
c.bench_function(&format!("html/parser/{}", id), |b| {
|
|
bench_document(b, src);
|
|
});
|
|
}
|
|
fn run_document_fragment(c: &mut Criterion, id: &str, src: &'static str) {
|
|
c.bench_function(&format!("html/parser/{}", id), |b| {
|
|
bench_document_fragment(b, src);
|
|
});
|
|
}
|
|
|
|
fn bench_files(c: &mut Criterion) {
|
|
run_document(
|
|
c,
|
|
"parser_document/css_2021_spec",
|
|
include_str!("./files/css_2021_spec.html"),
|
|
);
|
|
|
|
run_document(
|
|
c,
|
|
"parser_document/github_com_17_05_2022",
|
|
include_str!("./files/github_com_17_05_2022.html"),
|
|
);
|
|
|
|
run_document(
|
|
c,
|
|
"parser_document/stackoverflow_com_17_05_2022",
|
|
include_str!("./files/stackoverflow_com_17_05_2022.html"),
|
|
);
|
|
|
|
run_document_fragment(
|
|
c,
|
|
"parser_document_fragment/css_2021_spec",
|
|
include_str!("./files/css_2021_spec.html"),
|
|
);
|
|
|
|
run_document_fragment(
|
|
c,
|
|
"parser_document_fragment/github_com_17_05_2022",
|
|
include_str!("./files/github_com_17_05_2022.html"),
|
|
);
|
|
|
|
run_document_fragment(
|
|
c,
|
|
"parser_document_fragment/stackoverflow_com_17_05_2022",
|
|
include_str!("./files/stackoverflow_com_17_05_2022.html"),
|
|
);
|
|
}
|
|
|
|
criterion_group!(benches, bench_files);
|
|
criterion_main!(benches);
|