Simplify bitwise operations

This commit is contained in:
varkor 2018-05-24 10:48:23 +01:00
parent c388c11a60
commit 97a032ebb4

View File

@ -483,11 +483,11 @@ fn all_constructors<'a, 'tcx: 'a>(cx: &mut MatchCheckCtxt<'a, 'tcx>,
ty::TyUint(_) if exhaustive_integer_patterns => { ty::TyUint(_) if exhaustive_integer_patterns => {
// FIXME(49937): refactor these bit manipulations into interpret. // FIXME(49937): refactor these bit manipulations into interpret.
let bits = cx.tcx.layout_of(ty::ParamEnv::reveal_all().and(pcx.ty)) let bits = cx.tcx.layout_of(ty::ParamEnv::reveal_all().and(pcx.ty))
.unwrap().size.bits() as u32; .unwrap().size.bits() as u128;
let max = (!0u128).wrapping_shr(128 - bits); let max = !0u128 >> (128 - bits);
value_constructors = true; value_constructors = true;
vec![ConstantRange(ty::Const::from_bits(cx.tcx, 0u128, pcx.ty), vec![ConstantRange(ty::Const::from_bits(cx.tcx, 0, pcx.ty),
ty::Const::from_bits(cx.tcx, max as u128, pcx.ty), ty::Const::from_bits(cx.tcx, max, pcx.ty),
RangeEnd::Included)] RangeEnd::Included)]
} }
_ => { _ => {
@ -604,21 +604,21 @@ fn max_slice_length<'p, 'a: 'p, 'tcx: 'a, I>(
} }
/// An inclusive interval, used for precise integer exhaustiveness checking. /// An inclusive interval, used for precise integer exhaustiveness checking.
/// `Interval`s always store a contiguous range of integers. This means that /// `IntRange`s always store a contiguous range. This means that values are
/// signed values are encoded by offsetting them such that `0` represents the /// encoded such that `0` encodes the minimum value for the integer,
/// minimum value for the integer, regardless of sign. /// regardless of the signedness.
/// For example, the range `-128...127` is encoded as `0...255`. /// For example, the pattern `-128...127i8` is encoded as `0..=255`.
/// This makes comparisons and arithmetic on interval endpoints much more /// This makes comparisons and arithmetic on interval endpoints much more
/// straightforward. See `offset_sign` for the conversion technique. /// straightforward. See `encode` and `decode` for details.
struct Interval<'tcx> { struct IntRange<'tcx> {
pub range: RangeInclusive<u128>, pub range: RangeInclusive<u128>,
pub ty: Ty<'tcx>, pub ty: Ty<'tcx>,
} }
impl<'tcx> Interval<'tcx> { impl<'tcx> IntRange<'tcx> {
fn from_ctor(tcx: TyCtxt<'_, 'tcx, 'tcx>, fn from_ctor(tcx: TyCtxt<'_, 'tcx, 'tcx>,
ctor: &Constructor<'tcx>) ctor: &Constructor<'tcx>)
-> Option<Interval<'tcx>> { -> Option<IntRange<'tcx>> {
match ctor { match ctor {
ConstantRange(lo, hi, end) => { ConstantRange(lo, hi, end) => {
assert_eq!(lo.ty, hi.ty); assert_eq!(lo.ty, hi.ty);
@ -627,13 +627,13 @@ impl<'tcx> Interval<'tcx> {
if let Some(hi) = hi.assert_bits(ty) { if let Some(hi) = hi.assert_bits(ty) {
// Perform a shift if the underlying types are signed, // Perform a shift if the underlying types are signed,
// which makes the interval arithmetic simpler. // which makes the interval arithmetic simpler.
let (lo, hi) = Self::offset_sign(tcx, ty, lo..=hi, true); let (lo, hi) = Self::encode(tcx, ty, lo..=hi);
// Make sure the interval is well-formed. // Make sure the interval is well-formed.
return if lo > hi || lo == hi && *end == RangeEnd::Excluded { return if lo > hi || lo == hi && *end == RangeEnd::Excluded {
None None
} else { } else {
let offset = (*end == RangeEnd::Excluded) as u128; let offset = (*end == RangeEnd::Excluded) as u128;
Some(Interval { range: lo..=(hi - offset), ty }) Some(IntRange { range: lo..=(hi - offset), ty })
}; };
} }
} }
@ -642,8 +642,8 @@ impl<'tcx> Interval<'tcx> {
ConstantValue(val) => { ConstantValue(val) => {
let ty = val.ty; let ty = val.ty;
if let Some(val) = val.assert_bits(ty) { if let Some(val) = val.assert_bits(ty) {
let (lo, hi) = Self::offset_sign(tcx, ty, val..=val, true); let (lo, hi) = Self::encode(tcx, ty, val..=val);
Some(Interval { range: lo..=hi, ty }) Some(IntRange { range: lo..=hi, ty })
} else { } else {
None None
} }
@ -654,7 +654,7 @@ impl<'tcx> Interval<'tcx> {
} }
} }
fn offset_sign(tcx: TyCtxt<'_, 'tcx, 'tcx>, fn convert(tcx: TyCtxt<'_, 'tcx, 'tcx>,
ty: Ty<'tcx>, ty: Ty<'tcx>,
range: RangeInclusive<u128>, range: RangeInclusive<u128>,
encode: bool) encode: bool)
@ -670,13 +670,14 @@ impl<'tcx> Interval<'tcx> {
let bits = tcx.layout_of(ty::ParamEnv::reveal_all().and(ty)) let bits = tcx.layout_of(ty::ParamEnv::reveal_all().and(ty))
.unwrap().size.bits() as u128; .unwrap().size.bits() as u128;
let min = 1u128 << (bits - 1); let min = 1u128 << (bits - 1);
let shift = 1u128.overflowing_shl(bits as u32); let mask = !0u128 >> (128 - bits);
let mask = shift.0.wrapping_sub(1 + (shift.1 as u128));
if encode { if encode {
let offset = |x: u128| x.wrapping_sub(min) & mask; let offset = |x: u128| x.wrapping_sub(min) & mask;
(offset(lo), offset(hi)) (offset(lo), offset(hi))
} else { } else {
let offset = |x: u128| { let offset = |x: u128| {
// FIXME: this shouldn't be necessary once `print_miri_value`
// sign-extends `TyInt`.
interpret::sign_extend(tcx, x.wrapping_add(min) & mask, ty) interpret::sign_extend(tcx, x.wrapping_add(min) & mask, ty)
.expect("layout error for TyInt") .expect("layout error for TyInt")
}; };
@ -686,10 +687,24 @@ impl<'tcx> Interval<'tcx> {
ty::TyUint(_) | ty::TyChar => { ty::TyUint(_) | ty::TyChar => {
(lo, hi) (lo, hi)
} }
_ => bug!("`Interval` should only contain integer types") _ => bug!("`IntRange` should only contain integer types")
} }
} }
fn encode(tcx: TyCtxt<'_, 'tcx, 'tcx>,
ty: Ty<'tcx>,
range: RangeInclusive<u128>)
-> (u128, u128) {
Self::convert(tcx, ty, range, true)
}
fn decode(tcx: TyCtxt<'_, 'tcx, 'tcx>,
ty: Ty<'tcx>,
range: RangeInclusive<u128>)
-> (u128, u128) {
Self::convert(tcx, ty, range, false)
}
fn into_inner(self) -> (u128, u128) { fn into_inner(self) -> (u128, u128) {
self.range.into_inner() self.range.into_inner()
} }
@ -702,10 +717,10 @@ fn ranges_subtract_pattern<'a, 'tcx>(cx: &mut MatchCheckCtxt<'a, 'tcx>,
pat_ctor: &Constructor<'tcx>, pat_ctor: &Constructor<'tcx>,
ranges: Vec<Constructor<'tcx>>) ranges: Vec<Constructor<'tcx>>)
-> Vec<Constructor<'tcx>> { -> Vec<Constructor<'tcx>> {
if let Some(pat_interval) = Interval::from_ctor(cx.tcx, pat_ctor) { if let Some(pat_interval) = IntRange::from_ctor(cx.tcx, pat_ctor) {
let mut remaining_ranges = vec![]; let mut remaining_ranges = vec![];
let mut ranges: Vec<_> = ranges.into_iter().filter_map(|r| { let mut ranges: Vec<_> = ranges.into_iter().filter_map(|r| {
Interval::from_ctor(cx.tcx, &r).map(|i| i.into_inner()) IntRange::from_ctor(cx.tcx, &r).map(|i| i.into_inner())
}).collect(); }).collect();
let ty = pat_interval.ty; let ty = pat_interval.ty;
let (pat_interval_lo, pat_interval_hi) = pat_interval.into_inner(); let (pat_interval_lo, pat_interval_hi) = pat_interval.into_inner();
@ -729,7 +744,7 @@ fn ranges_subtract_pattern<'a, 'tcx>(cx: &mut MatchCheckCtxt<'a, 'tcx>,
} }
// Convert the remaining ranges from pairs to inclusive `ConstantRange`s. // Convert the remaining ranges from pairs to inclusive `ConstantRange`s.
remaining_ranges.into_iter().map(|r| { remaining_ranges.into_iter().map(|r| {
let (lo, hi) = Interval::offset_sign(cx.tcx, ty, r, false); let (lo, hi) = IntRange::decode(cx.tcx, ty, r);
ConstantRange(ty::Const::from_bits(cx.tcx, lo, ty), ConstantRange(ty::Const::from_bits(cx.tcx, lo, ty),
ty::Const::from_bits(cx.tcx, hi, ty), ty::Const::from_bits(cx.tcx, hi, ty),
RangeEnd::Included) RangeEnd::Included)