-
-
Notifications
You must be signed in to change notification settings - Fork 483
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(benchmark): add codegen benchmark (#4207)
- Loading branch information
Showing
4 changed files
with
36 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
use oxc_allocator::Allocator; | ||
use oxc_benchmark::{criterion_group, criterion_main, BenchmarkId, Criterion}; | ||
use oxc_codegen::CodeGenerator; | ||
use oxc_parser::Parser; | ||
use oxc_span::SourceType; | ||
use oxc_tasks_common::TestFiles; | ||
|
||
fn bench_codegen(criterion: &mut Criterion) { | ||
for file in TestFiles::complicated_one(0).files() { | ||
let id = BenchmarkId::from_parameter(&file.file_name); | ||
let source_type = SourceType::from_path(&file.file_name).unwrap(); | ||
let allocator = Allocator::default(); | ||
let source_text = &file.source_text; | ||
let ret = Parser::new(&allocator, source_text, source_type).parse(); | ||
|
||
let mut group = criterion.benchmark_group("codegen"); | ||
group.bench_with_input(id.clone(), &ret.program, |b, program| { | ||
b.iter_with_large_drop(|| CodeGenerator::new().build(program).source_map); | ||
}); | ||
group.finish(); | ||
|
||
let mut group = criterion.benchmark_group("codegen_sourcemap"); | ||
group.bench_with_input(id, &ret.program, |b, program| { | ||
b.iter_with_large_drop(|| { | ||
CodeGenerator::new().enable_source_map(&file.file_name, source_text).build(program) | ||
}); | ||
}); | ||
group.finish(); | ||
} | ||
} | ||
|
||
criterion_group!(codegen, bench_codegen); | ||
criterion_main!(codegen); |
This file was deleted.
Oops, something went wrong.