1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
/*!
`memx` minics libc.

This crate is implemented memory functions like libc memcmp(), memchr(),
memmem(), memcpy(), memset().

# Features

- Rewriting with rust lang.
- minimum support rustc 1.56.1 (59eed8a2a 2021-11-01)

# Todo

- [ ] Support the zero overhead trait.
- [x] Support more fast routine on armv7-android
- [x] Support more fast routine on x86_64
- [x] Support #!\[no_std\]

# Support status of miri :: rustc 1.68.0-nightly (77429957a 2023-01-01)

Ok lists:

- cargo +nightly miri test --target=x86_64-unknown-linux-gnu
- cargo +nightly miri test --target=i686-unknown-linux-gnu
- cargo +nightly miri test --target=i586-unknown-linux-gnu
- cargo +nightly miri test --target=aarch64-unknown-linux-gnu
- cargo +nightly miri test --target=armv7-unknown-linux-gnueabihf

Failed lists:

- nothing

*/
//#![no_std]
#![cfg_attr(not(test), no_std)]
use core::cmp::Ordering;

pub mod arch;
pub mod iter;
pub mod mem;
pub(crate) mod utils;

pub(crate) use utils::{B1Dbl, B1Qpl, B1Sgl, B1Tpl};

/// used by memcpy()
#[derive(Clone, Copy, PartialEq, PartialOrd, Eq, Ord, Debug, Hash)]
pub struct RangeError;

/// This mimics `libc::memchr()`, same as `buf.iter().position(|&x| x == by1)`.
pub fn memchr(buf: &[u8], by1: u8) -> Option<usize> {
    let needle = B1Sgl::new(by1);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memchr_sgl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memchr_sgl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memchr_sgl_impl(buf, needle);
    //
    r
}

/// This mimics `libc::memrchr()`, same as `buf.iter().rposition(|&x| x == by1)`.
pub fn memrchr(buf: &[u8], by1: u8) -> Option<usize> {
    let needle = B1Sgl::new(by1);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memrchr_sgl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memrchr_sgl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memrchr_sgl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().position(|&x| x == by1 || x == by2)`.
pub fn memchr_dbl(buf: &[u8], by1: u8, by2: u8) -> Option<usize> {
    let needle = B1Dbl::new(by1, by2);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memchr_dbl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memchr_dbl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memchr_dbl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().rposition(|&x| x == by1 || x == by2)`.
pub fn memrchr_dbl(buf: &[u8], by1: u8, by2: u8) -> Option<usize> {
    let needle = B1Dbl::new(by1, by2);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memrchr_dbl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memrchr_dbl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memrchr_dbl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().position(|&x| x == by1 || x == by2 || x == by3)`.
pub fn memchr_tpl(buf: &[u8], by1: u8, by2: u8, by3: u8) -> Option<usize> {
    let needle = B1Tpl::new(by1, by2, by3);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memchr_tpl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memchr_tpl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memchr_tpl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().rposition(|&x| x == by1 || x == by2 || x == by3)`.
pub fn memrchr_tpl(buf: &[u8], by1: u8, by2: u8, by3: u8) -> Option<usize> {
    let needle = B1Tpl::new(by1, by2, by3);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memrchr_tpl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memrchr_tpl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memrchr_tpl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().position(|&x| x == by1 || x == by2 || x == by3 || x == by4)`.
pub fn memchr_qpl(buf: &[u8], by1: u8, by2: u8, by3: u8, by4: u8) -> Option<usize> {
    let needle = B1Qpl::new(by1, by2, by3, by4);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memchr_qpl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memchr_qpl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memchr_qpl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().rposition(|&x| x == by1 || x == by2 || x == by3 || x == by4)`.
pub fn memrchr_qpl(buf: &[u8], by1: u8, by2: u8, by3: u8, by4: u8) -> Option<usize> {
    let needle = B1Qpl::new(by1, by2, by3, by4);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memrchr_qpl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memrchr_qpl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memrchr_qpl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().position(|&x| x != by1)`, not included libc.
pub fn memnechr(buf: &[u8], by1: u8) -> Option<usize> {
    let needle = B1Sgl::new(by1);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memnechr_sgl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memnechr_sgl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memnechr_sgl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().rposition(|&x| x != by1)`, not included libc.
pub fn memrnechr(buf: &[u8], by1: u8) -> Option<usize> {
    let needle = B1Sgl::new(by1);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memrnechr_sgl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memrnechr_sgl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memrnechr_sgl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().position(|&x| x != by1 && x != by2)`, not included libc.
pub fn memnechr_dbl(buf: &[u8], by1: u8, by2: u8) -> Option<usize> {
    let needle = B1Dbl::new(by1, by2);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memnechr_dbl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memnechr_dbl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memnechr_dbl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().rposition(|&x| x != by1 && x != by2)`, not included libc.
pub fn memrnechr_dbl(buf: &[u8], by1: u8, by2: u8) -> Option<usize> {
    let needle = B1Dbl::new(by1, by2);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memrnechr_dbl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memrnechr_dbl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memrnechr_dbl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().position(|&x| x != by1 && x != by2 && x != by3)`, not included libc.
pub fn memnechr_tpl(buf: &[u8], by1: u8, by2: u8, by3: u8) -> Option<usize> {
    let needle = B1Tpl::new(by1, by2, by3);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memnechr_tpl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memnechr_tpl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memnechr_tpl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().rposition(|&x| x != by1 && x != by2 && x != by3)`, not included libc.
pub fn memrnechr_tpl(buf: &[u8], by1: u8, by2: u8, by3: u8) -> Option<usize> {
    let needle = B1Tpl::new(by1, by2, by3);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memrnechr_tpl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memrnechr_tpl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memrnechr_tpl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().position(|&x| x != by1 && x != by2 && x != by3 && x != by4)`, not included libc.
pub fn memnechr_qpl(buf: &[u8], by1: u8, by2: u8, by3: u8, by4: u8) -> Option<usize> {
    let needle = B1Qpl::new(by1, by2, by3, by4);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memnechr_qpl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memnechr_qpl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memnechr_qpl_impl(buf, needle);
    //
    r
}

/// This is same as `buf.iter().rposition(|&x| x != by1 && x != by2 && x != by3 && x != by4)`, not included libc.
pub fn memrnechr_qpl(buf: &[u8], by1: u8, by2: u8, by3: u8, by4: u8) -> Option<usize> {
    let needle = B1Qpl::new(by1, by2, by3, by4);
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memrnechr_qpl_impl(buf, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memrnechr_qpl_impl(buf, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memrnechr_qpl_impl(buf, needle);
    //
    r
}

/// This mimics `libc::memcmp()`, same as `a.cmp(&b)`.
pub fn memcmp(a: &[u8], b: &[u8]) -> Ordering {
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memcmp_impl(a, b) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memcmp_impl(a, b) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memcmp_impl(a, b);
    //
    r
}

/// This mimics `libc::bcmp()`, same as `a == b`.
pub fn memeq(a: &[u8], b: &[u8]) -> bool {
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memeq_impl(a, b) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memeq_impl(a, b) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memeq_impl(a, b);
    //
    r
}

/// This mimics `libc::memmem()`, same as `(haystack as &str).find(needle as &str)` or `haystack.windows(needle.len()).position(|window| window == needle)`.
///
/// This `memmem()` function is implemented using stochastic naive algorithm.
/// ref.) [The optimized naive string-search algorithm](https://crates.io/crates/naive_opt)
///
pub fn memmem(haystack: &[u8], needle: &[u8]) -> Option<usize> {
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memmem_impl(haystack, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memmem_impl(haystack, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memmem_impl(haystack, needle);
    //
    r
}

/// This mimics `libc::memrmem()`, same as `(haystack as &str).rfind(needle as &str)` or `haystack.windows(needle.len()).rposition(|window| window == needle)`.
///
/// This `memrmem()` function is implemented using stochastic naive algorithm.
/// ref.) [The optimized naive string-search algorithm](https://crates.io/crates/naive_opt)
///
pub fn memrmem(haystack: &[u8], needle: &[u8]) -> Option<usize> {
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memrmem_impl(haystack, needle) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memrmem_impl(haystack, needle) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memrmem_impl(haystack, needle);
    //
    r
}

/// This mimics `libc::memcpy()`, same as `dst = src`.
///
/// The `memcpy()` function copies `src.len()` bytes from the `src` to the `dst`.
/// The `src` and the `dst` must not overlape.
/// This function return `Err(RangeError)` if `dst.len() < src.len()`, otherwise return `Ok(())`
pub fn memcpy(dst: &mut [u8], src: &[u8]) -> Result<(), RangeError> {
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    let r = {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        { arch::x86::_memcpy_impl(dst, src) }
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        { mem::_memcpy_impl(dst, src) }
    };
    #[cfg(feature = "test_pointer_width")]
    let r = mem::_memcpy_impl(dst, src);
    //
    r
}

/// This mimics `libc::memset()`, same as `buf.fill(c)`.
///
/// The `memset()` function fills `buf` with the `c`.
pub fn memset(buf: &mut [u8], c: u8) {
    #[rustfmt::skip]
    #[cfg(not(feature = "test_pointer_width"))]
    {
        #[cfg(any(target_arch = "x86_64", target_arch = "x86"))]
        arch::x86::_memset_impl(buf, c);
        #[cfg(not(any(target_arch = "x86_64", target_arch = "x86")))]
        mem::_memset_impl(buf, c);
    };
    #[cfg(feature = "test_pointer_width")]
    mem::_memset_impl(buf, c);
}