-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Introduce a wrapper for "typed valtrees" and properly check the type before extracting the value #136180
Introduce a wrapper for "typed valtrees" and properly check the type before extracting the value #136180
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,6 @@ use rustc_error_messages::MultiSpan; | |
use rustc_macros::HashStable; | ||
use rustc_type_ir::{self as ir, TypeFlags, WithCachedTypeInfo}; | ||
|
||
use crate::mir::interpret::Scalar; | ||
use crate::ty::{self, Ty, TyCtxt}; | ||
|
||
mod int; | ||
|
@@ -110,8 +109,8 @@ impl<'tcx> Const<'tcx> { | |
} | ||
|
||
#[inline] | ||
pub fn new_value(tcx: TyCtxt<'tcx>, val: ty::ValTree<'tcx>, ty: Ty<'tcx>) -> Const<'tcx> { | ||
Const::new(tcx, ty::ConstKind::Value(ty, val)) | ||
pub fn new_value(tcx: TyCtxt<'tcx>, valtree: ty::ValTree<'tcx>, ty: Ty<'tcx>) -> Const<'tcx> { | ||
Const::new(tcx, ty::ConstKind::Value(ty::Value { ty, valtree })) | ||
} | ||
|
||
#[inline] | ||
|
@@ -214,47 +213,31 @@ impl<'tcx> Const<'tcx> { | |
Self::from_bits(tcx, n as u128, ty::TypingEnv::fully_monomorphized(), tcx.types.usize) | ||
} | ||
|
||
/// Panics if self.kind != ty::ConstKind::Value | ||
pub fn to_valtree(self) -> (ty::ValTree<'tcx>, Ty<'tcx>) { | ||
/// Panics if `self.kind != ty::ConstKind::Value`. | ||
pub fn to_value(self) -> ty::Value<'tcx> { | ||
match self.kind() { | ||
ty::ConstKind::Value(ty, valtree) => (valtree, ty), | ||
ty::ConstKind::Value(cv) => cv, | ||
_ => bug!("expected ConstKind::Value, got {:?}", self.kind()), | ||
} | ||
} | ||
|
||
/// Attempts to convert to a `ValTree` | ||
pub fn try_to_valtree(self) -> Option<(ty::ValTree<'tcx>, Ty<'tcx>)> { | ||
/// Attempts to convert to a value. | ||
/// | ||
/// Note that this does not evaluate the constant. | ||
pub fn try_to_value(self) -> Option<ty::Value<'tcx>> { | ||
match self.kind() { | ||
ty::ConstKind::Value(ty, valtree) => Some((valtree, ty)), | ||
ty::ConstKind::Value(cv) => Some(cv), | ||
_ => None, | ||
} | ||
} | ||
|
||
#[inline] | ||
pub fn try_to_scalar(self) -> Option<(Scalar, Ty<'tcx>)> { | ||
let (valtree, ty) = self.try_to_valtree()?; | ||
Some((valtree.try_to_scalar()?, ty)) | ||
} | ||
|
||
pub fn try_to_bool(self) -> Option<bool> { | ||
self.try_to_valtree()?.0.try_to_scalar_int()?.try_to_bool().ok() | ||
} | ||
|
||
/// Convenience method to extract the value of a usize constant, | ||
/// useful to get the length of an array type. | ||
/// | ||
/// Note that this does not evaluate the constant. | ||
#[inline] | ||
pub fn try_to_target_usize(self, tcx: TyCtxt<'tcx>) -> Option<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. Keeping this on Seems reasonable to me 🤔 can a comment be added to state that since it doesn't seem unlikely that someone might come across this and be confused why it's the way it is 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.
Yeah, this is used all over the place, including codegen, mir opts and clippy lints.
👍 |
||
self.try_to_valtree()?.0.try_to_target_usize(tcx) | ||
} | ||
|
||
/// Attempts to evaluate the given constant to bits. Can fail to evaluate in the presence of | ||
/// generics (or erroneous code) or if the value can't be represented as bits (e.g. because it | ||
/// contains const generic parameters or pointers). | ||
#[inline] | ||
pub fn try_to_bits(self, tcx: TyCtxt<'tcx>, typing_env: ty::TypingEnv<'tcx>) -> Option<u128> { | ||
let (scalar, ty) = self.try_to_scalar()?; | ||
let scalar = scalar.try_to_scalar_int().ok()?; | ||
let input = typing_env.with_post_analysis_normalized(tcx).as_query_input(ty); | ||
let size = tcx.layout_of(input).ok()?.size; | ||
Some(scalar.to_bits(size)) | ||
self.try_to_value()?.try_to_target_usize(tcx) | ||
} | ||
|
||
pub fn is_ct_infer(self) -> bool { | ||
|
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.
Leave a FIXME to change this to take the
cv
instead of its components