Optimize Inner::shallow_clone (#217)

- Clones when the kind is INLINE or STATIC are sped up by over double.
- Clones when the kind is ARC are spec up by about 1/3.
This commit is contained in:
Sean McArthur
2018-07-03 15:21:26 -07:00
committed by Carl Lerche
parent 6414efe83b
commit 886dda0962
3 changed files with 193 additions and 117 deletions
+33
View File
@@ -113,6 +113,39 @@ fn deref_two(b: &mut Bencher) {
}) })
} }
#[bench]
fn clone_inline(b: &mut Bencher) {
let bytes = Bytes::from_static(b"hello world");
b.iter(|| {
for _ in 0..1024 {
test::black_box(&bytes.clone());
}
})
}
#[bench]
fn clone_static(b: &mut Bencher) {
let bytes = Bytes::from_static("hello world 1234567890 and have a good byte 0987654321".as_bytes());
b.iter(|| {
for _ in 0..1024 {
test::black_box(&bytes.clone());
}
})
}
#[bench]
fn clone_arc(b: &mut Bencher) {
let bytes = Bytes::from("hello world 1234567890 and have a good byte 0987654321".as_bytes());
b.iter(|| {
for _ in 0..1024 {
test::black_box(&bytes.clone());
}
})
}
#[bench] #[bench]
fn alloc_write_split_to_mid(b: &mut Bencher) { fn alloc_write_split_to_mid(b: &mut Bencher) {
b.iter(|| { b.iter(|| {
+3 -3
View File
@@ -16,6 +16,6 @@ race:test::run_tests_console::*closure
# Probably more fences in std. # Probably more fences in std.
race:__call_tls_dtors race:__call_tls_dtors
# `is_inline` is explicitly called concurrently without synchronization. The # `is_inline_or_static` is explicitly called concurrently without synchronization.
# safety explanation can be found in a comment. # The safety explanation can be found in a comment.
race:Inner::is_inline race:Inner::is_inline_or_static
+80 -37
View File
@@ -2051,18 +2051,27 @@ impl Inner {
unsafe fn shallow_clone(&self, mut_self: bool) -> Inner { unsafe fn shallow_clone(&self, mut_self: bool) -> Inner {
// Always check `inline` first, because if the handle is using inline // Always check `inline` first, because if the handle is using inline
// data storage, all of the `Inner` struct fields will be gibberish. // data storage, all of the `Inner` struct fields will be gibberish.
if self.is_inline() {
// In this case, a shallow_clone still involves copying the data.
// //
// TODO: Just copy the fields // Additionally, if kind is STATIC, then Arc is *never* changed, making
let mut inner: Inner = mem::uninitialized(); // it safe and faster to check for it now before an atomic acquire.
let len = self.inline_len();
inner.arc = AtomicPtr::new(KIND_INLINE as *mut Shared); if self.is_inline_or_static() {
inner.set_inline_len(len); // In this case, a shallow_clone still involves copying the data.
inner.as_raw()[0..len].copy_from_slice(self.as_ref()); let mut inner: Inner = mem::uninitialized();
ptr::copy_nonoverlapping(
self,
&mut inner,
1,
);
inner inner
} else { } else {
self.shallow_clone_sync(mut_self)
}
}
#[cold]
unsafe fn shallow_clone_sync(&self, mut_self: bool) -> Inner {
// The function requires `&self`, this means that `shallow_clone` // The function requires `&self`, this means that `shallow_clone`
// could be called concurrently. // could be called concurrently.
// //
@@ -2071,12 +2080,40 @@ impl Inner {
// `compare_and_swap` that comes later in this function. The goal is // `compare_and_swap` that comes later in this function. The goal is
// to ensure that if `arc` is currently set to point to a `Shared`, // to ensure that if `arc` is currently set to point to a `Shared`,
// that the current thread acquires the associated memory. // that the current thread acquires the associated memory.
let mut arc = self.arc.load(Acquire); let arc = self.arc.load(Acquire);
let kind = arc as usize & KIND_MASK;
if kind == KIND_ARC {
self.shallow_clone_arc(arc)
} else {
assert!(kind == KIND_VEC);
self.shallow_clone_vec(arc as usize, mut_self)
}
}
unsafe fn shallow_clone_arc(&self, arc: *mut Shared) -> Inner {
debug_assert!(arc as usize & KIND_MASK == KIND_ARC);
let old_size = (*arc).ref_count.fetch_add(1, Relaxed);
if old_size == usize::MAX {
abort();
}
Inner {
arc: AtomicPtr::new(arc),
.. *self
}
}
#[cold]
unsafe fn shallow_clone_vec(&self, arc: usize, mut_self: bool) -> Inner {
// If the buffer is still tracked in a `Vec<u8>`. It is time to // If the buffer is still tracked in a `Vec<u8>`. It is time to
// promote the vec to an `Arc`. This could potentially be called // promote the vec to an `Arc`. This could potentially be called
// concurrently, so some care must be taken. // concurrently, so some care must be taken.
if arc as usize & KIND_MASK == KIND_VEC {
debug_assert!(arc & KIND_MASK == KIND_VEC);
let original_capacity_repr = let original_capacity_repr =
(arc as usize & ORIGINAL_CAPACITY_MASK) >> ORIGINAL_CAPACITY_OFFSET; (arc as usize & ORIGINAL_CAPACITY_MASK) >> ORIGINAL_CAPACITY_OFFSET;
@@ -2125,9 +2162,9 @@ impl Inner {
// ordering will synchronize with the `compare_and_swap` // ordering will synchronize with the `compare_and_swap`
// that happened in the other thread and the `Shared` // that happened in the other thread and the `Shared`
// pointed to by `actual` will be visible. // pointed to by `actual` will be visible.
let actual = self.arc.compare_and_swap(arc, shared, AcqRel); let actual = self.arc.compare_and_swap(arc as *mut Shared, shared, AcqRel);
if actual == arc { if actual as usize == arc {
// The upgrade was successful, the new handle can be // The upgrade was successful, the new handle can be
// returned. // returned.
return Inner { return Inner {
@@ -2142,33 +2179,9 @@ impl Inner {
let shared = Box::from_raw(shared); let shared = Box::from_raw(shared);
mem::forget(*shared); mem::forget(*shared);
// Update the `arc` local variable and fall through to a ref
// count update
arc = actual;
} else if arc as usize & KIND_MASK == KIND_STATIC {
// Static buffer
return Inner {
arc: AtomicPtr::new(arc),
.. *self
};
}
// Buffer already promoted to shared storage, so increment ref // Buffer already promoted to shared storage, so increment ref
// count. // count.
// self.shallow_clone_arc(actual)
// Relaxed ordering is acceptable as the memory has already been
// acquired via the `Acquire` load above.
let old_size = (*arc).ref_count.fetch_add(1, Relaxed);
if old_size == usize::MAX {
panic!(); // TODO: abort
}
Inner {
arc: AtomicPtr::new(arc),
.. *self
}
}
} }
#[inline] #[inline]
@@ -2327,6 +2340,18 @@ impl Inner {
self.kind() == KIND_INLINE self.kind() == KIND_INLINE
} }
#[inline]
fn is_inline_or_static(&self) -> bool {
// The value returned by `kind` isn't itself safe, but the value could
// inform what operations to take, and unsafely do something without
// synchronization.
//
// KIND_INLINE and KIND_STATIC will *never* change, so branches on that
// information is safe.
let kind = self.kind();
kind == KIND_INLINE || kind == KIND_STATIC
}
/// Used for `debug_assert` statements. &mut is used to guarantee that it is /// Used for `debug_assert` statements. &mut is used to guarantee that it is
/// safe to check VEC_KIND /// safe to check VEC_KIND
#[inline] #[inline]
@@ -2827,3 +2852,21 @@ impl PartialEq<Bytes> for BytesMut
&other[..] == &self[..] &other[..] == &self[..]
} }
} }
// While there is `std::process:abort`, it's only available in Rust 1.17, and
// our minimum supported version is currently 1.15. So, this acts as an abort
// by triggering a double panic, which always aborts in Rust.
struct Abort;
impl Drop for Abort {
fn drop(&mut self) {
panic!();
}
}
#[inline(never)]
#[cold]
fn abort() {
let _a = Abort;
panic!();
}