-
Notifications
You must be signed in to change notification settings - Fork 12.8k
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
Simplify ConstValue::ScalarPair
#57442
Merged
Merged
Changes from all commits
Commits
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 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 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 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 |
---|---|---|
|
@@ -22,22 +22,28 @@ pub enum ConstValue<'tcx> { | |
/// Not using the enum `Value` to encode that this must not be `Undef` | ||
Scalar(Scalar), | ||
|
||
/// Used only for *fat pointers* with layout::abi::ScalarPair | ||
/// Used only for slices and strings (`&[T]`, `&str`, `*const [T]`, `*mut str`, `Box<str>`, ...) | ||
/// | ||
/// Needed for pattern matching code related to slices and strings. | ||
ScalarPair(Scalar, Scalar), | ||
/// Empty slices don't necessarily have an address backed by an `AllocId`, thus we also need to | ||
/// enable integer pointers. The `Scalar` type covers exactly those two cases. While we could | ||
/// create dummy-`AllocId`s, the additional code effort for the conversions doesn't seem worth | ||
/// it. | ||
Slice(Scalar, u64), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I like this name change;
RalfJung marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
/// An allocation + offset into the allocation. | ||
/// Invariant: The AllocId matches the allocation. | ||
ByRef(AllocId, &'tcx Allocation, Size), | ||
} | ||
|
||
#[cfg(target_arch = "x86_64")] | ||
static_assert!(CONST_SIZE: ::std::mem::size_of::<ConstValue<'static>>() == 40); | ||
|
||
impl<'tcx> ConstValue<'tcx> { | ||
#[inline] | ||
pub fn try_to_scalar(&self) -> Option<Scalar> { | ||
match *self { | ||
ConstValue::ByRef(..) | | ||
ConstValue::ScalarPair(..) => None, | ||
ConstValue::Slice(..) => None, | ||
ConstValue::Scalar(val) => Some(val), | ||
} | ||
} | ||
|
@@ -56,17 +62,8 @@ impl<'tcx> ConstValue<'tcx> { | |
pub fn new_slice( | ||
val: Scalar, | ||
len: u64, | ||
cx: &impl HasDataLayout | ||
) -> Self { | ||
ConstValue::ScalarPair(val, Scalar::Bits { | ||
bits: len as u128, | ||
size: cx.data_layout().pointer_size.bytes() as u8, | ||
}) | ||
} | ||
|
||
#[inline] | ||
pub fn new_dyn_trait(val: Scalar, vtable: Pointer) -> Self { | ||
ConstValue::ScalarPair(val, Scalar::Ptr(vtable)) | ||
ConstValue::Slice(val, len) | ||
} | ||
} | ||
|
||
|
@@ -90,6 +87,9 @@ pub enum Scalar<Tag=(), Id=AllocId> { | |
Ptr(Pointer<Tag, Id>), | ||
} | ||
|
||
#[cfg(target_arch = "x86_64")] | ||
static_assert!(SCALAR_SIZE: ::std::mem::size_of::<Scalar>() == 24); | ||
|
||
impl<Tag> fmt::Display for Scalar<Tag> { | ||
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { | ||
match self { | ||
|
This file contains 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 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 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 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 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 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 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 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 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 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 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.
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.
The comment above needs an update as there is no more
ScalarPair