diff --git a/library/core/src/num/uint_macros.rs b/library/core/src/num/uint_macros.rs index 7c7a2e921e80e..42f23f7ed71a9 100644 --- a/library/core/src/num/uint_macros.rs +++ b/library/core/src/num/uint_macros.rs @@ -462,7 +462,7 @@ macro_rules! uint_impl { // Per , // LLVM is happy to re-form the intrinsic later if useful. - if intrinsics::add_with_overflow(self, rhs).1 { + if unlikely!(intrinsics::add_with_overflow(self, rhs).1) { None } else { // SAFETY: Just checked it doesn't overflow diff --git a/tests/mir-opt/pre-codegen/checked_ops.step_forward.PreCodegen.after.panic-abort.mir b/tests/mir-opt/pre-codegen/checked_ops.step_forward.PreCodegen.after.panic-abort.mir index 8b568d825b244..69c11ebcacced 100644 --- a/tests/mir-opt/pre-codegen/checked_ops.step_forward.PreCodegen.after.panic-abort.mir +++ b/tests/mir-opt/pre-codegen/checked_ops.step_forward.PreCodegen.after.panic-abort.mir @@ -5,7 +5,7 @@ fn step_forward(_1: u16, _2: usize) -> u16 { debug n => _2; let mut _0: u16; scope 1 (inlined ::forward) { - let mut _7: u16; + let mut _8: u16; scope 2 { } scope 3 (inlined ::forward_checked) { @@ -13,6 +13,7 @@ fn step_forward(_1: u16, _2: usize) -> u16 { scope 6 (inlined core::num::::checked_add) { let mut _5: (u16, bool); let mut _6: bool; + let mut _7: bool; } } scope 5 (inlined convert::num::ptr_try_from_impls:: for u16>::try_from) { @@ -32,45 +33,52 @@ fn step_forward(_1: u16, _2: usize) -> u16 { StorageLive(_4); StorageLive(_3); _3 = Gt(_2, const 65535_usize); - switchInt(move _3) -> [0: bb1, otherwise: bb4]; + switchInt(move _3) -> [0: bb1, otherwise: bb5]; } bb1: { _4 = _2 as u16 (IntToInt); StorageDead(_3); + StorageLive(_7); StorageLive(_6); StorageLive(_5); _5 = AddWithOverflow(_1, _4); _6 = (_5.1: bool); - switchInt(move _6) -> [0: bb2, otherwise: bb3]; + _7 = unlikely(move _6) -> [return: bb2, unwind unreachable]; } bb2: { - StorageDead(_5); - StorageDead(_6); - goto -> bb6; + switchInt(move _7) -> [0: bb3, otherwise: bb4]; } bb3: { StorageDead(_5); StorageDead(_6); - goto -> bb5; + StorageDead(_7); + goto -> bb7; } bb4: { - StorageDead(_3); - goto -> bb5; + StorageDead(_5); + StorageDead(_6); + StorageDead(_7); + goto -> bb6; } bb5: { - assert(!const true, "attempt to compute `{} + {}`, which would overflow", const core::num::::MAX, const 1_u16) -> [success: bb6, unwind unreachable]; + StorageDead(_3); + goto -> bb6; } bb6: { - StorageLive(_7); - _7 = _2 as u16 (IntToInt); - _0 = Add(_1, _7); - StorageDead(_7); + assert(!const true, "attempt to compute `{} + {}`, which would overflow", const core::num::::MAX, const 1_u16) -> [success: bb7, unwind unreachable]; + } + + bb7: { + StorageLive(_8); + _8 = _2 as u16 (IntToInt); + _0 = Add(_1, _8); + StorageDead(_8); StorageDead(_4); return; } diff --git a/tests/mir-opt/pre-codegen/checked_ops.step_forward.PreCodegen.after.panic-unwind.mir b/tests/mir-opt/pre-codegen/checked_ops.step_forward.PreCodegen.after.panic-unwind.mir index 2120699e39f51..e6ea6c510019c 100644 --- a/tests/mir-opt/pre-codegen/checked_ops.step_forward.PreCodegen.after.panic-unwind.mir +++ b/tests/mir-opt/pre-codegen/checked_ops.step_forward.PreCodegen.after.panic-unwind.mir @@ -5,7 +5,7 @@ fn step_forward(_1: u16, _2: usize) -> u16 { debug n => _2; let mut _0: u16; scope 1 (inlined ::forward) { - let mut _7: u16; + let mut _8: u16; scope 2 { } scope 3 (inlined ::forward_checked) { @@ -13,6 +13,7 @@ fn step_forward(_1: u16, _2: usize) -> u16 { scope 6 (inlined core::num::::checked_add) { let mut _5: (u16, bool); let mut _6: bool; + let mut _7: bool; } } scope 5 (inlined convert::num::ptr_try_from_impls:: for u16>::try_from) { @@ -32,45 +33,52 @@ fn step_forward(_1: u16, _2: usize) -> u16 { StorageLive(_4); StorageLive(_3); _3 = Gt(_2, const 65535_usize); - switchInt(move _3) -> [0: bb1, otherwise: bb4]; + switchInt(move _3) -> [0: bb1, otherwise: bb5]; } bb1: { _4 = _2 as u16 (IntToInt); StorageDead(_3); + StorageLive(_7); StorageLive(_6); StorageLive(_5); _5 = AddWithOverflow(_1, _4); _6 = (_5.1: bool); - switchInt(move _6) -> [0: bb2, otherwise: bb3]; + _7 = unlikely(move _6) -> [return: bb2, unwind unreachable]; } bb2: { - StorageDead(_5); - StorageDead(_6); - goto -> bb6; + switchInt(move _7) -> [0: bb3, otherwise: bb4]; } bb3: { StorageDead(_5); StorageDead(_6); - goto -> bb5; + StorageDead(_7); + goto -> bb7; } bb4: { - StorageDead(_3); - goto -> bb5; + StorageDead(_5); + StorageDead(_6); + StorageDead(_7); + goto -> bb6; } bb5: { - assert(!const true, "attempt to compute `{} + {}`, which would overflow", const core::num::::MAX, const 1_u16) -> [success: bb6, unwind continue]; + StorageDead(_3); + goto -> bb6; } bb6: { - StorageLive(_7); - _7 = _2 as u16 (IntToInt); - _0 = Add(_1, _7); - StorageDead(_7); + assert(!const true, "attempt to compute `{} + {}`, which would overflow", const core::num::::MAX, const 1_u16) -> [success: bb7, unwind continue]; + } + + bb7: { + StorageLive(_8); + _8 = _2 as u16 (IntToInt); + _0 = Add(_1, _8); + StorageDead(_8); StorageDead(_4); return; }