* Make passes assert their dependencies consistently. This avoids ambiguity about whose responsibility it is to run to compute cfg, domtree, and loop_analysis data. * Reset the `valid` flag in DominatorTree's `clear()`. * Remove the redundant assert from DominatorTree::with_function. * Remove the message strings from obvious asserts. This avoids having them spill out into multiple lines. * Refactor calls to `compute` on `Context` objects into helper functions.
54 lines
1.4 KiB
Rust
54 lines
1.4 KiB
Rust
//! Test command for checking the IL legalizer.
|
|
//!
|
|
//! The `test legalizer` test command runs each function through `legalize_function()` and sends
|
|
//! the result to filecheck.
|
|
|
|
use std::borrow::Cow;
|
|
use cretonne;
|
|
use cretonne::ir::Function;
|
|
use cton_reader::TestCommand;
|
|
use filetest::subtest::{SubTest, Context, Result, run_filecheck};
|
|
use std::fmt::Write;
|
|
use utils::pretty_error;
|
|
|
|
struct TestLegalizer;
|
|
|
|
pub fn subtest(parsed: &TestCommand) -> Result<Box<SubTest>> {
|
|
assert_eq!(parsed.command, "legalizer");
|
|
if !parsed.options.is_empty() {
|
|
Err(format!("No options allowed on {}", parsed))
|
|
} else {
|
|
Ok(Box::new(TestLegalizer))
|
|
}
|
|
}
|
|
|
|
impl SubTest for TestLegalizer {
|
|
fn name(&self) -> Cow<str> {
|
|
Cow::from("legalizer")
|
|
}
|
|
|
|
fn is_mutating(&self) -> bool {
|
|
true
|
|
}
|
|
|
|
fn needs_isa(&self) -> bool {
|
|
true
|
|
}
|
|
|
|
fn run(&self, func: Cow<Function>, context: &Context) -> Result<()> {
|
|
let mut comp_ctx = cretonne::Context::new();
|
|
comp_ctx.func = func.into_owned();
|
|
let isa = context.isa.expect("legalizer needs an ISA");
|
|
|
|
comp_ctx.compute_cfg();
|
|
comp_ctx.legalize(isa).map_err(|e| {
|
|
pretty_error(&comp_ctx.func, context.isa, e)
|
|
})?;
|
|
|
|
let mut text = String::new();
|
|
write!(&mut text, "{}", &comp_ctx.func.display(Some(isa)))
|
|
.map_err(|e| e.to_string())?;
|
|
run_filecheck(&text, context)
|
|
}
|
|
}
|