leo/tests/test-framework/benches/leo_compiler.rs

275 lines
9.6 KiB
Rust
Raw Normal View History

// Copyright (C) 2019-2022 Aleo Systems Inc.
// This file is part of the Leo library.
// The Leo library is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
// The Leo library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
// You should have received a copy of the GNU General Public License
// along with the Leo library. If not, see <https://www.gnu.org/licenses/>.
2022-06-12 19:26:14 +03:00
//! This file contains tools for benchmarking the Leo compiler and its stages.
use leo_compiler::Compiler;
2022-06-09 01:33:12 +03:00
use leo_errors::emitter::{Emitter, Handler};
2022-07-27 20:40:19 +03:00
use leo_span::{source_map::FileName, symbol::SESSION_GLOBALS};
2022-06-09 01:33:12 +03:00
use leo_test_framework::get_benches;
use criterion::{black_box, criterion_group, criterion_main, Criterion};
use std::{
path::PathBuf,
time::{Duration, Instant},
};
2022-06-12 19:26:14 +03:00
/// An enum to represent the stage of the Compiler we are benchmarking.
2022-06-09 01:33:12 +03:00
enum BenchMode {
2022-06-12 19:26:14 +03:00
/// Benchmarks parsing.
2022-06-09 01:33:12 +03:00
Parse,
2022-06-12 19:26:14 +03:00
/// Benchmarks symbol table generation.
2022-06-09 01:33:12 +03:00
Symbol,
2022-06-12 19:26:14 +03:00
/// Benchmarks type checking.
2022-06-09 01:33:12 +03:00
Type,
2022-07-12 08:13:13 +03:00
/// Benchmarks loop unrolling.
Unroll,
2022-07-18 18:10:40 +03:00
/// Benchmarks static single assignment.
Ssa,
/// Benchmarks flattening.
Flatten,
2022-06-12 19:26:14 +03:00
/// Benchmarks all the above stages.
2022-06-09 01:33:12 +03:00
Full,
}
2022-06-12 19:26:14 +03:00
/// A dummy buffer emitter since we only test on valid programs.
2022-06-09 01:33:12 +03:00
struct BufEmitter;
impl Emitter for BufEmitter {
fn emit_err(&mut self, _: leo_errors::LeoError) {}
fn last_emitted_err_code(&self) -> Option<i32> {
None
2022-06-09 01:33:12 +03:00
}
fn emit_warning(&mut self, _: leo_errors::LeoWarning) {}
}
2022-06-09 01:33:12 +03:00
impl BufEmitter {
fn new_handler() -> Handler {
Handler::new(Box::new(Self))
}
}
2022-06-12 19:26:14 +03:00
/// The name of the test, and the test content.
2022-06-09 01:33:12 +03:00
#[derive(Clone)]
struct Sample {
2022-06-09 01:33:12 +03:00
name: String,
input: String,
}
2022-06-12 19:26:14 +03:00
/// A helper function to help create a Leo Compiler struct.
2022-06-09 01:33:12 +03:00
fn new_compiler(handler: &Handler) -> Compiler<'_> {
Compiler::new(
2022-10-05 05:11:36 +03:00
String::from("bench"),
String::from("aleo"),
handler,
2022-06-09 01:33:12 +03:00
PathBuf::from(String::new()),
PathBuf::from(String::new()),
None,
)
}
impl Sample {
2022-06-12 19:26:14 +03:00
/// Loads all the benchmark samples.
/// Leverages the test-framework to grab all tests
/// that are passing compiler tests or marked as benchmark tests.
2022-06-09 01:33:12 +03:00
fn load_samples() -> Vec<Self> {
get_benches()
.into_iter()
.map(|(name, input)| Self { name, input })
.collect()
}
fn data(&self) -> (&str, FileName) {
2022-06-09 01:33:12 +03:00
black_box((&self.input, FileName::Custom(String::new())))
}
fn bench(&self, c: &mut Criterion, mode: BenchMode) {
match mode {
BenchMode::Parse => self.bench_parse(c),
BenchMode::Symbol => self.bench_symbol_table(c),
BenchMode::Type => self.bench_type_checker(c),
2022-07-12 08:13:13 +03:00
BenchMode::Unroll => self.bench_loop_unroller(c),
2022-07-18 18:10:40 +03:00
BenchMode::Ssa => self.bench_ssa(c),
BenchMode::Flatten => self.bench_flattener(c),
2022-06-09 01:33:12 +03:00
BenchMode::Full => self.bench_full(c),
}
}
2022-07-27 20:40:19 +03:00
/// Benchmarks `logic(compiler)` where `compiler` is provided.
fn bencher(&self, c: &mut Criterion, mode: &str, mut logic: impl FnMut(Compiler) -> Duration) {
2022-10-25 08:41:10 +03:00
c.bench_function(&format!("{mode} {}", self.name), |b| {
2022-06-12 19:26:14 +03:00
// Iter custom is used so we can use custom timings around the compiler stages.
// This way we can only time the necessary stage.
b.iter_custom(|iters| {
2022-07-27 20:40:19 +03:00
(0..iters)
.map(|_| SESSION_GLOBALS.set(&<_>::default(), || logic(new_compiler(&BufEmitter::new_handler()))))
.sum()
});
});
}
/// Benchmarks `logic(compiler)` where `compiler` is provided.
/// Parsing has already been done.
fn bencher_after_parse(&self, c: &mut Criterion, mode: &str, mut logic: impl FnMut(Compiler) -> Duration) {
self.bencher(c, mode, |mut compiler| {
let (input, name) = self.data();
compiler
.parse_program_from_string(input, name)
.expect("Failed to parse program");
logic(compiler)
});
}
2022-07-27 20:40:19 +03:00
fn bench_parse(&self, c: &mut Criterion) {
self.bencher(c, "parse", |mut compiler| {
let (input, name) = self.data();
let start = Instant::now();
let out = compiler.parse_program_from_string(input, name);
let time = start.elapsed();
out.expect("Failed to parse program");
time
})
}
fn bench_symbol_table(&self, c: &mut Criterion) {
2022-07-27 20:40:19 +03:00
self.bencher_after_parse(c, "symbol table pass", |compiler| {
let start = Instant::now();
let out = compiler.symbol_table_pass();
let time = start.elapsed();
out.expect("failed to generate symbol table");
time
});
}
fn bench_type_checker(&self, c: &mut Criterion) {
2022-07-27 20:40:19 +03:00
self.bencher_after_parse(c, "type checker pass", |compiler| {
let symbol_table = compiler.symbol_table_pass().expect("failed to generate symbol table");
let start = Instant::now();
let out = compiler.type_checker_pass(symbol_table);
let time = start.elapsed();
out.expect("failed to run type check pass");
time
});
}
2022-07-12 08:13:13 +03:00
fn bench_loop_unroller(&self, c: &mut Criterion) {
2022-07-27 20:40:19 +03:00
self.bencher_after_parse(c, "loop unrolling pass", |mut compiler| {
let symbol_table = compiler.symbol_table_pass().expect("failed to generate symbol table");
let symbol_table = compiler
.type_checker_pass(symbol_table)
.expect("failed to run type check pass");
let start = Instant::now();
let out = compiler.loop_unrolling_pass(symbol_table);
let time = start.elapsed();
out.expect("failed to run loop unrolling pass");
time
2022-07-12 08:13:13 +03:00
});
}
2022-07-18 18:10:40 +03:00
fn bench_ssa(&self, c: &mut Criterion) {
2022-07-27 20:40:19 +03:00
self.bencher_after_parse(c, "full", |mut compiler| {
let symbol_table = compiler.symbol_table_pass().expect("failed to generate symbol table");
let symbol_table = compiler
.type_checker_pass(symbol_table)
.expect("failed to run type check pass");
2022-10-07 10:21:05 +03:00
let symbol_table = compiler
2022-07-27 20:40:19 +03:00
.loop_unrolling_pass(symbol_table)
.expect("failed to run loop unrolling pass");
let start = Instant::now();
2022-10-07 10:21:05 +03:00
let out = compiler.static_single_assignment_pass(&symbol_table);
2022-07-27 20:40:19 +03:00
let time = start.elapsed();
out.expect("failed to run ssa pass");
time
})
2022-07-18 18:10:40 +03:00
}
fn bench_flattener(&self, c: &mut Criterion) {
self.bencher_after_parse(c, "flattener pass", |mut compiler| {
let symbol_table = compiler.symbol_table_pass().expect("failed to generate symbol table");
let symbol_table = compiler
.type_checker_pass(symbol_table)
.expect("failed to run type check pass");
2022-09-06 03:51:59 +03:00
let symbol_table = compiler
.loop_unrolling_pass(symbol_table)
.expect("failed to run loop unrolling pass");
let assigner = compiler
2022-10-07 10:21:05 +03:00
.static_single_assignment_pass(&symbol_table)
.expect("failed to run ssa pass");
let start = Instant::now();
let out = compiler.flattening_pass(&symbol_table, assigner);
let time = start.elapsed();
out.expect("failed to run flattener pass");
time
});
}
fn bench_full(&self, c: &mut Criterion) {
2022-07-27 20:40:19 +03:00
self.bencher(c, "full", |mut compiler| {
let (input, name) = self.data();
let start = Instant::now();
compiler
.parse_program_from_string(input, name)
.expect("Failed to parse program");
let symbol_table = compiler.symbol_table_pass().expect("failed to generate symbol table");
let symbol_table = compiler
.type_checker_pass(symbol_table)
.expect("failed to run type check pass");
2022-09-06 03:51:59 +03:00
let symbol_table = compiler
2022-07-27 20:40:19 +03:00
.loop_unrolling_pass(symbol_table)
.expect("failed to run loop unrolling pass");
let assigner = compiler
2022-10-07 10:21:05 +03:00
.static_single_assignment_pass(&symbol_table)
2022-07-27 20:40:19 +03:00
.expect("failed to run ssa pass");
compiler
.flattening_pass(&symbol_table, assigner)
.expect("failed to run flattening pass");
2022-07-27 20:40:19 +03:00
start.elapsed()
})
}
}
2022-06-09 01:33:12 +03:00
macro_rules! bench {
($name:ident, $mode:expr) => {
fn $name(c: &mut Criterion) {
Sample::load_samples().into_iter().for_each(|s| s.bench(c, $mode))
}
};
}
2022-06-09 01:33:12 +03:00
bench!(bench_parse, BenchMode::Parse);
bench!(bench_symbol, BenchMode::Symbol);
bench!(bench_type, BenchMode::Type);
2022-07-12 08:13:13 +03:00
bench!(bench_unroll, BenchMode::Unroll);
2022-07-18 18:10:40 +03:00
bench!(bench_ssa, BenchMode::Ssa);
bench!(bench_flatten, BenchMode::Flatten);
2022-06-09 01:33:12 +03:00
bench!(bench_full, BenchMode::Full);
criterion_group!(
name = benches;
config = Criterion::default().sample_size(200).measurement_time(Duration::from_secs(10)).nresamples(200_000);
targets =
bench_parse,
2022-06-09 01:33:12 +03:00
bench_symbol,
bench_type,
2022-07-12 08:13:13 +03:00
bench_unroll,
2022-07-18 18:10:40 +03:00
bench_ssa,
bench_flatten,
bench_full
);
criterion_main!(benches);