about summary refs log tree commit diff
path: root/tests/mir-opt/lower_array_len.array_bound_mut.GVN.panic-abort.diff
diff options
context:
space:
mode:
authorThe Miri Cronjob Bot <miri@cron.bot>2024-06-21 05:14:59 +0000
committerThe Miri Cronjob Bot <miri@cron.bot>2024-06-21 05:14:59 +0000
commit9d7de1fbdbf57b5d21e8a841c306e7d1f228ef37 (patch)
treed62e86b319c4f189d03be09be1a3deb4b46a93fe /tests/mir-opt/lower_array_len.array_bound_mut.GVN.panic-abort.diff
parent121b06bd0593369477a70dfee156f10055ca7638 (diff)
parent553a69030e5a086eb3841d020db8c9c463948c72 (diff)
Merge from rustc
Diffstat (limited to 'tests/mir-opt/lower_array_len.array_bound_mut.GVN.panic-abort.diff')
-rw-r--r--tests/mir-opt/lower_array_len.array_bound_mut.GVN.panic-abort.diff88
1 files changed, 88 insertions, 0 deletions
diff --git a/tests/mir-opt/lower_array_len.array_bound_mut.GVN.panic-abort.diff b/tests/mir-opt/lower_array_len.array_bound_mut.GVN.panic-abort.diff
new file mode 100644
index 00000000000..80e8ea37f41
--- /dev/null
+++ b/tests/mir-opt/lower_array_len.array_bound_mut.GVN.panic-abort.diff
@@ -0,0 +1,88 @@
+- // MIR for `array_bound_mut` before GVN
++ // MIR for `array_bound_mut` after GVN
+  
+  fn array_bound_mut(_1: usize, _2: &mut [u8; N]) -> u8 {
+      debug index => _1;
+      debug slice => _2;
+      let mut _0: u8;
+      let mut _3: bool;
+      let mut _4: usize;
+      let mut _5: usize;
+      let mut _6: &[u8];
+      let mut _7: &[u8; N];
+      let _8: usize;
+      let mut _9: usize;
+      let mut _10: bool;
+      let _11: usize;
+      let mut _12: usize;
+      let mut _13: bool;
+  
+      bb0: {
+          StorageLive(_3);
+          StorageLive(_4);
+          _4 = _1;
+          StorageLive(_5);
+          StorageLive(_6);
+          StorageLive(_7);
+          _7 = &(*_2);
+          _6 = move _7 as &[u8] (PointerCoercion(Unsize));
+          StorageDead(_7);
+-         _5 = PtrMetadata(move _6);
++         _5 = const N;
+          goto -> bb1;
+      }
+  
+      bb1: {
+          StorageDead(_6);
+-         _3 = Lt(move _4, move _5);
++         _3 = Lt(_1, move _5);
+          switchInt(move _3) -> [0: bb4, otherwise: bb2];
+      }
+  
+      bb2: {
+          StorageDead(_5);
+          StorageDead(_4);
+          StorageLive(_8);
+          _8 = _1;
+-         _9 = Len((*_2));
+-         _10 = Lt(_8, _9);
+-         assert(move _10, "index out of bounds: the length is {} but the index is {}", move _9, _8) -> [success: bb3, unwind unreachable];
++         _9 = const N;
++         _10 = Lt(_1, const N);
++         assert(move _10, "index out of bounds: the length is {} but the index is {}", const N, _1) -> [success: bb3, unwind unreachable];
+      }
+  
+      bb3: {
+-         _0 = (*_2)[_8];
++         _0 = (*_2)[_1];
+          StorageDead(_8);
+          goto -> bb6;
+      }
+  
+      bb4: {
+          StorageDead(_5);
+          StorageDead(_4);
+          StorageLive(_11);
+          _11 = const 0_usize;
+-         _12 = Len((*_2));
+-         _13 = Lt(_11, _12);
+-         assert(move _13, "index out of bounds: the length is {} but the index is {}", move _12, _11) -> [success: bb5, unwind unreachable];
++         _12 = const N;
++         _13 = Lt(const 0_usize, const N);
++         assert(move _13, "index out of bounds: the length is {} but the index is {}", const N, const 0_usize) -> [success: bb5, unwind unreachable];
+      }
+  
+      bb5: {
+-         (*_2)[_11] = const 42_u8;
++         (*_2)[0 of 1] = const 42_u8;
+          StorageDead(_11);
+          _0 = const 42_u8;
+          goto -> bb6;
+      }
+  
+      bb6: {
+          StorageDead(_3);
+          return;
+      }
+  }
+