diff options
Diffstat (limited to 'plugins/warp/benches')
| -rw-r--r-- | plugins/warp/benches/convert.rs | 49 | ||||
| -rw-r--r-- | plugins/warp/benches/function.rs | 62 | ||||
| -rw-r--r-- | plugins/warp/benches/guid.rs | 31 |
3 files changed, 77 insertions, 65 deletions
diff --git a/plugins/warp/benches/convert.rs b/plugins/warp/benches/convert.rs index 7d7f40b3..e0acdc15 100644 --- a/plugins/warp/benches/convert.rs +++ b/plugins/warp/benches/convert.rs @@ -4,33 +4,36 @@ use criterion::{criterion_group, criterion_main, Criterion}; use std::path::PathBuf; use warp_ninja::convert::from_bn_type; +// These are the target files present in OUT_DIR +// Add the files to fixtures/bin +static TARGET_FILES: [&str; 1] = ["atox.obj"]; + pub fn type_conversion_benchmark(c: &mut Criterion) { let session = Session::new().expect("Failed to initialize session"); let out_dir = env!("OUT_DIR").parse::<PathBuf>().unwrap(); - for entry in std::fs::read_dir(out_dir).expect("Failed to read OUT_DIR") { - let entry = entry.expect("Failed to read directory entry"); - let path = entry.path(); - if path.is_file() { - if let Some(bv) = session.load(path.to_str().unwrap()) { - let functions = bv.functions(); - c.bench_function("type conversion all functions", |b| { - b.iter(|| { - for func in &functions { - from_bn_type(&bv, &func.function_type(), u8::MAX); - } - }) - }); + for file_name in TARGET_FILES { + let path = out_dir.join(file_name); + let view = session.load(&path).expect("Failed to load view"); + + // Bench function types. + let functions: Vec<_> = view.functions().iter().map(|f| f.to_owned()).collect(); + c.bench_function("type conversion all functions", |b| { + b.iter(|| { + for func in &functions { + from_bn_type(&view, &func.function_type(), u8::MAX); + } + }) + }); - let types = bv.types(); - c.bench_function("type conversion all types", |b| { - b.iter(|| { - for ty in &types { - from_bn_type(&bv, &ty.ty, u8::MAX); - } - }) - }); - } - } + // Bench view types. + let types = view.types().to_vec(); + c.bench_function("type conversion all types", |b| { + b.iter(|| { + for ty in &types { + from_bn_type(&view, &ty.ty, u8::MAX); + } + }) + }); } } diff --git a/plugins/warp/benches/function.rs b/plugins/warp/benches/function.rs index 0ddf9ce2..dc5016be 100644 --- a/plugins/warp/benches/function.rs +++ b/plugins/warp/benches/function.rs @@ -2,43 +2,43 @@ use binaryninja::binary_view::BinaryViewExt; use binaryninja::headless::Session; use criterion::{criterion_group, criterion_main, Criterion}; use rayon::prelude::*; +use std::path::PathBuf; use warp_ninja::build_function; -use warp_ninja::cache::FunctionCache; + +// These are the target files present in OUT_DIR +// Add the files to fixtures/bin +static TARGET_FILES: [&str; 1] = ["atox.obj"]; pub fn function_benchmark(c: &mut Criterion) { let session = Session::new().expect("Failed to initialize session"); - let bv = session.load(env!("TEST_BIN_LIBRARY_OBJ")).unwrap(); - let functions = bv.functions(); - assert_eq!(functions.len(), 6); - let mut function_iter = functions.into_iter(); - let first_function = function_iter.next().unwrap(); - - c.bench_function("signature first function", |b| { - b.iter(|| { - let _ = build_function(&first_function, &first_function.low_level_il().unwrap()); - }) - }); + let out_dir = env!("OUT_DIR").parse::<PathBuf>().unwrap(); + for file_name in TARGET_FILES { + let path = out_dir.join(file_name); + let view = session.load(&path).expect("Failed to load view"); - c.bench_function("signature all functions", |b| { - b.iter(|| { - for func in &functions { - let _ = build_function(&func, &func.low_level_il().unwrap()); - } - }) - }); + let functions: Vec<_> = view.functions().iter().map(|f| f.to_owned()).collect(); + // Bench all functions sequentially + c.bench_function("signature all functions", |b| { + b.iter(|| { + for func in &functions { + let _ = build_function(&func, &func.lifted_il().unwrap()); + } + }) + }); - let cache = FunctionCache::default(); - c.bench_function("signature all functions rayon", |b| { - b.iter(|| { - functions - .par_iter() - .map_with(cache.clone(), |par_cache, func| { - let llil = func.low_level_il().ok()?; - Some(par_cache.function(func.as_ref(), llil.as_ref())) - }) - .collect::<Vec<_>>() - }) - }); + // Bench all functions in parallel + c.bench_function("signature all functions rayon", |b| { + b.iter(|| { + functions + .par_iter() + .filter_map(|func| { + let llil = func.lifted_il().ok()?; + Some(build_function(func.as_ref(), llil.as_ref())) + }) + .collect::<Vec<_>>() + }) + }); + } } criterion_group!(benches, function_benchmark); diff --git a/plugins/warp/benches/guid.rs b/plugins/warp/benches/guid.rs index 046886b5..eddf2f06 100644 --- a/plugins/warp/benches/guid.rs +++ b/plugins/warp/benches/guid.rs @@ -1,22 +1,31 @@ use binaryninja::binary_view::BinaryViewExt; use binaryninja::headless::Session; use criterion::{criterion_group, criterion_main, Criterion}; +use std::path::PathBuf; use warp_ninja::function_guid; +// These are the target files present in OUT_DIR +// Add the files to fixtures/bin +static TARGET_FILES: [&str; 1] = ["atox.obj"]; + pub fn guid_benchmark(c: &mut Criterion) { let session = Session::new().expect("Failed to initialize session"); - let bv = session.load(env!("TEST_BIN_LIBRARY_OBJ")).unwrap(); - let functions = bv.functions(); - assert_eq!(functions.len(), 6); - let mut function_iter = functions.into_iter(); - let first_function = function_iter.next().unwrap(); + let out_dir = env!("OUT_DIR").parse::<PathBuf>().unwrap(); + for file_name in TARGET_FILES { + let path = out_dir.join(file_name); + let view = session.load(&path).expect("Failed to load view"); - c.bench_function("function guid", |b| { - b.iter(|| { - let llil = first_function.low_level_il().unwrap(); - function_guid(&first_function, &llil); - }) - }); + let functions: Vec<_> = view.functions().iter().map(|f| f.to_owned()).collect(); + // Bench all functions sequentially + c.bench_function("guid all functions", |b| { + b.iter(|| { + for func in &functions { + let llil = func.lifted_il().unwrap(); + function_guid(&func, &llil); + } + }) + }); + } } criterion_group!(benches, guid_benchmark); |
