Auto merge of #113344 - scottmcm:alt-slice-zst-handing, r=the8472
Get `!nonnull` metadata on slice iterators, without `assume`s This updates the non-ZST paths to read the end pointer through a pointer-to-`NonNull`, so that they all get `!nonnull` metadata. That means that the last `assume(!ptr.is_null())` can be deleted, without impacting codegen -- the codegen tests confirm the LLVM-IR ends up exactly the same as before.
This commit is contained in:
commit
c720a9cd12
@ -462,6 +462,30 @@ pub const fn cast<U>(self) -> NonNull<U> {
|
||||
// And the caller promised the `delta` is sound to add.
|
||||
unsafe { NonNull { pointer: self.pointer.add(delta) } }
|
||||
}
|
||||
|
||||
/// See [`pointer::sub`] for semantics and safety requirements.
|
||||
#[inline]
|
||||
pub(crate) const unsafe fn sub(self, delta: usize) -> Self
|
||||
where
|
||||
T: Sized,
|
||||
{
|
||||
// SAFETY: We require that the delta stays in-bounds of the object, and
|
||||
// thus it cannot become null, as no legal objects can be allocated
|
||||
// in such as way that the null address is part of them.
|
||||
// And the caller promised the `delta` is sound to subtract.
|
||||
unsafe { NonNull { pointer: self.pointer.sub(delta) } }
|
||||
}
|
||||
|
||||
/// See [`pointer::sub_ptr`] for semantics and safety requirements.
|
||||
#[inline]
|
||||
pub(crate) const unsafe fn sub_ptr(self, subtrahend: Self) -> usize
|
||||
where
|
||||
T: Sized,
|
||||
{
|
||||
// SAFETY: The caller promised that this is safe to do, and
|
||||
// the non-nullness is irrelevant to the operation.
|
||||
unsafe { self.pointer.sub_ptr(subtrahend.pointer) }
|
||||
}
|
||||
}
|
||||
|
||||
impl<T> NonNull<[T]> {
|
||||
|
@ -13,7 +13,7 @@
|
||||
use crate::marker::{PhantomData, Send, Sized, Sync};
|
||||
use crate::mem::{self, SizedTypeProperties};
|
||||
use crate::num::NonZeroUsize;
|
||||
use crate::ptr::{invalid, invalid_mut, NonNull};
|
||||
use crate::ptr::{self, invalid, invalid_mut, NonNull};
|
||||
|
||||
use super::{from_raw_parts, from_raw_parts_mut};
|
||||
|
||||
@ -68,7 +68,7 @@ pub struct Iter<'a, T: 'a> {
|
||||
/// For non-ZSTs, the non-null pointer to the past-the-end element.
|
||||
///
|
||||
/// For ZSTs, this is `ptr::invalid(len)`.
|
||||
end: *const T,
|
||||
end_or_len: *const T,
|
||||
_marker: PhantomData<&'a T>,
|
||||
}
|
||||
|
||||
@ -90,9 +90,9 @@ pub(super) fn new(slice: &'a [T]) -> Self {
|
||||
let ptr = slice.as_ptr();
|
||||
// SAFETY: Similar to `IterMut::new`.
|
||||
unsafe {
|
||||
let end = if T::IS_ZST { invalid(slice.len()) } else { ptr.add(slice.len()) };
|
||||
let end_or_len = if T::IS_ZST { invalid(slice.len()) } else { ptr.add(slice.len()) };
|
||||
|
||||
Self { ptr: NonNull::new_unchecked(ptr as *mut T), end, _marker: PhantomData }
|
||||
Self { ptr: NonNull::new_unchecked(ptr as *mut T), end_or_len, _marker: PhantomData }
|
||||
}
|
||||
}
|
||||
|
||||
@ -128,7 +128,7 @@ pub fn as_slice(&self) -> &'a [T] {
|
||||
}
|
||||
}
|
||||
|
||||
iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, {
|
||||
iterator! {struct Iter -> *const T, &'a T, const, {/* no mut */}, as_ref, {
|
||||
fn is_sorted_by<F>(self, mut compare: F) -> bool
|
||||
where
|
||||
Self: Sized,
|
||||
@ -142,7 +142,7 @@ fn is_sorted_by<F>(self, mut compare: F) -> bool
|
||||
impl<T> Clone for Iter<'_, T> {
|
||||
#[inline]
|
||||
fn clone(&self) -> Self {
|
||||
Iter { ptr: self.ptr, end: self.end, _marker: self._marker }
|
||||
Iter { ptr: self.ptr, end_or_len: self.end_or_len, _marker: self._marker }
|
||||
}
|
||||
}
|
||||
|
||||
@ -189,7 +189,7 @@ pub struct IterMut<'a, T: 'a> {
|
||||
/// For non-ZSTs, the non-null pointer to the past-the-end element.
|
||||
///
|
||||
/// For ZSTs, this is `ptr::invalid_mut(len)`.
|
||||
end: *mut T,
|
||||
end_or_len: *mut T,
|
||||
_marker: PhantomData<&'a mut T>,
|
||||
}
|
||||
|
||||
@ -220,15 +220,16 @@ pub(super) fn new(slice: &'a mut [T]) -> Self {
|
||||
// for direct pointer equality with `ptr` to check if the iterator is
|
||||
// done.
|
||||
//
|
||||
// In the case of a ZST, the end pointer is just the start pointer plus
|
||||
// the length, to also allows for the fast `ptr == end` check.
|
||||
// In the case of a ZST, the end pointer is just the length. It's never
|
||||
// used as a pointer at all, and thus it's fine to have no provenance.
|
||||
//
|
||||
// See the `next_unchecked!` and `is_empty!` macros as well as the
|
||||
// `post_inc_start` method for more information.
|
||||
unsafe {
|
||||
let end = if T::IS_ZST { invalid_mut(slice.len()) } else { ptr.add(slice.len()) };
|
||||
let end_or_len =
|
||||
if T::IS_ZST { invalid_mut(slice.len()) } else { ptr.add(slice.len()) };
|
||||
|
||||
Self { ptr: NonNull::new_unchecked(ptr), end, _marker: PhantomData }
|
||||
Self { ptr: NonNull::new_unchecked(ptr), end_or_len, _marker: PhantomData }
|
||||
}
|
||||
}
|
||||
|
||||
@ -360,7 +361,7 @@ fn as_ref(&self) -> &[T] {
|
||||
// }
|
||||
// }
|
||||
|
||||
iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, {}}
|
||||
iterator! {struct IterMut -> *mut T, &'a mut T, mut, {mut}, as_mut, {}}
|
||||
|
||||
/// An internal abstraction over the splitting iterators, so that
|
||||
/// splitn, splitn_mut etc can be implemented once.
|
||||
|
@ -1,45 +1,62 @@
|
||||
//! Macros used by iterators of slice.
|
||||
|
||||
// Shrinks the iterator when T is a ZST, setting the length to `new_len`.
|
||||
// `new_len` must not exceed `self.len()`.
|
||||
macro_rules! zst_set_len {
|
||||
($self: ident, $new_len: expr) => {{
|
||||
/// Convenience & performance macro for consuming the `end_or_len` field, by
|
||||
/// giving a `(&mut) usize` or `(&mut) NonNull<T>` depending whether `T` is
|
||||
/// or is not a ZST respectively.
|
||||
///
|
||||
/// Internally, this reads the `end` through a pointer-to-`NonNull` so that
|
||||
/// it'll get the appropriate non-null metadata in the backend without needing
|
||||
/// to call `assume` manually.
|
||||
macro_rules! if_zst {
|
||||
(mut $this:ident, $len:ident => $zst_body:expr, $end:ident => $other_body:expr,) => {{
|
||||
#![allow(unused_unsafe)] // we're sometimes used within an unsafe block
|
||||
|
||||
// SAFETY: same as `invalid(_mut)`, but the macro doesn't know
|
||||
// which versions of that function to call, so open-code it.
|
||||
$self.end = unsafe { mem::transmute::<usize, _>($new_len) };
|
||||
if T::IS_ZST {
|
||||
// SAFETY: for ZSTs, the pointer is storing a provenance-free length,
|
||||
// so consuming and updating it as a `usize` is fine.
|
||||
let $len = unsafe { &mut *ptr::addr_of_mut!($this.end_or_len).cast::<usize>() };
|
||||
$zst_body
|
||||
} else {
|
||||
// SAFETY: for non-ZSTs, the type invariant ensures it cannot be null
|
||||
let $end = unsafe { &mut *ptr::addr_of_mut!($this.end_or_len).cast::<NonNull<T>>() };
|
||||
$other_body
|
||||
}
|
||||
}};
|
||||
}
|
||||
($this:ident, $len:ident => $zst_body:expr, $end:ident => $other_body:expr,) => {{
|
||||
#![allow(unused_unsafe)] // we're sometimes used within an unsafe block
|
||||
|
||||
// Shrinks the iterator when T is a ZST, reducing the length by `n`.
|
||||
// `n` must not exceed `self.len()`.
|
||||
macro_rules! zst_shrink {
|
||||
($self: ident, $n: ident) => {
|
||||
let new_len = $self.end.addr() - $n;
|
||||
zst_set_len!($self, new_len);
|
||||
};
|
||||
if T::IS_ZST {
|
||||
let $len = $this.end_or_len.addr();
|
||||
$zst_body
|
||||
} else {
|
||||
// SAFETY: for non-ZSTs, the type invariant ensures it cannot be null
|
||||
let $end = unsafe { *ptr::addr_of!($this.end_or_len).cast::<NonNull<T>>() };
|
||||
$other_body
|
||||
}
|
||||
}};
|
||||
}
|
||||
|
||||
// Inlining is_empty and len makes a huge performance difference
|
||||
macro_rules! is_empty {
|
||||
($self: ident) => {
|
||||
if T::IS_ZST { $self.end.addr() == 0 } else { $self.ptr.as_ptr() as *const _ == $self.end }
|
||||
if_zst!($self,
|
||||
len => len == 0,
|
||||
end => $self.ptr == end,
|
||||
)
|
||||
};
|
||||
}
|
||||
|
||||
macro_rules! len {
|
||||
($self: ident) => {{
|
||||
#![allow(unused_unsafe)] // we're sometimes used within an unsafe block
|
||||
|
||||
if T::IS_ZST {
|
||||
$self.end.addr()
|
||||
} else {
|
||||
// To get rid of some bounds checks (see `position`), we use ptr_sub instead of
|
||||
// offset_from (Tested by `codegen/slice-position-bounds-check`.)
|
||||
// SAFETY: by the type invariant pointers are aligned and `start <= end`
|
||||
unsafe { $self.end.sub_ptr($self.ptr.as_ptr()) }
|
||||
}
|
||||
if_zst!($self,
|
||||
len => len,
|
||||
end => {
|
||||
// To get rid of some bounds checks (see `position`), we use ptr_sub instead of
|
||||
// offset_from (Tested by `codegen/slice-position-bounds-check`.)
|
||||
// SAFETY: by the type invariant pointers are aligned and `start <= end`
|
||||
unsafe { end.sub_ptr($self.ptr) }
|
||||
},
|
||||
)
|
||||
}};
|
||||
}
|
||||
|
||||
@ -50,20 +67,21 @@ struct $name:ident -> $ptr:ty,
|
||||
$elem:ty,
|
||||
$raw_mut:tt,
|
||||
{$( $mut_:tt )?},
|
||||
$into_ref:ident,
|
||||
{$($extra:tt)*}
|
||||
) => {
|
||||
// Returns the first element and moves the start of the iterator forwards by 1.
|
||||
// Greatly improves performance compared to an inlined function. The iterator
|
||||
// must not be empty.
|
||||
macro_rules! next_unchecked {
|
||||
($self: ident) => {& $( $mut_ )? *$self.post_inc_start(1)}
|
||||
($self: ident) => { $self.post_inc_start(1).$into_ref() }
|
||||
}
|
||||
|
||||
// Returns the last element and moves the end of the iterator backwards by 1.
|
||||
// Greatly improves performance compared to an inlined function. The iterator
|
||||
// must not be empty.
|
||||
macro_rules! next_back_unchecked {
|
||||
($self: ident) => {& $( $mut_ )? *$self.pre_dec_end(1)}
|
||||
($self: ident) => { $self.pre_dec_end(1).$into_ref() }
|
||||
}
|
||||
|
||||
impl<'a, T> $name<'a, T> {
|
||||
@ -80,33 +98,40 @@ fn make_slice(&self) -> &'a [T] {
|
||||
// returning the old start.
|
||||
// Unsafe because the offset must not exceed `self.len()`.
|
||||
#[inline(always)]
|
||||
unsafe fn post_inc_start(&mut self, offset: usize) -> * $raw_mut T {
|
||||
unsafe fn post_inc_start(&mut self, offset: usize) -> NonNull<T> {
|
||||
let old = self.ptr;
|
||||
if T::IS_ZST {
|
||||
zst_shrink!(self, offset);
|
||||
} else {
|
||||
// SAFETY: the caller guarantees that `offset` doesn't exceed `self.len()`,
|
||||
// so this new pointer is inside `self` and thus guaranteed to be non-null.
|
||||
self.ptr = unsafe { self.ptr.add(offset) };
|
||||
|
||||
// SAFETY: the caller guarantees that `offset` doesn't exceed `self.len()`,
|
||||
// so this new pointer is inside `self` and thus guaranteed to be non-null.
|
||||
unsafe {
|
||||
if_zst!(mut self,
|
||||
len => *len = len.unchecked_sub(offset),
|
||||
_end => self.ptr = self.ptr.add(offset),
|
||||
);
|
||||
}
|
||||
old.as_ptr()
|
||||
old
|
||||
}
|
||||
|
||||
// Helper function for moving the end of the iterator backwards by `offset` elements,
|
||||
// returning the new end.
|
||||
// Unsafe because the offset must not exceed `self.len()`.
|
||||
#[inline(always)]
|
||||
unsafe fn pre_dec_end(&mut self, offset: usize) -> * $raw_mut T {
|
||||
if T::IS_ZST {
|
||||
zst_shrink!(self, offset);
|
||||
self.ptr.as_ptr()
|
||||
} else {
|
||||
unsafe fn pre_dec_end(&mut self, offset: usize) -> NonNull<T> {
|
||||
if_zst!(mut self,
|
||||
// SAFETY: By our precondition, `offset` can be at most the
|
||||
// current length, so the subtraction can never overflow.
|
||||
len => unsafe {
|
||||
*len = len.unchecked_sub(offset);
|
||||
self.ptr
|
||||
},
|
||||
// SAFETY: the caller guarantees that `offset` doesn't exceed `self.len()`,
|
||||
// which is guaranteed to not overflow an `isize`. Also, the resulting pointer
|
||||
// is in bounds of `slice`, which fulfills the other requirements for `offset`.
|
||||
self.end = unsafe { self.end.sub(offset) };
|
||||
self.end
|
||||
}
|
||||
end => unsafe {
|
||||
*end = end.sub(offset);
|
||||
*end
|
||||
},
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
@ -131,13 +156,9 @@ impl<'a, T> Iterator for $name<'a, T> {
|
||||
fn next(&mut self) -> Option<$elem> {
|
||||
// could be implemented with slices, but this avoids bounds checks
|
||||
|
||||
// SAFETY: `assume` call is safe because slices over non-ZSTs must
|
||||
// have a non-null end pointer. The call to `next_unchecked!` is
|
||||
// SAFETY: The call to `next_unchecked!` is
|
||||
// safe since we check if the iterator is empty first.
|
||||
unsafe {
|
||||
if !<T>::IS_ZST {
|
||||
assume(!self.end.is_null());
|
||||
}
|
||||
if is_empty!(self) {
|
||||
None
|
||||
} else {
|
||||
@ -161,14 +182,10 @@ fn count(self) -> usize {
|
||||
fn nth(&mut self, n: usize) -> Option<$elem> {
|
||||
if n >= len!(self) {
|
||||
// This iterator is now empty.
|
||||
if T::IS_ZST {
|
||||
zst_set_len!(self, 0);
|
||||
} else {
|
||||
// SAFETY: end can't be 0 if T isn't ZST because ptr isn't 0 and end >= ptr
|
||||
unsafe {
|
||||
self.ptr = NonNull::new_unchecked(self.end as *mut T);
|
||||
}
|
||||
}
|
||||
if_zst!(mut self,
|
||||
len => *len = 0,
|
||||
end => self.ptr = *end,
|
||||
);
|
||||
return None;
|
||||
}
|
||||
// SAFETY: We are in bounds. `post_inc_start` does the right thing even for ZSTs.
|
||||
@ -375,13 +392,9 @@ impl<'a, T> DoubleEndedIterator for $name<'a, T> {
|
||||
fn next_back(&mut self) -> Option<$elem> {
|
||||
// could be implemented with slices, but this avoids bounds checks
|
||||
|
||||
// SAFETY: `assume` call is safe because slices over non-ZSTs must
|
||||
// have a non-null end pointer. The call to `next_back_unchecked!`
|
||||
// SAFETY: The call to `next_back_unchecked!`
|
||||
// is safe since we check if the iterator is empty first.
|
||||
unsafe {
|
||||
if !<T>::IS_ZST {
|
||||
assume(!self.end.is_null());
|
||||
}
|
||||
if is_empty!(self) {
|
||||
None
|
||||
} else {
|
||||
@ -394,11 +407,10 @@ fn next_back(&mut self) -> Option<$elem> {
|
||||
fn nth_back(&mut self, n: usize) -> Option<$elem> {
|
||||
if n >= len!(self) {
|
||||
// This iterator is now empty.
|
||||
if T::IS_ZST {
|
||||
zst_set_len!(self, 0);
|
||||
} else {
|
||||
self.end = self.ptr.as_ptr();
|
||||
}
|
||||
if_zst!(mut self,
|
||||
len => *len = 0,
|
||||
end => *end = self.ptr,
|
||||
);
|
||||
return None;
|
||||
}
|
||||
// SAFETY: We are in bounds. `pre_dec_end` does the right thing even for ZSTs.
|
||||
|
@ -34,6 +34,7 @@ pub fn iter_repeat_n_next(it: &mut std::iter::RepeatN<NotCopy>) -> Option<NotCop
|
||||
// CHECK: [[EMPTY]]:
|
||||
// CHECK-NOT: br
|
||||
// CHECK: phi i16
|
||||
// CHECK-SAME: [ %[[VAL]], %[[NOT_EMPTY]] ]
|
||||
// CHECK-NOT: br
|
||||
// CHECK: ret
|
||||
|
||||
|
@ -9,8 +9,8 @@
|
||||
#[no_mangle]
|
||||
pub fn slice_iter_len_eq_zero(y: std::slice::Iter<'_, Demo>) -> bool {
|
||||
// CHECK-NOT: sub
|
||||
// CHECK: %_0 = icmp eq {{i8\*|ptr}} {{%1|%0}}, {{%1|%0}}
|
||||
// CHECK: ret i1 %_0
|
||||
// CHECK: %[[RET:.+]] = icmp eq {{i8\*|ptr}} {{%1|%0}}, {{%1|%0}}
|
||||
// CHECK: ret i1 %[[RET]]
|
||||
y.len() == 0
|
||||
}
|
||||
|
||||
|
@ -2,11 +2,16 @@
|
||||
// compile-flags: -O
|
||||
// ignore-debug (these add extra checks that make it hard to verify)
|
||||
#![crate_type = "lib"]
|
||||
#![feature(exact_size_is_empty)]
|
||||
|
||||
// The slice iterator used to `assume` that the `start` pointer was non-null.
|
||||
// That ought to be unneeded, though, since the type is `NonNull`, so this test
|
||||
// confirms that the appropriate metadata is included to denote that.
|
||||
|
||||
// It also used to `assume` the `end` pointer was non-null, but that's no longer
|
||||
// needed as the code changed to read it as a `NonNull`, and thus gets the
|
||||
// appropriate `!nonnull` annotations naturally.
|
||||
|
||||
// CHECK-LABEL: @slice_iter_next(
|
||||
#[no_mangle]
|
||||
pub fn slice_iter_next<'a>(it: &mut std::slice::Iter<'a, u32>) -> Option<&'a u32> {
|
||||
@ -75,3 +80,37 @@ pub fn slice_iter_mut_new(slice: &mut [u32]) -> std::slice::IterMut<'_, u32> {
|
||||
// CHECK: }
|
||||
slice.iter_mut()
|
||||
}
|
||||
|
||||
// CHECK-LABEL: @slice_iter_is_empty
|
||||
#[no_mangle]
|
||||
pub fn slice_iter_is_empty(it: &std::slice::Iter<'_, u32>) -> bool {
|
||||
// CHECK: %[[ENDP:.+]] = getelementptr{{.+}}ptr %it,{{.+}} 1
|
||||
// CHECK: %[[END:.+]] = load ptr, ptr %[[ENDP]]
|
||||
// CHECK-SAME: !nonnull
|
||||
// CHECK-SAME: !noundef
|
||||
// CHECK: %[[START:.+]] = load ptr, ptr %it,
|
||||
// CHECK-SAME: !nonnull
|
||||
// CHECK-SAME: !noundef
|
||||
|
||||
// CHECK: %[[RET:.+]] = icmp eq ptr %[[START]], %[[END]]
|
||||
// CHECK: ret i1 %[[RET]]
|
||||
it.is_empty()
|
||||
}
|
||||
|
||||
// CHECK-LABEL: @slice_iter_len
|
||||
#[no_mangle]
|
||||
pub fn slice_iter_len(it: &std::slice::Iter<'_, u32>) -> usize {
|
||||
// CHECK: %[[START:.+]] = load ptr, ptr %it,
|
||||
// CHECK-SAME: !nonnull
|
||||
// CHECK-SAME: !noundef
|
||||
// CHECK: %[[ENDP:.+]] = getelementptr{{.+}}ptr %it,{{.+}} 1
|
||||
// CHECK: %[[END:.+]] = load ptr, ptr %[[ENDP]]
|
||||
// CHECK-SAME: !nonnull
|
||||
// CHECK-SAME: !noundef
|
||||
|
||||
// CHECK: ptrtoint
|
||||
// CHECK: ptrtoint
|
||||
// CHECK: sub nuw
|
||||
// CHECK: lshr exact
|
||||
it.len()
|
||||
}
|
||||
|
@ -38,7 +38,7 @@ fn enumerated_loop(_1: &[T], _2: impl Fn(usize, &T)) -> () {
|
||||
scope 6 {
|
||||
let _7: *const T;
|
||||
scope 7 {
|
||||
debug end => _7;
|
||||
debug end_or_len => _7;
|
||||
scope 13 (inlined NonNull::<T>::new_unchecked) {
|
||||
debug ptr => _9;
|
||||
let mut _10: *const T;
|
||||
@ -138,7 +138,7 @@ fn enumerated_loop(_1: &[T], _2: impl Fn(usize, &T)) -> () {
|
||||
StorageDead(_9);
|
||||
StorageLive(_12);
|
||||
_12 = _7;
|
||||
_13 = std::slice::Iter::<'_, T> { ptr: move _11, end: move _12, _marker: const ZeroSized: PhantomData<&T> };
|
||||
_13 = std::slice::Iter::<'_, T> { ptr: move _11, end_or_len: move _12, _marker: const ZeroSized: PhantomData<&T> };
|
||||
StorageDead(_12);
|
||||
StorageDead(_11);
|
||||
StorageDead(_7);
|
||||
|
@ -38,7 +38,7 @@ fn enumerated_loop(_1: &[T], _2: impl Fn(usize, &T)) -> () {
|
||||
scope 6 {
|
||||
let _7: *const T;
|
||||
scope 7 {
|
||||
debug end => _7;
|
||||
debug end_or_len => _7;
|
||||
scope 13 (inlined NonNull::<T>::new_unchecked) {
|
||||
debug ptr => _9;
|
||||
let mut _10: *const T;
|
||||
@ -138,7 +138,7 @@ fn enumerated_loop(_1: &[T], _2: impl Fn(usize, &T)) -> () {
|
||||
StorageDead(_9);
|
||||
StorageLive(_12);
|
||||
_12 = _7;
|
||||
_13 = std::slice::Iter::<'_, T> { ptr: move _11, end: move _12, _marker: const ZeroSized: PhantomData<&T> };
|
||||
_13 = std::slice::Iter::<'_, T> { ptr: move _11, end_or_len: move _12, _marker: const ZeroSized: PhantomData<&T> };
|
||||
StorageDead(_12);
|
||||
StorageDead(_11);
|
||||
StorageDead(_7);
|
||||
|
@ -35,7 +35,7 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
|
||||
scope 6 {
|
||||
let _7: *const T;
|
||||
scope 7 {
|
||||
debug end => _7;
|
||||
debug end_or_len => _7;
|
||||
scope 13 (inlined NonNull::<T>::new_unchecked) {
|
||||
debug ptr => _9;
|
||||
let mut _10: *const T;
|
||||
@ -128,7 +128,7 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
|
||||
StorageDead(_9);
|
||||
StorageLive(_12);
|
||||
_12 = _7;
|
||||
_13 = std::slice::Iter::<'_, T> { ptr: move _11, end: move _12, _marker: const ZeroSized: PhantomData<&T> };
|
||||
_13 = std::slice::Iter::<'_, T> { ptr: move _11, end_or_len: move _12, _marker: const ZeroSized: PhantomData<&T> };
|
||||
StorageDead(_12);
|
||||
StorageDead(_11);
|
||||
StorageDead(_7);
|
||||
|
@ -35,7 +35,7 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
|
||||
scope 6 {
|
||||
let _7: *const T;
|
||||
scope 7 {
|
||||
debug end => _7;
|
||||
debug end_or_len => _7;
|
||||
scope 13 (inlined NonNull::<T>::new_unchecked) {
|
||||
debug ptr => _9;
|
||||
let mut _10: *const T;
|
||||
@ -128,7 +128,7 @@ fn forward_loop(_1: &[T], _2: impl Fn(&T)) -> () {
|
||||
StorageDead(_9);
|
||||
StorageLive(_12);
|
||||
_12 = _7;
|
||||
_13 = std::slice::Iter::<'_, T> { ptr: move _11, end: move _12, _marker: const ZeroSized: PhantomData<&T> };
|
||||
_13 = std::slice::Iter::<'_, T> { ptr: move _11, end_or_len: move _12, _marker: const ZeroSized: PhantomData<&T> };
|
||||
StorageDead(_12);
|
||||
StorageDead(_11);
|
||||
StorageDead(_7);
|
||||
|
@ -39,7 +39,7 @@ fn reverse_loop(_1: &[T], _2: impl Fn(&T)) -> () {
|
||||
scope 6 {
|
||||
let _7: *const T;
|
||||
scope 7 {
|
||||
debug end => _7;
|
||||
debug end_or_len => _7;
|
||||
scope 13 (inlined NonNull::<T>::new_unchecked) {
|
||||
debug ptr => _9;
|
||||
let mut _10: *const T;
|
||||
@ -139,7 +139,7 @@ fn reverse_loop(_1: &[T], _2: impl Fn(&T)) -> () {
|
||||
StorageDead(_9);
|
||||
StorageLive(_12);
|
||||
_12 = _7;
|
||||
_13 = std::slice::Iter::<'_, T> { ptr: move _11, end: move _12, _marker: const ZeroSized: PhantomData<&T> };
|
||||
_13 = std::slice::Iter::<'_, T> { ptr: move _11, end_or_len: move _12, _marker: const ZeroSized: PhantomData<&T> };
|
||||
StorageDead(_12);
|
||||
StorageDead(_11);
|
||||
StorageDead(_7);
|
||||
|
@ -39,7 +39,7 @@ fn reverse_loop(_1: &[T], _2: impl Fn(&T)) -> () {
|
||||
scope 6 {
|
||||
let _7: *const T;
|
||||
scope 7 {
|
||||
debug end => _7;
|
||||
debug end_or_len => _7;
|
||||
scope 13 (inlined NonNull::<T>::new_unchecked) {
|
||||
debug ptr => _9;
|
||||
let mut _10: *const T;
|
||||
@ -139,7 +139,7 @@ fn reverse_loop(_1: &[T], _2: impl Fn(&T)) -> () {
|
||||
StorageDead(_9);
|
||||
StorageLive(_12);
|
||||
_12 = _7;
|
||||
_13 = std::slice::Iter::<'_, T> { ptr: move _11, end: move _12, _marker: const ZeroSized: PhantomData<&T> };
|
||||
_13 = std::slice::Iter::<'_, T> { ptr: move _11, end_or_len: move _12, _marker: const ZeroSized: PhantomData<&T> };
|
||||
StorageDead(_12);
|
||||
StorageDead(_11);
|
||||
StorageDead(_7);
|
||||
|
Loading…
Reference in New Issue
Block a user