-
Notifications
You must be signed in to change notification settings - Fork 297
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor Bytes to use an internal vtable
Bytes is a useful tool for managing multiple slices into the same region of memory, and the other things it used to have been removed to reduce complexity. The exact strategy for managing the multiple references is no longer hard-coded, but instead backing by a customizable vtable. - Removed ability to mutate the underlying memory from the `Bytes` type. - Removed the "inline" (SBO) mechanism in `Bytes`. The reduces a large amount of complexity, and improves performance when accessing the slice of bytes, since a branch is no longer needed to check if the data is inline. - Removed `Bytes` knowledge of `BytesMut` (`BytesMut` may grow that knowledge back at a future point.)
- Loading branch information
1 parent
ebe9602
commit ae6ac55
Showing
17 changed files
with
2,169 additions
and
2,828 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
#![feature(test)] | ||
#![deny(warnings, rust_2018_idioms)] | ||
|
||
extern crate test; | ||
|
||
use test::Bencher; | ||
use bytes::{BufMut, BytesMut}; | ||
|
||
#[bench] | ||
fn alloc_small(b: &mut Bencher) { | ||
b.iter(|| { | ||
for _ in 0..1024 { | ||
test::black_box(BytesMut::with_capacity(12)); | ||
} | ||
}) | ||
} | ||
|
||
#[bench] | ||
fn alloc_mid(b: &mut Bencher) { | ||
b.iter(|| { | ||
test::black_box(BytesMut::with_capacity(128)); | ||
}) | ||
} | ||
|
||
#[bench] | ||
fn alloc_big(b: &mut Bencher) { | ||
b.iter(|| { | ||
test::black_box(BytesMut::with_capacity(4096)); | ||
}) | ||
} | ||
|
||
|
||
#[bench] | ||
fn deref_unique(b: &mut Bencher) { | ||
let mut buf = BytesMut::with_capacity(4096); | ||
buf.put(&[0u8; 1024][..]); | ||
|
||
b.iter(|| { | ||
for _ in 0..1024 { | ||
test::black_box(&buf[..]); | ||
} | ||
}) | ||
} | ||
|
||
#[bench] | ||
fn deref_unique_unroll(b: &mut Bencher) { | ||
let mut buf = BytesMut::with_capacity(4096); | ||
buf.put(&[0u8; 1024][..]); | ||
|
||
b.iter(|| { | ||
for _ in 0..128 { | ||
test::black_box(&buf[..]); | ||
test::black_box(&buf[..]); | ||
test::black_box(&buf[..]); | ||
test::black_box(&buf[..]); | ||
test::black_box(&buf[..]); | ||
test::black_box(&buf[..]); | ||
test::black_box(&buf[..]); | ||
test::black_box(&buf[..]); | ||
} | ||
}) | ||
} | ||
|
||
#[bench] | ||
fn deref_shared(b: &mut Bencher) { | ||
let mut buf = BytesMut::with_capacity(4096); | ||
buf.put(&[0u8; 1024][..]); | ||
let _b2 = buf.split_off(1024); | ||
|
||
b.iter(|| { | ||
for _ in 0..1024 { | ||
test::black_box(&buf[..]); | ||
} | ||
}) | ||
} | ||
|
||
#[bench] | ||
fn deref_two(b: &mut Bencher) { | ||
let mut buf1 = BytesMut::with_capacity(8); | ||
buf1.put(&[0u8; 8][..]); | ||
|
||
let mut buf2 = BytesMut::with_capacity(4096); | ||
buf2.put(&[0u8; 1024][..]); | ||
|
||
b.iter(|| { | ||
for _ in 0..512 { | ||
test::black_box(&buf1[..]); | ||
test::black_box(&buf2[..]); | ||
} | ||
}) | ||
} | ||
|
||
#[bench] | ||
fn clone_frozen(b: &mut Bencher) { | ||
let bytes = BytesMut::from(&b"hello world 1234567890 and have a good byte 0987654321"[..]).split().freeze(); | ||
|
||
b.iter(|| { | ||
for _ in 0..1024 { | ||
test::black_box(&bytes.clone()); | ||
} | ||
}) | ||
} | ||
|
||
#[bench] | ||
fn alloc_write_split_to_mid(b: &mut Bencher) { | ||
b.iter(|| { | ||
let mut buf = BytesMut::with_capacity(128); | ||
buf.put_slice(&[0u8; 64]); | ||
test::black_box(buf.split_to(64)); | ||
}) | ||
} | ||
|
||
#[bench] | ||
fn drain_write_drain(b: &mut Bencher) { | ||
let data = [0u8; 128]; | ||
|
||
b.iter(|| { | ||
let mut buf = BytesMut::with_capacity(1024); | ||
let mut parts = Vec::with_capacity(8); | ||
|
||
for _ in 0..8 { | ||
buf.put(&data[..]); | ||
parts.push(buf.split_to(128)); | ||
} | ||
|
||
test::black_box(parts); | ||
}) | ||
} | ||
|
||
#[bench] | ||
fn fmt_write(b: &mut Bencher) { | ||
use std::fmt::Write; | ||
let mut buf = BytesMut::with_capacity(128); | ||
let s = "foo bar baz quux lorem ipsum dolor et"; | ||
|
||
b.bytes = s.len() as u64; | ||
b.iter(|| { | ||
let _ = write!(buf, "{}", s); | ||
test::black_box(&buf); | ||
unsafe { buf.set_len(0); } | ||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
parameters: | ||
cmd: test | ||
cmd: build | ||
rust_version: stable | ||
|
||
jobs: | ||
|
Oops, something went wrong.