-
-
Notifications
You must be signed in to change notification settings - Fork 15.5k
Output deterministic AllocIds when emitting MIR
#161768
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
Closed
Closed
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
2016bf9
Add test for parallel compiler reproducible build
aerooneqq 5fa08c7
Fix non-determinism in encoding of syntax contexts
aerooneqq a34d24f
Don't use `IndexVec`, use `FxHashMap` instead
aerooneqq 6e7643a
Output deterministic `AllocId`s when emitting MIR
aerooneqq 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
5 changes: 5 additions & 0 deletions
5
tests/run-make/parallel-reproducible-build/derives-issue-129094.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,5 @@ | ||
| #![crate_type = "lib"] | ||
| #[derive(Clone, Copy, Hash, PartialEq, PartialOrd)] | ||
| struct PackedPoint { | ||
| x: u32, | ||
| } |
24 changes: 24 additions & 0 deletions
24
tests/run-make/parallel-reproducible-build/mir-alloc-ids-issue-154278.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,24 @@ | ||
| pub struct A<T> { | ||
| pub v: T, | ||
| } | ||
| pub struct B<T> { | ||
| pub v: T, | ||
| } | ||
|
|
||
| pub mod test { | ||
| pub struct A<T> { | ||
| pub v: T, | ||
| } | ||
|
|
||
| impl<T> A<T> { | ||
| pub fn foo(&self) -> isize { | ||
| static a: isize = 5; | ||
| return a; | ||
| } | ||
|
|
||
| pub fn bar(&self) -> isize { | ||
| static a: isize = 6; | ||
| return a; | ||
| } | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How would you show the original alloc ids if you need them for debugging? Also this would lose the ability to tell alloc ids between different mir bodies apart, right?
View changes since the review
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe with special --emit mode (like
--emit=mir-original).Yes, and I am now working on it by trying to overwrite
tcx.alloc_map.to_allocfor consistent remapping across different bodies and for correct access to allocations throughtcx.try_get_global_alloc(unfortunatelyAllocIdcan randomly appear inDebugimplementations and maybe somewhere else; if it tries to access allocation through remapped allocation id this will lead to an error), however at this stage I don't like the resulting solution from many points of view, so I am not sure that this problem can be solved with this approach.