-
Notifications
You must be signed in to change notification settings - Fork 13.4k
Make pointer offset methods/intrinsics const #71500
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
8 commits
Select commit
Hold shift + click to select a range
08df311
librustc_mir: Add support for const fn offset/arith_offset
josephlr 9b3dfd8
core: Make pointer offset methods "const fn"
josephlr 88a37a2
test/ui/consts: Add tests for const ptr offsets
josephlr 6b20f58
miri_unleached: We now allow offset in const fn
josephlr 55577b4
librustc_mir: Add back use statement
josephlr 6367b54
librustc_middle: Add function for computing unsigned abs
josephlr 71ef841
Add checks and tests for computing abs(offset_bytes)
josephlr 7d5415b
Add additional checks for isize overflow
josephlr 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
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,39 +1,28 @@ | ||
error[E0080]: could not evaluate static initializer | ||
--> $DIR/ptr_arith.rs:10:14 | ||
--> $DIR/ptr_arith.rs:9:14 | ||
| | ||
LL | let _v = x == x; | ||
| ^^^^^^ "pointer arithmetic or comparison" needs an rfc before being allowed inside constants | ||
|
||
error[E0080]: could not evaluate static initializer | ||
--> $DIR/ptr_arith.rs:17:14 | ||
--> $DIR/ptr_arith.rs:16:14 | ||
| | ||
LL | let _v = x + 0; | ||
| ^^^^^ "pointer-to-integer cast" needs an rfc before being allowed inside constants | ||
|
||
error[E0080]: could not evaluate static initializer | ||
--> $DIR/ptr_arith.rs:24:14 | ||
| | ||
LL | let _v = core::intrinsics::offset(x, 0); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ "calling intrinsic `offset`" needs an rfc before being allowed inside constants | ||
|
||
warning: skipping const checks | ||
| | ||
help: skipping check for `const_compare_raw_pointers` feature | ||
--> $DIR/ptr_arith.rs:10:14 | ||
--> $DIR/ptr_arith.rs:9:14 | ||
| | ||
LL | let _v = x == x; | ||
| ^^^^^^ | ||
help: skipping check that does not even have a feature gate | ||
--> $DIR/ptr_arith.rs:16:20 | ||
--> $DIR/ptr_arith.rs:15:20 | ||
| | ||
LL | let x: usize = std::mem::transmute(&0); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^ | ||
help: skipping check that does not even have a feature gate | ||
--> $DIR/ptr_arith.rs:24:14 | ||
| | ||
LL | let _v = core::intrinsics::offset(x, 0); | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
||
error: aborting due to 3 previous errors; 1 warning emitted | ||
error: aborting due to 2 previous errors; 1 warning emitted | ||
|
||
For more information about this error, try `rustc --explain E0080`. |
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.