rust/crates/test-utils/src/bench_fixture.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

46 lines
947 B
Rust
Raw Normal View History

2021-02-09 10:29:40 -06:00
//! Generates large snippets of Rust code for usage in the benchmarks.
2021-02-09 12:52:34 -06:00
use std::fs;
2021-02-09 10:29:40 -06:00
use stdx::format_to;
use crate::project_root;
2021-02-09 12:52:34 -06:00
2021-02-09 10:29:40 -06:00
pub fn big_struct() -> String {
let n = 1_000;
big_struct_n(n)
}
2021-02-09 10:29:40 -06:00
pub fn big_struct_n(n: u32) -> String {
let mut buf = "pub struct RegisterBlock {".to_owned();
2021-02-09 10:29:40 -06:00
for i in 0..n {
format_to!(buf, " /// Doc comment for {}.\n", i);
format_to!(buf, " pub s{}: S{},\n", i, i);
}
buf.push_str("}\n\n");
for i in 0..n {
format_to!(
buf,
"
#[repr(transparent)]
struct S{} {{
field: u32,
}}",
i
);
}
buf
}
2021-02-09 12:52:34 -06:00
pub fn glorious_old_parser() -> String {
let path = project_root().join("bench_data/glorious_old_parser");
fs::read_to_string(path).unwrap()
2021-02-09 12:52:34 -06:00
}
2021-02-05 05:57:32 -06:00
pub fn numerous_macro_rules() -> String {
let path = project_root().join("bench_data/numerous_macro_rules");
fs::read_to_string(path).unwrap()
2021-02-05 05:57:32 -06:00
}