Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions compiler/noirc_evaluator/src/ssa/ir/instruction/binary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,23 @@ impl Binary {
let zero = dfg.make_constant(FieldElement::zero(), operand_type);
return SimplifyResult::SimplifiedTo(zero);
}
if operand_type.is_unsigned() {
// lhs % 2**bit_size is equivalent to truncating `lhs` to `bit_size` bits.
// We then convert to a truncation for consistency, allowing more optimizations.
if let Some(modulus) = rhs {
let modulus = modulus.to_u128();
if modulus.is_power_of_two() {
let bit_size = modulus.ilog2();
return SimplifyResult::SimplifiedToInstruction(
Instruction::Truncate {
value: self.lhs,
bit_size,
max_bit_size: operand_type.bit_size(),
},
);
}
}
}
}
BinaryOp::Eq => {
if dfg.resolve(self.lhs) == dfg.resolve(self.rhs) {
Expand Down