diff options
| author | Scott McMurray <scottmcm@users.noreply.github.com> | 2021-11-26 18:18:14 -0800 |
|---|---|---|
| committer | Scott McMurray <scottmcm@users.noreply.github.com> | 2021-11-26 18:18:14 -0800 |
| commit | b215a32af361c0ac4a6670fa7878bcdc6ea12bbd (patch) | |
| tree | 4605380b81a6d3ac526467b354834724243ff9b3 /compiler/rustc_middle/src/mir | |
| parent | f7c48297ce21ac0dc5b36ff730377bdb7be6ece4 (diff) | |
| download | rust-b215a32af361c0ac4a6670fa7878bcdc6ea12bbd.tar.gz rust-b215a32af361c0ac4a6670fa7878bcdc6ea12bbd.zip | |
Small mir-opt refactor
Hopefully-non-controversial changes from some not-ready-yet work that I'd figured I'd submit on their own.
Diffstat (limited to 'compiler/rustc_middle/src/mir')
| -rw-r--r-- | compiler/rustc_middle/src/mir/mod.rs | 1 | ||||
| -rw-r--r-- | compiler/rustc_middle/src/mir/terminator.rs | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/compiler/rustc_middle/src/mir/mod.rs b/compiler/rustc_middle/src/mir/mod.rs index 253ac266bed..d113dc696a1 100644 --- a/compiler/rustc_middle/src/mir/mod.rs +++ b/compiler/rustc_middle/src/mir/mod.rs @@ -1504,6 +1504,7 @@ impl Statement<'_> { } /// Changes a statement to a nop and returns the original statement. + #[must_use = "If you don't need the statement, use `make_nop` instead"] pub fn replace_nop(&mut self) -> Self { Statement { source_info: self.source_info, diff --git a/compiler/rustc_middle/src/mir/terminator.rs b/compiler/rustc_middle/src/mir/terminator.rs index e78b6fd092d..e33fb1acb6e 100644 --- a/compiler/rustc_middle/src/mir/terminator.rs +++ b/compiler/rustc_middle/src/mir/terminator.rs @@ -78,6 +78,13 @@ impl SwitchTargets { pub fn all_targets_mut(&mut self) -> &mut [BasicBlock] { &mut self.targets } + + /// Finds the `BasicBlock` to which this `SwitchInt` will branch given the + /// specific value. This cannot fail, as it'll return the `otherwise` + /// branch if there's not a specific match for the value. + pub fn target_for_value(&self, value: u128) -> BasicBlock { + self.iter().find_map(|(v, t)| (v == value).then_some(t)).unwrap_or_else(|| self.otherwise()) + } } pub struct SwitchTargetsIter<'a> { |
