Skip to content

Commit

Permalink
Revert "feat: improve SSA type-awareness in EQ and MUL instructions (#…
Browse files Browse the repository at this point in the history
…4691)"

This reverts commit 669f1a0.
  • Loading branch information
jfecher committed Apr 2, 2024
1 parent 420e56d commit 228e150
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions compiler/noirc_evaluator/src/ssa/ir/instruction/binary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,12 +130,6 @@ impl Binary {
let zero = dfg.make_constant(FieldElement::zero(), operand_type);
return SimplifyResult::SimplifiedTo(zero);
}
if dfg.resolve(self.lhs) == dfg.resolve(self.rhs)
&& dfg.get_value_max_num_bits(self.lhs) == 1
{
// Squaring a boolean value is a noop.
return SimplifyResult::SimplifiedTo(self.lhs);
}
}
BinaryOp::Div => {
if rhs_is_one {
Expand Down Expand Up @@ -170,22 +164,6 @@ impl Binary {
let one = dfg.make_constant(FieldElement::one(), Type::bool());
return SimplifyResult::SimplifiedTo(one);
}

if operand_type.is_unsigned() {
// If we're comparing a variable against a constant value which lies outside of the range of
// values which the variable's type can take, we can assume that the equality will be false.
let constant = lhs.or(rhs);
let non_constant = if lhs.is_some() { self.rhs } else { self.lhs };
if let Some(constant) = constant {
let max_possible_value =
2u128.pow(dfg.get_value_max_num_bits(non_constant)) - 1;
if constant > max_possible_value.into() {
let zero = dfg.make_constant(FieldElement::zero(), Type::bool());
return SimplifyResult::SimplifiedTo(zero);
}
}
}

if operand_type == Type::bool() {
// Simplify forms of `(boolean == true)` into `boolean`
if lhs_is_one {
Expand Down

0 comments on commit 228e150

Please sign in to comment.