//! The `print-cfg` sub-command. //! //! Read a series of Cretonne IR files and print their control flow graphs //! in graphviz format. use std::borrow::Cow; use cretonne_codegen::cfg_printer::CFGPrinter; use cretonne_codegen::ir::Function; use cretonne_reader::TestCommand; use subtest::{self, Context, SubTest, SubtestResult as STResult}; /// Object implementing the `test print-cfg` sub-test. struct TestPrintCfg; pub fn subtest(parsed: &TestCommand) -> STResult> { assert_eq!(parsed.command, "print-cfg"); if !parsed.options.is_empty() { Err(format!("No options allowed on {}", parsed)) } else { Ok(Box::new(TestPrintCfg)) } } impl SubTest for TestPrintCfg { fn name(&self) -> &'static str { "print-cfg" } fn needs_verifier(&self) -> bool { false } fn run(&self, func: Cow, context: &Context) -> STResult<()> { subtest::run_filecheck(&CFGPrinter::new(&func).to_string(), context) } }