Skip to content

Commit

Permalink
Merge pull request #1182 from CryZe/chunk-64bit
Browse files Browse the repository at this point in the history
Ensure the SWAR chunks are 64-bit in more cases
  • Loading branch information
dtolnay committed Aug 23, 2024
2 parents 50c4328 + 3d837e1 commit fec0376
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/read.rs
Original file line number Diff line number Diff line change
Expand Up @@ -445,7 +445,22 @@ impl<'a> SliceRead<'a> {
// than a naive loop. It runs faster than equivalent two-pass memchr2+SWAR code on
// benchmarks and it's cross-platform, so probably the right fit.
// [1]: https://groups.google.com/forum/#!original/comp.lang.c/2HtQXvg7iKc/xOJeipH6KLMJ

// The following architectures have native support for 64-bit integers,
// but have targets where usize is not 64-bit.
#[cfg(any(
target_arch = "aarch64",
target_arch = "x86_64",
target_arch = "wasm32",
))]
type Chunk = u64;
#[cfg(not(any(
target_arch = "aarch64",
target_arch = "x86_64",
target_arch = "wasm32",
)))]
type Chunk = usize;

const STEP: usize = mem::size_of::<Chunk>();
const ONE_BYTES: Chunk = Chunk::MAX / 255; // 0x0101...01

Expand Down

0 comments on commit fec0376

Please sign in to comment.