-
Notifications
You must be signed in to change notification settings - Fork 405
feat: add comptime support for modulus_* compiler builtins
#5530
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 3 commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
6913148
feat: run `is_bn254` during comptime
TomAFrench 7d902a8
fmt
TomAFrench 69e993d
.
TomAFrench 8598a70
chore: alphabetical
TomAFrench a69e35c
chore: more alphabetical
TomAFrench 8d6ba01
.
TomAFrench 903a08a
.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,20 @@ | ||
| global BN254_MODULUS_BE_BYTES: [u8] = &[ | ||
| comptime global BN254_MODULUS_BE_BYTES: [u8] = &[ | ||
| 48, 100, 78, 114, 225, 49, 160, 41, 184, 80, 69, 182, 129, 129, 88, 93, 40, 51, 232, 72, 121, 185, 112, 145, 67, 225, 245, 147, 240, 0, 0, 1 | ||
| ]; | ||
|
|
||
| pub fn is_bn254() -> bool { | ||
| crate::field::modulus_be_bytes() == BN254_MODULUS_BE_BYTES | ||
| comptime { | ||
| // We can't use the `Eq` trait here due to limitations on calling non-comptime functions | ||
| // defined within the same crate. | ||
| let mut eq = true; | ||
|
|
||
| let modulus_be_bytes = crate::field::modulus_be_bytes(); | ||
| // We can't do `BN254_MODULUS_BE_BYTES.len()` due to limitations on calling non-comptime functions. | ||
| assert_eq(crate::field::modulus_num_bits(), 254); | ||
| for i in 0..32 { | ||
| eq &= modulus_be_bytes[i] == BN254_MODULUS_BE_BYTES[i]; | ||
| } | ||
|
|
||
| eq | ||
| } | ||
| } |
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
7 changes: 7 additions & 0 deletions
7
test_programs/execution_success/comptime_slice_equality/Nargo.toml
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,7 @@ | ||
| [package] | ||
| name = "comptime_slice_equality" | ||
| type = "bin" | ||
| authors = [""] | ||
| compiler_version = ">=0.31.0" | ||
|
|
||
| [dependencies] |
5 changes: 5 additions & 0 deletions
5
test_programs/execution_success/comptime_slice_equality/src/main.nr
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,5 @@ | ||
| fn main() { | ||
| comptime { | ||
| assert_eq(&[1], &[1]); | ||
| } | ||
| } |
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.