Add a location to verifier error messages.
The verifier reports the 'location' of an error message as a reference to the entity that has a problem. This uses the 'AnyEntity' type to refer to instructions/values/ebbs etc. Also add an err! macro similar to the one used by the parser.
This commit is contained in:
@@ -54,8 +54,43 @@
|
|||||||
|
|
||||||
use ir::{Function, ValueDef, Ebb, Inst};
|
use ir::{Function, ValueDef, Ebb, Inst};
|
||||||
use ir::instructions::InstructionFormat;
|
use ir::instructions::InstructionFormat;
|
||||||
|
use ir::entities::AnyEntity;
|
||||||
|
use std::fmt::{self, Display, Formatter};
|
||||||
|
use std::result;
|
||||||
|
|
||||||
pub fn verify_function(func: &Function) -> Result<(), String> {
|
/// A verifier error.
|
||||||
|
#[derive(Debug, PartialEq, Eq)]
|
||||||
|
pub struct Error {
|
||||||
|
pub location: AnyEntity,
|
||||||
|
pub message: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Display for Error {
|
||||||
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
||||||
|
write!(f, "{}: {}", self.location, self.message)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub type Result<T> = result::Result<T, Error>;
|
||||||
|
|
||||||
|
// Create an `Err` variant of `Result<X>` from a location and `format!` args.
|
||||||
|
macro_rules! err {
|
||||||
|
( $loc:expr, $msg:expr ) => {
|
||||||
|
Err(Error {
|
||||||
|
location: $loc.into(),
|
||||||
|
message: String::from($msg),
|
||||||
|
})
|
||||||
|
};
|
||||||
|
|
||||||
|
( $loc:expr, $fmt:expr, $( $arg:expr ),+ ) => {
|
||||||
|
Err(Error {
|
||||||
|
location: $loc.into(),
|
||||||
|
message: format!( $fmt, $( $arg ),+ ),
|
||||||
|
})
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn verify_function(func: &Function) -> Result<()> {
|
||||||
Verifier::new(func).run()
|
Verifier::new(func).run()
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -68,25 +103,25 @@ impl<'a> Verifier<'a> {
|
|||||||
Verifier { func: func }
|
Verifier { func: func }
|
||||||
}
|
}
|
||||||
|
|
||||||
fn ebb_integrity(&self, ebb: Ebb, inst: Inst) -> Result<(), String> {
|
fn ebb_integrity(&self, ebb: Ebb, inst: Inst) -> Result<()> {
|
||||||
|
|
||||||
let is_terminator = self.func.dfg[inst].is_terminating();
|
let is_terminator = self.func.dfg[inst].is_terminating();
|
||||||
let is_last_inst = self.func.layout.last_inst(ebb) == inst;
|
let is_last_inst = self.func.layout.last_inst(ebb) == inst;
|
||||||
|
|
||||||
if is_terminator && !is_last_inst {
|
if is_terminator && !is_last_inst {
|
||||||
// Terminating instructions only occur at the end of blocks.
|
// Terminating instructions only occur at the end of blocks.
|
||||||
return Err(format!("A terminating instruction was encountered before the \
|
return err!(inst,
|
||||||
end of ebb {:?}!",
|
"a terminator instruction was encountered before the end of {}",
|
||||||
ebb));
|
ebb);
|
||||||
}
|
}
|
||||||
if is_last_inst && !is_terminator {
|
if is_last_inst && !is_terminator {
|
||||||
return Err(format!("Block {:?} does not end in a terminating instruction!", ebb));
|
return err!(ebb, "block does not end in a terminator instruction!");
|
||||||
}
|
}
|
||||||
|
|
||||||
// Instructions belong to the correct ebb.
|
// Instructions belong to the correct ebb.
|
||||||
let inst_ebb = self.func.layout.inst_ebb(inst);
|
let inst_ebb = self.func.layout.inst_ebb(inst);
|
||||||
if inst_ebb != Some(ebb) {
|
if inst_ebb != Some(ebb) {
|
||||||
return Err(format!("{:?} should belong to {:?} not {:?}", inst, ebb, inst_ebb));
|
return err!(inst, "should belong to {} not {:?}", ebb, inst_ebb);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Arguments belong to the correct ebb.
|
// Arguments belong to the correct ebb.
|
||||||
@@ -94,11 +129,11 @@ impl<'a> Verifier<'a> {
|
|||||||
match self.func.dfg.value_def(arg) {
|
match self.func.dfg.value_def(arg) {
|
||||||
ValueDef::Arg(arg_ebb, _) => {
|
ValueDef::Arg(arg_ebb, _) => {
|
||||||
if ebb != arg_ebb {
|
if ebb != arg_ebb {
|
||||||
return Err(format!("{:?} does not belong to {:?}", arg, ebb));
|
return err!(arg, "does not belong to {}", ebb);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
_ => {
|
_ => {
|
||||||
return Err("Expected an argument, found a result!".to_string());
|
return err!(arg, "expected an argument, found a result");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -106,18 +141,18 @@ impl<'a> Verifier<'a> {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
fn instruction_integrity(&self, inst: Inst) -> Result<(), String> {
|
fn instruction_integrity(&self, inst: Inst) -> Result<()> {
|
||||||
let inst_data = &self.func.dfg[inst];
|
let inst_data = &self.func.dfg[inst];
|
||||||
|
|
||||||
// The instruction format matches the opcode
|
// The instruction format matches the opcode
|
||||||
if inst_data.opcode().format() != Some(InstructionFormat::from(inst_data)) {
|
if inst_data.opcode().format() != Some(InstructionFormat::from(inst_data)) {
|
||||||
return Err("Instruction opcode doesn't match instruction format!".to_string());
|
return err!(inst, "instruction opcode doesn't match instruction format");
|
||||||
}
|
}
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn run(&self) -> Result<(), String> {
|
pub fn run(&self) -> Result<()> {
|
||||||
for ebb in self.func.layout.ebbs() {
|
for ebb in self.func.layout.ebbs() {
|
||||||
for inst in self.func.layout.ebb_insts(ebb) {
|
for inst in self.func.layout.ebb_insts(ebb) {
|
||||||
try!(self.ebb_integrity(ebb, inst));
|
try!(self.ebb_integrity(ebb, inst));
|
||||||
@@ -143,9 +178,9 @@ mod tests {
|
|||||||
let err_re = Regex::new($msg).unwrap();
|
let err_re = Regex::new($msg).unwrap();
|
||||||
match $e {
|
match $e {
|
||||||
Ok(_) => { panic!("Expected an error!") },
|
Ok(_) => { panic!("Expected an error!") },
|
||||||
Err(err_msg) => {
|
Err(Error { location, message } ) => {
|
||||||
if !err_re.is_match(&err_msg) {
|
if !err_re.is_match(&message) {
|
||||||
panic!(format!("'{}' did not contain the pattern '{}'", err_msg, $msg));
|
panic!(format!("'{}' did not contain the pattern '{}'", message, $msg));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -259,7 +259,7 @@ impl Job {
|
|||||||
|
|
||||||
// Should we run the verifier before this test?
|
// Should we run the verifier before this test?
|
||||||
if !context.verified && test.needs_verifier() {
|
if !context.verified && test.needs_verifier() {
|
||||||
try!(verify_function(&func));
|
try!(verify_function(&func).map_err(|e| e.to_string()));
|
||||||
context.verified = true;
|
context.verified = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -41,7 +41,7 @@ fn verifier_tests_from_source(function_source: &str) {
|
|||||||
let result = Verifier::new(&func).run();
|
let result = Verifier::new(&func).run();
|
||||||
match verifier_results[i] {
|
match verifier_results[i] {
|
||||||
Some(ref re) => {
|
Some(ref re) => {
|
||||||
assert_eq!(re.is_match(&result.err().unwrap()), true);
|
assert_eq!(re.is_match(&result.err().unwrap().message), true);
|
||||||
},
|
},
|
||||||
None => {
|
None => {
|
||||||
assert_eq!(result, Ok(()));
|
assert_eq!(result, Ok(()));
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
function test(i32) { ; Err(terminating)
|
function test(i32) { ; Err(terminator)
|
||||||
ebb0(v0: i32):
|
ebb0(v0: i32):
|
||||||
jump ebb1
|
jump ebb1
|
||||||
return
|
return
|
||||||
|
|||||||
Reference in New Issue
Block a user