//! Test command for testing the simple GVN pass. //! //! The `simple-gvn` test command runs each function through the simple GVN pass after ensuring //! that all instructions are legal for the target. //! //! The resulting function is sent to `filecheck`. use cretonne_codegen; use cretonne_codegen::ir::Function; use cretonne_codegen::print_errors::pretty_error; use cretonne_reader::TestCommand; use std::borrow::Cow; use subtest::{run_filecheck, Context, Result, SubTest}; struct TestSimpleGVN; pub fn subtest(parsed: &TestCommand) -> Result> { assert_eq!(parsed.command, "simple-gvn"); if !parsed.options.is_empty() { Err(format!("No options allowed on {}", parsed)) } else { Ok(Box::new(TestSimpleGVN)) } } impl SubTest for TestSimpleGVN { fn name(&self) -> &'static str { "simple-gvn" } fn is_mutating(&self) -> bool { true } fn run(&self, func: Cow, context: &Context) -> Result<()> { let mut comp_ctx = cretonne_codegen::Context::for_function(func.into_owned()); comp_ctx.flowgraph(); comp_ctx .simple_gvn(context.flags_or_isa()) .map_err(|e| pretty_error(&comp_ctx.func, context.isa, Into::into(e)))?; let text = comp_ctx.func.to_string(); run_filecheck(&text, context) } }