Skip to content

Commit 7afed92

Browse files
authored
Rollup merge of #109475 - scottmcm:simpler-shifts, r=WaffleLapkin
Simpler checked shifts in MIR building Doing masking to check unsigned shift amounts is overcomplicated; just comparing the shift directly saves a statement and a temporary, as well as is much easier to read as a human. And shifting by unsigned is the canonical case -- notably, all the library shifting methods (that don't support every type) take shift RHSs as `u32` -- so we might as well make that simpler since it's easy to do so. This PR also changes *signed* shift amounts to `IntToInt` casts and then uses the same check as for unsigned. The bit-masking is a nice trick, but for example LLVM actually canonicalizes it to an unsigned comparison anyway <https://rust.godbolt.org/z/8h59fMGT4> so I don't think it's worth the effort and the extra `Constant`. (If MIR's `assert` was `assert_nz` then the masking might make sense, but when the `!=` uses another statement I think the comparison is better.) To review, I suggest looking at 2ee0468 first -- that's the interesting code change and has a MIR diff. My favourite part of the diff: ```diff - _20 = BitAnd(_19, const 340282366920938463463374607431768211448_u128); // scope 0 at $DIR/shifts.rs:+2:34: +2:44 - _21 = Ne(move _20, const 0_u128); // scope 0 at $DIR/shifts.rs:+2:34: +2:44 - assert(!move _21, "attempt to shift right by `{}`, which would overflow", _19) -> [success: bb3, unwind: bb7]; // scope 0 at $DIR/shifts.rs:+2:34: +2:44 + _18 = Lt(_17, const 8_u128); // scope 0 at $DIR/shifts.rs:+2:34: +2:44 + assert(move _18, "attempt to shift right by `{}`, which would overflow", _17) -> [success: bb3, unwind: bb7]; // scope 0 at $DIR/shifts.rs:+2:34: +2:44 ```
2 parents 5d28853 + b537e6b commit 7afed92

File tree

6 files changed

+371
-37
lines changed

6 files changed

+371
-37
lines changed

compiler/rustc_mir_build/src/build/expr/as_rvalue.rs

+33-23
Original file line numberDiff line numberDiff line change
@@ -566,41 +566,51 @@ impl<'a, 'tcx> Builder<'a, 'tcx> {
566566
Rvalue::Use(Operand::Move(val))
567567
}
568568
BinOp::Shl | BinOp::Shr if self.check_overflow && ty.is_integral() => {
569-
// Consider that the shift overflows if `rhs < 0` or `rhs >= bits`.
570-
// This can be encoded as a single operation as `(rhs & -bits) != 0`.
571-
let (size, _) = ty.int_size_and_signed(self.tcx);
572-
let bits = size.bits();
573-
debug_assert!(bits.is_power_of_two());
574-
let mask = !((bits - 1) as u128);
575-
569+
// For an unsigned RHS, the shift is in-range for `rhs < bits`.
570+
// For a signed RHS, `IntToInt` cast to the equivalent unsigned
571+
// type and do that same comparison. Because the type is the
572+
// same size, there's no negative shift amount that ends up
573+
// overlapping with valid ones, thus it catches negatives too.
574+
let (lhs_size, _) = ty.int_size_and_signed(self.tcx);
576575
let rhs_ty = rhs.ty(&self.local_decls, self.tcx);
577576
let (rhs_size, _) = rhs_ty.int_size_and_signed(self.tcx);
578-
let mask = Operand::const_from_scalar(
577+
578+
let (unsigned_rhs, unsigned_ty) = match rhs_ty.kind() {
579+
ty::Uint(_) => (rhs.to_copy(), rhs_ty),
580+
ty::Int(int_width) => {
581+
let uint_ty = self.tcx.mk_mach_uint(int_width.to_unsigned());
582+
let rhs_temp = self.temp(uint_ty, span);
583+
self.cfg.push_assign(
584+
block,
585+
source_info,
586+
rhs_temp,
587+
Rvalue::Cast(CastKind::IntToInt, rhs.to_copy(), uint_ty),
588+
);
589+
(Operand::Move(rhs_temp), uint_ty)
590+
}
591+
_ => unreachable!("only integers are shiftable"),
592+
};
593+
594+
// This can't overflow because the largest shiftable types are 128-bit,
595+
// which fits in `u8`, the smallest possible `unsigned_ty`.
596+
// (And `from_uint` will `bug!` if that's ever no longer true.)
597+
let lhs_bits = Operand::const_from_scalar(
579598
self.tcx,
580-
rhs_ty,
581-
Scalar::from_uint(rhs_size.truncate(mask), rhs_size),
599+
unsigned_ty,
600+
Scalar::from_uint(lhs_size.bits(), rhs_size),
582601
span,
583602
);
584603

585-
let outer_bits = self.temp(rhs_ty, span);
586-
self.cfg.push_assign(
587-
block,
588-
source_info,
589-
outer_bits,
590-
Rvalue::BinaryOp(BinOp::BitAnd, Box::new((rhs.to_copy(), mask))),
591-
);
592-
593-
let overflows = self.temp(bool_ty, span);
594-
let zero = self.zero_literal(span, rhs_ty);
604+
let inbounds = self.temp(bool_ty, span);
595605
self.cfg.push_assign(
596606
block,
597607
source_info,
598-
overflows,
599-
Rvalue::BinaryOp(BinOp::Ne, Box::new((Operand::Move(outer_bits), zero))),
608+
inbounds,
609+
Rvalue::BinaryOp(BinOp::Lt, Box::new((unsigned_rhs, lhs_bits))),
600610
);
601611

602612
let overflow_err = AssertKind::Overflow(op, lhs.to_copy(), rhs.to_copy());
603-
block = self.assert(block, Operand::Move(overflows), false, overflow_err, span);
613+
block = self.assert(block, Operand::Move(inbounds), true, overflow_err, span);
604614
Rvalue::BinaryOp(op, Box::new((lhs, rhs)))
605615
}
606616
BinOp::Div | BinOp::Rem if ty.is_integral() => {

compiler/rustc_type_ir/src/lib.rs

+22
Original file line numberDiff line numberDiff line change
@@ -432,6 +432,17 @@ impl IntTy {
432432
_ => *self,
433433
}
434434
}
435+
436+
pub fn to_unsigned(self) -> UintTy {
437+
match self {
438+
IntTy::Isize => UintTy::Usize,
439+
IntTy::I8 => UintTy::U8,
440+
IntTy::I16 => UintTy::U16,
441+
IntTy::I32 => UintTy::U32,
442+
IntTy::I64 => UintTy::U64,
443+
IntTy::I128 => UintTy::U128,
444+
}
445+
}
435446
}
436447

437448
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Copy, Debug)]
@@ -479,6 +490,17 @@ impl UintTy {
479490
_ => *self,
480491
}
481492
}
493+
494+
pub fn to_signed(self) -> IntTy {
495+
match self {
496+
UintTy::Usize => IntTy::Isize,
497+
UintTy::U8 => IntTy::I8,
498+
UintTy::U16 => IntTy::I16,
499+
UintTy::U32 => IntTy::I32,
500+
UintTy::U64 => IntTy::I64,
501+
UintTy::U128 => IntTy::I128,
502+
}
503+
}
482504
}
483505

484506
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]

tests/mir-opt/building/shifts.rs

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// compile-flags: -C debug-assertions=yes
2+
3+
// EMIT_MIR shifts.shift_signed.built.after.mir
4+
fn shift_signed(small: i8, big: u128, a: i8, b: i32, c: i128) -> ([i8; 3], [u128; 3]) {
5+
(
6+
[small >> a, small >> b, small >> c],
7+
[big << a, big << b, big << c],
8+
)
9+
}
10+
11+
// EMIT_MIR shifts.shift_unsigned.built.after.mir
12+
fn shift_unsigned(small: u8, big: i128, a: u8, b: u32, c: u128) -> ([u8; 3], [i128; 3]) {
13+
(
14+
[small >> a, small >> b, small >> c],
15+
[big << a, big << b, big << c],
16+
)
17+
}
18+
19+
fn main() {
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,147 @@
1+
// MIR for `shift_signed` after built
2+
3+
fn shift_signed(_1: i8, _2: u128, _3: i8, _4: i32, _5: i128) -> ([i8; 3], [u128; 3]) {
4+
debug small => _1; // in scope 0 at $DIR/shifts.rs:+0:17: +0:22
5+
debug big => _2; // in scope 0 at $DIR/shifts.rs:+0:28: +0:31
6+
debug a => _3; // in scope 0 at $DIR/shifts.rs:+0:39: +0:40
7+
debug b => _4; // in scope 0 at $DIR/shifts.rs:+0:46: +0:47
8+
debug c => _5; // in scope 0 at $DIR/shifts.rs:+0:54: +0:55
9+
let mut _0: ([i8; 3], [u128; 3]); // return place in scope 0 at $DIR/shifts.rs:+0:66: +0:86
10+
let mut _6: [i8; 3]; // in scope 0 at $DIR/shifts.rs:+2:9: +2:45
11+
let mut _7: i8; // in scope 0 at $DIR/shifts.rs:+2:10: +2:20
12+
let mut _8: i8; // in scope 0 at $DIR/shifts.rs:+2:10: +2:15
13+
let mut _9: i8; // in scope 0 at $DIR/shifts.rs:+2:19: +2:20
14+
let mut _10: u8; // in scope 0 at $DIR/shifts.rs:+2:10: +2:20
15+
let mut _11: bool; // in scope 0 at $DIR/shifts.rs:+2:10: +2:20
16+
let mut _12: i8; // in scope 0 at $DIR/shifts.rs:+2:22: +2:32
17+
let mut _13: i8; // in scope 0 at $DIR/shifts.rs:+2:22: +2:27
18+
let mut _14: i32; // in scope 0 at $DIR/shifts.rs:+2:31: +2:32
19+
let mut _15: u32; // in scope 0 at $DIR/shifts.rs:+2:22: +2:32
20+
let mut _16: bool; // in scope 0 at $DIR/shifts.rs:+2:22: +2:32
21+
let mut _17: i8; // in scope 0 at $DIR/shifts.rs:+2:34: +2:44
22+
let mut _18: i8; // in scope 0 at $DIR/shifts.rs:+2:34: +2:39
23+
let mut _19: i128; // in scope 0 at $DIR/shifts.rs:+2:43: +2:44
24+
let mut _20: u128; // in scope 0 at $DIR/shifts.rs:+2:34: +2:44
25+
let mut _21: bool; // in scope 0 at $DIR/shifts.rs:+2:34: +2:44
26+
let mut _22: [u128; 3]; // in scope 0 at $DIR/shifts.rs:+3:9: +3:39
27+
let mut _23: u128; // in scope 0 at $DIR/shifts.rs:+3:10: +3:18
28+
let mut _24: u128; // in scope 0 at $DIR/shifts.rs:+3:10: +3:13
29+
let mut _25: i8; // in scope 0 at $DIR/shifts.rs:+3:17: +3:18
30+
let mut _26: u8; // in scope 0 at $DIR/shifts.rs:+3:10: +3:18
31+
let mut _27: bool; // in scope 0 at $DIR/shifts.rs:+3:10: +3:18
32+
let mut _28: u128; // in scope 0 at $DIR/shifts.rs:+3:20: +3:28
33+
let mut _29: u128; // in scope 0 at $DIR/shifts.rs:+3:20: +3:23
34+
let mut _30: i32; // in scope 0 at $DIR/shifts.rs:+3:27: +3:28
35+
let mut _31: u32; // in scope 0 at $DIR/shifts.rs:+3:20: +3:28
36+
let mut _32: bool; // in scope 0 at $DIR/shifts.rs:+3:20: +3:28
37+
let mut _33: u128; // in scope 0 at $DIR/shifts.rs:+3:30: +3:38
38+
let mut _34: u128; // in scope 0 at $DIR/shifts.rs:+3:30: +3:33
39+
let mut _35: i128; // in scope 0 at $DIR/shifts.rs:+3:37: +3:38
40+
let mut _36: u128; // in scope 0 at $DIR/shifts.rs:+3:30: +3:38
41+
let mut _37: bool; // in scope 0 at $DIR/shifts.rs:+3:30: +3:38
42+
43+
bb0: {
44+
StorageLive(_6); // scope 0 at $DIR/shifts.rs:+2:9: +2:45
45+
StorageLive(_7); // scope 0 at $DIR/shifts.rs:+2:10: +2:20
46+
StorageLive(_8); // scope 0 at $DIR/shifts.rs:+2:10: +2:15
47+
_8 = _1; // scope 0 at $DIR/shifts.rs:+2:10: +2:15
48+
StorageLive(_9); // scope 0 at $DIR/shifts.rs:+2:19: +2:20
49+
_9 = _3; // scope 0 at $DIR/shifts.rs:+2:19: +2:20
50+
_10 = _9 as u8 (IntToInt); // scope 0 at $DIR/shifts.rs:+2:10: +2:20
51+
_11 = Lt(move _10, const 8_u8); // scope 0 at $DIR/shifts.rs:+2:10: +2:20
52+
assert(move _11, "attempt to shift right by `{}`, which would overflow", _9) -> [success: bb1, unwind: bb7]; // scope 0 at $DIR/shifts.rs:+2:10: +2:20
53+
}
54+
55+
bb1: {
56+
_7 = Shr(move _8, move _9); // scope 0 at $DIR/shifts.rs:+2:10: +2:20
57+
StorageDead(_9); // scope 0 at $DIR/shifts.rs:+2:19: +2:20
58+
StorageDead(_8); // scope 0 at $DIR/shifts.rs:+2:19: +2:20
59+
StorageLive(_12); // scope 0 at $DIR/shifts.rs:+2:22: +2:32
60+
StorageLive(_13); // scope 0 at $DIR/shifts.rs:+2:22: +2:27
61+
_13 = _1; // scope 0 at $DIR/shifts.rs:+2:22: +2:27
62+
StorageLive(_14); // scope 0 at $DIR/shifts.rs:+2:31: +2:32
63+
_14 = _4; // scope 0 at $DIR/shifts.rs:+2:31: +2:32
64+
_15 = _14 as u32 (IntToInt); // scope 0 at $DIR/shifts.rs:+2:22: +2:32
65+
_16 = Lt(move _15, const 8_u32); // scope 0 at $DIR/shifts.rs:+2:22: +2:32
66+
assert(move _16, "attempt to shift right by `{}`, which would overflow", _14) -> [success: bb2, unwind: bb7]; // scope 0 at $DIR/shifts.rs:+2:22: +2:32
67+
}
68+
69+
bb2: {
70+
_12 = Shr(move _13, move _14); // scope 0 at $DIR/shifts.rs:+2:22: +2:32
71+
StorageDead(_14); // scope 0 at $DIR/shifts.rs:+2:31: +2:32
72+
StorageDead(_13); // scope 0 at $DIR/shifts.rs:+2:31: +2:32
73+
StorageLive(_17); // scope 0 at $DIR/shifts.rs:+2:34: +2:44
74+
StorageLive(_18); // scope 0 at $DIR/shifts.rs:+2:34: +2:39
75+
_18 = _1; // scope 0 at $DIR/shifts.rs:+2:34: +2:39
76+
StorageLive(_19); // scope 0 at $DIR/shifts.rs:+2:43: +2:44
77+
_19 = _5; // scope 0 at $DIR/shifts.rs:+2:43: +2:44
78+
_20 = _19 as u128 (IntToInt); // scope 0 at $DIR/shifts.rs:+2:34: +2:44
79+
_21 = Lt(move _20, const 8_u128); // scope 0 at $DIR/shifts.rs:+2:34: +2:44
80+
assert(move _21, "attempt to shift right by `{}`, which would overflow", _19) -> [success: bb3, unwind: bb7]; // scope 0 at $DIR/shifts.rs:+2:34: +2:44
81+
}
82+
83+
bb3: {
84+
_17 = Shr(move _18, move _19); // scope 0 at $DIR/shifts.rs:+2:34: +2:44
85+
StorageDead(_19); // scope 0 at $DIR/shifts.rs:+2:43: +2:44
86+
StorageDead(_18); // scope 0 at $DIR/shifts.rs:+2:43: +2:44
87+
_6 = [move _7, move _12, move _17]; // scope 0 at $DIR/shifts.rs:+2:9: +2:45
88+
StorageDead(_17); // scope 0 at $DIR/shifts.rs:+2:44: +2:45
89+
StorageDead(_12); // scope 0 at $DIR/shifts.rs:+2:44: +2:45
90+
StorageDead(_7); // scope 0 at $DIR/shifts.rs:+2:44: +2:45
91+
StorageLive(_22); // scope 0 at $DIR/shifts.rs:+3:9: +3:39
92+
StorageLive(_23); // scope 0 at $DIR/shifts.rs:+3:10: +3:18
93+
StorageLive(_24); // scope 0 at $DIR/shifts.rs:+3:10: +3:13
94+
_24 = _2; // scope 0 at $DIR/shifts.rs:+3:10: +3:13
95+
StorageLive(_25); // scope 0 at $DIR/shifts.rs:+3:17: +3:18
96+
_25 = _3; // scope 0 at $DIR/shifts.rs:+3:17: +3:18
97+
_26 = _25 as u8 (IntToInt); // scope 0 at $DIR/shifts.rs:+3:10: +3:18
98+
_27 = Lt(move _26, const 128_u8); // scope 0 at $DIR/shifts.rs:+3:10: +3:18
99+
assert(move _27, "attempt to shift left by `{}`, which would overflow", _25) -> [success: bb4, unwind: bb7]; // scope 0 at $DIR/shifts.rs:+3:10: +3:18
100+
}
101+
102+
bb4: {
103+
_23 = Shl(move _24, move _25); // scope 0 at $DIR/shifts.rs:+3:10: +3:18
104+
StorageDead(_25); // scope 0 at $DIR/shifts.rs:+3:17: +3:18
105+
StorageDead(_24); // scope 0 at $DIR/shifts.rs:+3:17: +3:18
106+
StorageLive(_28); // scope 0 at $DIR/shifts.rs:+3:20: +3:28
107+
StorageLive(_29); // scope 0 at $DIR/shifts.rs:+3:20: +3:23
108+
_29 = _2; // scope 0 at $DIR/shifts.rs:+3:20: +3:23
109+
StorageLive(_30); // scope 0 at $DIR/shifts.rs:+3:27: +3:28
110+
_30 = _4; // scope 0 at $DIR/shifts.rs:+3:27: +3:28
111+
_31 = _30 as u32 (IntToInt); // scope 0 at $DIR/shifts.rs:+3:20: +3:28
112+
_32 = Lt(move _31, const 128_u32); // scope 0 at $DIR/shifts.rs:+3:20: +3:28
113+
assert(move _32, "attempt to shift left by `{}`, which would overflow", _30) -> [success: bb5, unwind: bb7]; // scope 0 at $DIR/shifts.rs:+3:20: +3:28
114+
}
115+
116+
bb5: {
117+
_28 = Shl(move _29, move _30); // scope 0 at $DIR/shifts.rs:+3:20: +3:28
118+
StorageDead(_30); // scope 0 at $DIR/shifts.rs:+3:27: +3:28
119+
StorageDead(_29); // scope 0 at $DIR/shifts.rs:+3:27: +3:28
120+
StorageLive(_33); // scope 0 at $DIR/shifts.rs:+3:30: +3:38
121+
StorageLive(_34); // scope 0 at $DIR/shifts.rs:+3:30: +3:33
122+
_34 = _2; // scope 0 at $DIR/shifts.rs:+3:30: +3:33
123+
StorageLive(_35); // scope 0 at $DIR/shifts.rs:+3:37: +3:38
124+
_35 = _5; // scope 0 at $DIR/shifts.rs:+3:37: +3:38
125+
_36 = _35 as u128 (IntToInt); // scope 0 at $DIR/shifts.rs:+3:30: +3:38
126+
_37 = Lt(move _36, const 128_u128); // scope 0 at $DIR/shifts.rs:+3:30: +3:38
127+
assert(move _37, "attempt to shift left by `{}`, which would overflow", _35) -> [success: bb6, unwind: bb7]; // scope 0 at $DIR/shifts.rs:+3:30: +3:38
128+
}
129+
130+
bb6: {
131+
_33 = Shl(move _34, move _35); // scope 0 at $DIR/shifts.rs:+3:30: +3:38
132+
StorageDead(_35); // scope 0 at $DIR/shifts.rs:+3:37: +3:38
133+
StorageDead(_34); // scope 0 at $DIR/shifts.rs:+3:37: +3:38
134+
_22 = [move _23, move _28, move _33]; // scope 0 at $DIR/shifts.rs:+3:9: +3:39
135+
StorageDead(_33); // scope 0 at $DIR/shifts.rs:+3:38: +3:39
136+
StorageDead(_28); // scope 0 at $DIR/shifts.rs:+3:38: +3:39
137+
StorageDead(_23); // scope 0 at $DIR/shifts.rs:+3:38: +3:39
138+
_0 = (move _6, move _22); // scope 0 at $DIR/shifts.rs:+1:5: +4:6
139+
StorageDead(_22); // scope 0 at $DIR/shifts.rs:+4:5: +4:6
140+
StorageDead(_6); // scope 0 at $DIR/shifts.rs:+4:5: +4:6
141+
return; // scope 0 at $DIR/shifts.rs:+5:2: +5:2
142+
}
143+
144+
bb7 (cleanup): {
145+
resume; // scope 0 at $DIR/shifts.rs:+0:1: +5:2
146+
}
147+
}

0 commit comments

Comments
 (0)