forked from rust-lang/rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Rollup merge of rust-lang#69002 - RalfJung:miri-op-overflow, r=oli-ob…
…k,wesleywiser miri: improve and simplify overflow detection This simplifies the overflow detection for signed binary operators, and adds overflow detection to unary operators so that const-prop doesn't have to crudely hand-roll that. It also fixes some bugs in the operator implementation that however, I think, were not observable. r? @oli-obk @wesleywiser
- Loading branch information
Showing
12 changed files
with
272 additions
and
97 deletions.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// run-pass | ||
// compile-flags: -O | ||
#![allow(const_err)] | ||
|
||
// Make sure arithmetic unary/binary ops actually return the right result, even when overflowing. | ||
// We have to put them in `const fn` and turn on optimizations to avoid overflow checks. | ||
|
||
const fn add(x: i8, y: i8) -> i8 { x+y } | ||
const fn sub(x: i8, y: i8) -> i8 { x-y } | ||
const fn mul(x: i8, y: i8) -> i8 { x*y } | ||
// div and rem are always checked, so we cannot test their result in case of oveflow. | ||
const fn neg(x: i8) -> i8 { -x } | ||
|
||
fn main() { | ||
const ADD_OFLOW: i8 = add(100, 100); | ||
assert_eq!(ADD_OFLOW, -56); | ||
|
||
const SUB_OFLOW: i8 = sub(100, -100); | ||
assert_eq!(SUB_OFLOW, -56); | ||
|
||
const MUL_OFLOW: i8 = mul(-100, -2); | ||
assert_eq!(MUL_OFLOW, -56); | ||
|
||
const NEG_OFLOW: i8 = neg(-128); | ||
assert_eq!(NEG_OFLOW, -128); | ||
} |
Oops, something went wrong.