-
Notifications
You must be signed in to change notification settings - Fork 388
feat: add ConstrainNotEqual instruction
#7032
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
2421b59
feat: add `ConstrainNotEqual` instruction
TomAFrench 35266aa
.
TomAFrench b51e5c1
.
TomAFrench a1dbf6c
chore: update documentation
TomAFrench 81a3e8f
Merge branch 'master' into tf/improve-inequality-constraints
TomAFrench 95cac64
Update compiler/noirc_evaluator/src/ssa/opt/make_constrain_not_equal.rs
TomAFrench fe9f983
Merge branch 'master' into tf/improve-inequality-constraints
TomAFrench 984c9cb
Merge branch 'master' into tf/improve-inequality-constraints
TomAFrench a6095f3
Merge branch 'master' into tf/improve-inequality-constraints
TomAFrench 3ee947e
.
TomAFrench 481b2a8
Merge branch 'master' into tf/improve-inequality-constraints
TomAFrench File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
72 changes: 72 additions & 0 deletions
72
compiler/noirc_evaluator/src/ssa/opt/make_constrain_not_equal.rs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,72 @@ | ||
| use acvm::AcirField; | ||
|
|
||
| use crate::ssa::{ | ||
| ir::{ | ||
| function::Function, | ||
| instruction::{Binary, BinaryOp, Instruction}, | ||
| value::Value, | ||
| }, | ||
| ssa_gen::Ssa, | ||
| }; | ||
|
|
||
| impl Ssa { | ||
| /// A simple SSA pass to go through each [`Instruction::Constrain`], determine whether it's asserting | ||
| /// two values are not equal, and if so replace it with a [`Instruction::ConstrainNotEqual`]. | ||
| /// | ||
| /// Note that this pass must be placed after CFG flattening as the flattening pass cannot | ||
| /// handle this instruction. | ||
| #[tracing::instrument(level = "trace", skip(self))] | ||
| pub(crate) fn make_constrain_not_equal_instructions(mut self) -> Ssa { | ||
| for function in self.functions.values_mut() { | ||
| function.make_constrain_not_equal(); | ||
| } | ||
| self | ||
| } | ||
| } | ||
|
|
||
| impl Function { | ||
| pub(crate) fn make_constrain_not_equal(&mut self) { | ||
| if !self.runtime().is_acir() { | ||
| return; | ||
| } | ||
|
|
||
| for block in self.reachable_blocks() { | ||
| let instructions = self.dfg[block].instructions().to_vec(); | ||
|
|
||
| for instruction in instructions { | ||
| let constrain_ne: Instruction = match &self.dfg[instruction] { | ||
| Instruction::Constrain(lhs, rhs, msg) => { | ||
| if self | ||
| .dfg | ||
| .get_numeric_constant(*rhs) | ||
| .map_or(false, |constant| constant.is_zero()) | ||
aakoshh marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| { | ||
| if let Value::Instruction { instruction, .. } = | ||
| &self.dfg[self.dfg.resolve(*lhs)] | ||
| { | ||
| if let Instruction::Binary(Binary { | ||
| lhs, | ||
| rhs, | ||
| operator: BinaryOp::Eq, | ||
| .. | ||
| }) = self.dfg[*instruction] | ||
| { | ||
| Instruction::ConstrainNotEqual(lhs, rhs, msg.clone()) | ||
| } else { | ||
| continue; | ||
| } | ||
| } else { | ||
| continue; | ||
| } | ||
| } else { | ||
| continue; | ||
| } | ||
| } | ||
| _ => continue, | ||
| }; | ||
|
|
||
| self.dfg[instruction] = constrain_ne; | ||
| } | ||
| } | ||
| } | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.