Implement IR equivalence checker

This commit is contained in:
Jeehoon Kang
2020-06-10 22:27:54 +09:00
parent 6146714112
commit c2380efbb0
5 changed files with 265 additions and 38 deletions

View File

@@ -1,15 +1,7 @@
#![allow(unused_variables)]
use lang_c::ast::*;
use lang_c::span::Node;
use core::ops::Deref;
use itertools::izip;
trait IsEquiv {
fn is_equiv(&self, other: &Self) -> bool;
}
use crate::utils::IsEquiv;
impl<T: IsEquiv> IsEquiv for Node<T> {
fn is_equiv(&self, other: &Self) -> bool {
@@ -17,34 +9,6 @@ impl<T: IsEquiv> IsEquiv for Node<T> {
}
}
impl<T: IsEquiv> IsEquiv for Box<T> {
fn is_equiv(&self, other: &Self) -> bool {
self.deref().is_equiv(other.deref())
}
}
impl<T: IsEquiv> IsEquiv for &T {
fn is_equiv(&self, other: &Self) -> bool {
(*self).is_equiv(*other)
}
}
impl<T: IsEquiv> IsEquiv for Option<T> {
fn is_equiv(&self, other: &Self) -> bool {
match (self, other) {
(Some(lhs), Some(rhs)) => lhs.is_equiv(rhs),
(None, None) => true,
_ => false,
}
}
}
impl<T: IsEquiv> IsEquiv for Vec<T> {
fn is_equiv(&self, other: &Self) -> bool {
self.len() == other.len() && izip!(self, other).all(|(lhs, rhs)| lhs.is_equiv(rhs))
}
}
impl IsEquiv for TranslationUnit {
fn is_equiv(&self, other: &Self) -> bool {
self.0.is_equiv(&other.0)

226
src/ir/equiv.rs Normal file
View File

@@ -0,0 +1,226 @@
use std::collections::VecDeque;
use itertools::izip;
use crate::ir::*;
use crate::utils::IsEquiv;
use crate::*;
impl IsEquiv for TranslationUnit {
fn is_equiv(&self, other: &Self) -> bool {
for (lhs, rhs) in izip!(&self.decls, &other.decls) {
if lhs.0 != rhs.0 {
return false;
}
if !rhs.1.is_equiv(rhs.1) {
return false;
}
}
if self.structs != other.structs {
return false;
}
true
}
}
impl IsEquiv for ir::Declaration {
fn is_equiv(&self, other: &Self) -> bool {
match (self, other) {
(
Self::Variable { dtype, initializer },
Self::Variable {
dtype: dtype_other,
initializer: initializer_other,
},
) => {
if dtype != dtype_other {
return false;
}
initializer.is_equiv(initializer_other)
}
(
Self::Function {
signature,
definition,
},
Self::Function {
signature: signature_other,
definition: definition_other,
},
) => {
if signature != signature_other {
return false;
}
definition.is_equiv(definition_other)
}
_ => false,
}
}
}
fn traverse_preorder(blocks: &BTreeMap<BlockId, Block>, bid: BlockId) -> Vec<BlockId> {
let mut result = vec![bid];
let mut queue = VecDeque::new();
queue.push_back(bid);
loop {
while let Some(bid) = queue.pop_front() {
let next = match &blocks.get(&bid).unwrap().exit {
BlockExit::Jump { arg } => vec![arg.bid],
BlockExit::ConditionalJump {
arg_then, arg_else, ..
} => vec![arg_then.bid, arg_else.bid],
BlockExit::Switch { default, cases, .. } => {
let mut next = cases.iter().map(|(_, a)| a.bid).collect::<Vec<_>>();
next.push(default.bid);
next
}
_ => Vec::new(),
};
for n in next {
if !result.contains(&n) {
result.push(n);
queue.push_back(n);
}
}
}
if let Some(bid) = blocks.keys().find(|b| !result.contains(b)) {
result.push(*bid);
queue.push_back(*bid);
} else {
break;
}
}
result
}
fn is_equiv_block(lhs: &Block, rhs: &Block, map: &HashMap<BlockId, BlockId>) -> bool {
if lhs.phinodes != rhs.phinodes {
return false;
}
if lhs.instructions != rhs.instructions {
return false;
}
is_equiv_block_exit(&lhs.exit, &rhs.exit, map)
}
fn is_equiv_block_exit(lhs: &BlockExit, rhs: &BlockExit, map: &HashMap<BlockId, BlockId>) -> bool {
match (lhs, rhs) {
(BlockExit::Jump { arg }, BlockExit::Jump { arg: arg_other }) => {
is_equiv_arg(arg, arg_other, map)
}
(
BlockExit::ConditionalJump {
condition,
arg_then,
arg_else,
},
BlockExit::ConditionalJump {
condition: condition_other,
arg_then: arg_then_other,
arg_else: arg_else_other,
},
) => {
if condition != condition_other {
return false;
}
if !is_equiv_arg(arg_then, arg_then_other, map) {
return false;
}
if !is_equiv_arg(arg_else, arg_else_other, map) {
return false;
}
true
}
(
BlockExit::Switch {
value,
default,
cases,
},
BlockExit::Switch {
value: value_other,
default: default_other,
cases: cases_other,
},
) => {
if value != value_other {
return false;
}
if !is_equiv_arg(default.deref(), default_other.deref(), map) {
return false;
}
if cases.len() != cases_other.len() {
return false;
}
for (l, r) in izip!(cases, cases_other) {
if l.0 != r.0 {
return false;
}
if !is_equiv_arg(&l.1, &r.1, map) {
return false;
}
}
true
}
_ => lhs == rhs,
}
}
fn is_equiv_arg(lhs: &JumpArg, rhs: &JumpArg, map: &HashMap<BlockId, BlockId>) -> bool {
if map.get(&lhs.bid) != Some(&rhs.bid) {
return false;
}
if lhs.args != rhs.args {
return false;
}
true
}
impl IsEquiv for ir::FunctionDefinition {
fn is_equiv(&self, other: &Self) -> bool {
if self.allocations != other.allocations {
return false;
}
if self.blocks.len() != other.blocks.len() {
return false;
}
if self.bid_init != other.bid_init {
return false;
}
let preorder = traverse_preorder(&self.blocks, self.bid_init);
let preorder_other = traverse_preorder(&other.blocks, other.bid_init);
assert_eq!(preorder.len(), preorder_other.len());
let mut map = HashMap::new();
for (f, t) in izip!(&preorder, &preorder_other) {
map.insert(*f, *t);
}
if map.get(&self.bid_init) != Some(&other.bid_init) {
return false;
}
for (f, t) in &map {
let lhs = self.blocks.get(f).unwrap();
let rhs = other.blocks.get(t).unwrap();
if !is_equiv_block(lhs, rhs, &map) {
return false;
}
}
true
}
}

View File

@@ -1,4 +1,5 @@
mod dtype;
mod equiv;
mod interp;
mod parse;
mod write_ir;

View File

@@ -178,7 +178,7 @@ pub fn test_opt<P1: AsRef<Path>, P2: AsRef<Path>, O: Optimize<ir::TranslationUni
.expect("parse failed while parsing the output from implemented printer");
opt.optimize(&mut ir);
if ir != to {
if !ir.is_equiv(&to) {
stderr()
.lock()
.write_fmt(format_args!(

View File

@@ -1,3 +1,7 @@
use itertools::izip;
use core::ops::Deref;
#[macro_export]
/// Ok or executing the given expression.
macro_rules! ok_or {
@@ -51,3 +55,35 @@ pub trait Translate<S> {
fn translate(&mut self, source: &S) -> Result<Self::Target, Self::Error>;
}
pub trait IsEquiv {
fn is_equiv(&self, other: &Self) -> bool;
}
impl<T: IsEquiv> IsEquiv for Box<T> {
fn is_equiv(&self, other: &Self) -> bool {
self.deref().is_equiv(other.deref())
}
}
impl<T: IsEquiv> IsEquiv for &T {
fn is_equiv(&self, other: &Self) -> bool {
(*self).is_equiv(*other)
}
}
impl<T: IsEquiv> IsEquiv for Option<T> {
fn is_equiv(&self, other: &Self) -> bool {
match (self, other) {
(Some(lhs), Some(rhs)) => lhs.is_equiv(rhs),
(None, None) => true,
_ => false,
}
}
}
impl<T: IsEquiv> IsEquiv for Vec<T> {
fn is_equiv(&self, other: &Self) -> bool {
self.len() == other.len() && izip!(self, other).all(|(lhs, rhs)| lhs.is_equiv(rhs))
}
}