about summary refs log tree commit diff
path: root/src/libcore/array
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2019-11-19 01:16:07 +0000
committerbors <bors@rust-lang.org>2019-11-19 01:16:07 +0000
commit5c5a1209583d5ac0de67f57e0f1cd8ca28aa6c05 (patch)
tree177482dfe56b45a2259906c60b7366edb1ab6257 /src/libcore/array
parent0ccee30773050f6bf50fd6ceb9ac61e6d58aa4d8 (diff)
parent74b571402f980f70a4d87ec3c778af568e4fa329 (diff)
downloadrust-5c5a1209583d5ac0de67f57e0f1cd8ca28aa6c05.tar.gz
rust-5c5a1209583d5ac0de67f57e0f1cd8ca28aa6c05.zip
Auto merge of #65821 - SimonSapin:in-place, r=Amanieu
Use `drop_in_place` in `array::IntoIter::drop`

This skips the loop when the element type is known not to have drop glue, even in debug mode.
Diffstat (limited to 'src/libcore/array')
-rw-r--r--src/libcore/array/iter.rs22
1 files changed, 18 insertions, 4 deletions
diff --git a/src/libcore/array/iter.rs b/src/libcore/array/iter.rs
index 307e9b90ee2..aab9463e3aa 100644
--- a/src/libcore/array/iter.rs
+++ b/src/libcore/array/iter.rs
@@ -92,6 +92,18 @@ where
             mem::transmute::<&[MaybeUninit<T>], &[T]>(slice)
         }
     }
+
+    /// Returns a mutable slice of all elements that have not been yielded yet.
+    fn as_mut_slice(&mut self) -> &mut [T] {
+        // This transmute is safe, same as in `as_slice` above.
+        let slice = &mut self.data[self.alive.clone()];
+        // SAFETY: This transmute is safe. As mentioned in `new`, `MaybeUninit` retains
+        // the size and alignment of `T`. Furthermore, we know that all
+        // elements within `alive` are properly initialized.
+        unsafe {
+            mem::transmute::<&mut [MaybeUninit<T>], &mut [T]>(slice)
+        }
+    }
 }
 
 
@@ -184,10 +196,12 @@ where
     [T; N]: LengthAtMost32,
 {
     fn drop(&mut self) {
-        // We simply drop each element via `for_each`. This should not incur
-        // any significant runtime overhead and avoids adding another `unsafe`
-        // block.
-        self.by_ref().for_each(drop);
+        // SAFETY: This is safe: `as_mut_slice` returns exactly the sub-slice
+        // of elements that have not been moved out yet and that remain
+        // to be dropped.
+        unsafe {
+            ptr::drop_in_place(self.as_mut_slice())
+        }
     }
 }