Struct aho_corasick::packed::teddy::builder::x86_64::SlimAVX2

source ·
pub(super) struct SlimAVX2<const BYTES: usize> {
    slim128: Slim<__m128i, BYTES>,
    slim256: Slim<__m256i, BYTES>,
}

Fields§

§slim128: Slim<__m128i, BYTES>§slim256: Slim<__m256i, BYTES>

Implementations§

source§

impl SlimAVX2<1>

source

pub(super) fn new(patterns: &Arc<Patterns>) -> Option<Searcher>

Creates a new searcher using “slim” Teddy with 256-bit vectors. If AVX2 is not available in the current environment, then this returns None.

source

unsafe fn new_unchecked(patterns: &Arc<Patterns>) -> Searcher

Available with target feature avx2 only.

Creates a new searcher using “slim” Teddy with 256-bit vectors without checking whether AVX2 is available or not.

§Safety

Callers must ensure that AVX2 is available in the current environment.

source§

impl SlimAVX2<2>

source

pub(super) fn new(patterns: &Arc<Patterns>) -> Option<Searcher>

Creates a new searcher using “slim” Teddy with 256-bit vectors. If AVX2 is not available in the current environment, then this returns None.

source

unsafe fn new_unchecked(patterns: &Arc<Patterns>) -> Searcher

Available with target feature avx2 only.

Creates a new searcher using “slim” Teddy with 256-bit vectors without checking whether AVX2 is available or not.

§Safety

Callers must ensure that AVX2 is available in the current environment.

source§

impl SlimAVX2<3>

source

pub(super) fn new(patterns: &Arc<Patterns>) -> Option<Searcher>

Creates a new searcher using “slim” Teddy with 256-bit vectors. If AVX2 is not available in the current environment, then this returns None.

source

unsafe fn new_unchecked(patterns: &Arc<Patterns>) -> Searcher

Available with target feature avx2 only.

Creates a new searcher using “slim” Teddy with 256-bit vectors without checking whether AVX2 is available or not.

§Safety

Callers must ensure that AVX2 is available in the current environment.

source§

impl SlimAVX2<4>

source

pub(super) fn new(patterns: &Arc<Patterns>) -> Option<Searcher>

Creates a new searcher using “slim” Teddy with 256-bit vectors. If AVX2 is not available in the current environment, then this returns None.

source

unsafe fn new_unchecked(patterns: &Arc<Patterns>) -> Searcher

Available with target feature avx2 only.

Creates a new searcher using “slim” Teddy with 256-bit vectors without checking whether AVX2 is available or not.

§Safety

Callers must ensure that AVX2 is available in the current environment.

Trait Implementations§

source§

impl<const BYTES: usize> Clone for SlimAVX2<BYTES>

source§

fn clone(&self) -> SlimAVX2<BYTES>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<const BYTES: usize> Debug for SlimAVX2<BYTES>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl SearcherT for SlimAVX2<1>

source§

unsafe fn find(&self, start: *const u8, end: *const u8) -> Option<Match>

Execute a search on the given haystack (identified by start and end raw pointers). Read more
source§

impl SearcherT for SlimAVX2<2>

source§

unsafe fn find(&self, start: *const u8, end: *const u8) -> Option<Match>

Execute a search on the given haystack (identified by start and end raw pointers). Read more
source§

impl SearcherT for SlimAVX2<3>

source§

unsafe fn find(&self, start: *const u8, end: *const u8) -> Option<Match>

Execute a search on the given haystack (identified by start and end raw pointers). Read more
source§

impl SearcherT for SlimAVX2<4>

source§

unsafe fn find(&self, start: *const u8, end: *const u8) -> Option<Match>

Execute a search on the given haystack (identified by start and end raw pointers). Read more

Auto Trait Implementations§

§

impl<const BYTES: usize> Freeze for SlimAVX2<BYTES>

§

impl<const BYTES: usize> RefUnwindSafe for SlimAVX2<BYTES>

§

impl<const BYTES: usize> Send for SlimAVX2<BYTES>

§

impl<const BYTES: usize> Sync for SlimAVX2<BYTES>

§

impl<const BYTES: usize> Unpin for SlimAVX2<BYTES>

§

impl<const BYTES: usize> UnwindSafe for SlimAVX2<BYTES>

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.