zipora 3.1.5

High-performance Rust implementation providing advanced data structures and compression algorithms with memory safety guarantees. Features LRU page cache, sophisticated caching layer, fiber-based concurrency, real-time compression, secure memory pools, SIMD optimizations, and complete C FFI for migration from C++.
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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
//! SIMD Dispatch Macros
//!
//! Provides compile-time and runtime SIMD feature detection macros
//! to reduce code duplication across the codebase.
//!
//! ## Available Macros
//!
//! - [`simd_dispatch!`] - Multi-tier SIMD dispatch with automatic fallback
//! - [`simd_feature_check!`] - Single feature check with fallback
//! - [`simd_select!`] - Feature-based expression selection
//!
//! ## Example
//!
//! ```ignore
//! use zipora::simd_dispatch;
//!
//! fn process_data(data: &[u8]) -> Vec<u8> {
//!     simd_dispatch!(
//!         data,
//!         avx2 => process_avx2(data),
//!         sse2 => process_sse2(data),
//!         _ => process_scalar(data)
//!     )
//! }
//! ```

/// Multi-tier SIMD dispatch macro with automatic fallback chain.
///
/// Checks CPU features at runtime and dispatches to the best available
/// implementation. Features are checked in order (first match wins).
///
/// # Syntax
///
/// ```ignore
/// simd_dispatch!(
///     avx512 => expr1,           // Check avx512f + avx512bw
///     avx2 => expr2,             // Check avx2
///     avx2_bmi2 => expr3,        // Check avx2 + bmi2
///     sse42 => expr4,            // Check sse4.2
///     sse2 => expr5,             // Check sse2
///     bmi2 => expr6,             // Check bmi2
///     popcnt => expr7,           // Check popcnt
///     neon => expr8,             // Check ARM NEON (aarch64)
///     _ => fallback_expr         // Scalar fallback (required)
/// )
/// ```
///
/// # Example
///
/// ```ignore
/// fn hash_bytes(data: &[u8]) -> u64 {
///     simd_dispatch!(
///         avx2 => unsafe { hash_avx2(data) },
///         sse2 => unsafe { hash_sse2(data) },
///         _ => hash_scalar(data)
///     )
/// }
/// ```
#[macro_export]
macro_rules! simd_dispatch {
    // AVX-512 + more tiers
    (avx512 => $avx512:expr, avx2 => $avx2:expr, sse2 => $sse2:expr, _ => $fallback:expr) => {{
        #[cfg(target_arch = "x86_64")]
        {
            #[cfg(feature = "avx512")]
            {
                if ::std::is_x86_feature_detected!("avx512f")
                    && ::std::is_x86_feature_detected!("avx512bw")
                {
                    return $avx512;
                }
            }
            if ::std::is_x86_feature_detected!("avx2") {
                return $avx2;
            }
            if ::std::is_x86_feature_detected!("sse2") {
                return $sse2;
            }
        }
        #[cfg(target_arch = "aarch64")]
        {
            // ARM64 always has NEON, use sse2 equivalent
            return $sse2;
        }
        $fallback
    }};

    // AVX2 + SSE2 + fallback (common pattern)
    (avx2 => $avx2:expr, sse2 => $sse2:expr, _ => $fallback:expr) => {{
        #[cfg(target_arch = "x86_64")]
        {
            if ::std::is_x86_feature_detected!("avx2") {
                return $avx2;
            }
            if ::std::is_x86_feature_detected!("sse2") {
                return $sse2;
            }
        }
        #[cfg(target_arch = "aarch64")]
        {
            return $sse2;
        }
        $fallback
    }};

    // AVX2 + BMI2 combined check
    (avx2_bmi2 => $avx2_bmi2:expr, avx2 => $avx2:expr, _ => $fallback:expr) => {{
        #[cfg(target_arch = "x86_64")]
        {
            if ::std::is_x86_feature_detected!("avx2")
                && ::std::is_x86_feature_detected!("bmi2")
            {
                return $avx2_bmi2;
            }
            if ::std::is_x86_feature_detected!("avx2") {
                return $avx2;
            }
        }
        $fallback
    }};

    // AVX2 only + fallback
    (avx2 => $avx2:expr, _ => $fallback:expr) => {{
        #[cfg(target_arch = "x86_64")]
        {
            if ::std::is_x86_feature_detected!("avx2") {
                return $avx2;
            }
        }
        $fallback
    }};

    // SSE4.2 only + fallback
    (sse42 => $sse42:expr, _ => $fallback:expr) => {{
        #[cfg(target_arch = "x86_64")]
        {
            if ::std::is_x86_feature_detected!("sse4.2") {
                return $sse42;
            }
        }
        $fallback
    }};

    // BMI2 only + fallback
    (bmi2 => $bmi2:expr, _ => $fallback:expr) => {{
        #[cfg(target_arch = "x86_64")]
        {
            if ::std::is_x86_feature_detected!("bmi2") {
                return $bmi2;
            }
        }
        $fallback
    }};

    // POPCNT only + fallback
    (popcnt => $popcnt:expr, _ => $fallback:expr) => {{
        #[cfg(target_arch = "x86_64")]
        {
            if ::std::is_x86_feature_detected!("popcnt") {
                return $popcnt;
            }
        }
        $fallback
    }};

    // Full 6-tier dispatch
    (
        avx512 => $avx512:expr,
        avx2_bmi2 => $avx2_bmi2:expr,
        avx2 => $avx2:expr,
        sse42_bmi2 => $sse42_bmi2:expr,
        sse42 => $sse42:expr,
        bmi2 => $bmi2:expr,
        _ => $fallback:expr
    ) => {{
        #[cfg(target_arch = "x86_64")]
        {
            #[cfg(feature = "avx512")]
            {
                if ::std::is_x86_feature_detected!("avx512f")
                    && ::std::is_x86_feature_detected!("avx512bw")
                {
                    return $avx512;
                }
            }
            if ::std::is_x86_feature_detected!("avx2")
                && ::std::is_x86_feature_detected!("bmi2")
            {
                return $avx2_bmi2;
            }
            if ::std::is_x86_feature_detected!("avx2") {
                return $avx2;
            }
            if ::std::is_x86_feature_detected!("sse4.2")
                && ::std::is_x86_feature_detected!("bmi2")
            {
                return $sse42_bmi2;
            }
            if ::std::is_x86_feature_detected!("sse4.2") {
                return $sse42;
            }
            if ::std::is_x86_feature_detected!("bmi2") {
                return $bmi2;
            }
        }
        $fallback
    }};
}

/// Single SIMD feature check with fallback.
///
/// Simpler than `simd_dispatch!` for cases where only one feature is checked.
///
/// # Example
///
/// ```ignore
/// fn count_ones(data: &[u64]) -> u64 {
///     simd_feature_check!(
///         "popcnt",
///         unsafe { count_ones_popcnt(data) },
///         count_ones_scalar(data)
///     )
/// }
/// ```
#[macro_export]
macro_rules! simd_feature_check {
    // Single feature check
    ($feature:tt, $simd_expr:expr, $fallback:expr) => {{
        #[cfg(target_arch = "x86_64")]
        {
            if ::std::is_x86_feature_detected!($feature) {
                return $simd_expr;
            }
        }
        $fallback
    }};

    // Dual feature check (e.g., avx2 + bmi2)
    ($feat1:tt, $feat2:tt, $simd_expr:expr, $fallback:expr) => {{
        #[cfg(target_arch = "x86_64")]
        {
            if ::std::is_x86_feature_detected!($feat1)
                && ::std::is_x86_feature_detected!($feat2)
            {
                return $simd_expr;
            }
        }
        $fallback
    }};
}

/// SIMD feature-based expression selection (no return, just evaluates to value).
///
/// Unlike `simd_dispatch!` which uses `return`, this macro evaluates to
/// the selected expression directly. Useful for assignments and match arms.
///
/// # Example
///
/// ```ignore
/// let result = simd_select!(
///     avx2 => compute_avx2(data),
///     _ => compute_scalar(data)
/// );
/// ```
#[macro_export]
macro_rules! simd_select {
    // AVX2 + fallback (expression, no return)
    (avx2 => $avx2:expr, _ => $fallback:expr) => {{
        #[cfg(target_arch = "x86_64")]
        {
            if ::std::is_x86_feature_detected!("avx2") {
                $avx2
            } else {
                $fallback
            }
        }
        #[cfg(not(target_arch = "x86_64"))]
        {
            $fallback
        }
    }};

    // AVX2 + SSE2 + fallback (expression, no return)
    (avx2 => $avx2:expr, sse2 => $sse2:expr, _ => $fallback:expr) => {{
        #[cfg(target_arch = "x86_64")]
        {
            if ::std::is_x86_feature_detected!("avx2") {
                $avx2
            } else if ::std::is_x86_feature_detected!("sse2") {
                $sse2
            } else {
                $fallback
            }
        }
        #[cfg(not(target_arch = "x86_64"))]
        {
            $fallback
        }
    }};

    // Single feature check (expression, no return)
    ($feature:ident => $simd:expr, _ => $fallback:expr) => {{
        #[cfg(target_arch = "x86_64")]
        {
            if ::std::is_x86_feature_detected!(stringify!($feature)) {
                $simd
            } else {
                $fallback
            }
        }
        #[cfg(not(target_arch = "x86_64"))]
        {
            $fallback
        }
    }};
}

/// Check if a SIMD feature is available at runtime.
///
/// Returns `true` if the feature is available, `false` otherwise.
/// Always returns `false` on non-x86_64 platforms.
///
/// # Example
///
/// ```ignore
/// if simd_available!("avx2") {
///     println!("AVX2 is available!");
/// }
/// ```
#[macro_export]
macro_rules! simd_available {
    ($feature:tt) => {{
        #[cfg(target_arch = "x86_64")]
        {
            ::std::is_x86_feature_detected!($feature)
        }
        #[cfg(not(target_arch = "x86_64"))]
        {
            false
        }
    }};

    // Dual feature check
    ($feat1:tt, $feat2:tt) => {{
        #[cfg(target_arch = "x86_64")]
        {
            ::std::is_x86_feature_detected!($feat1)
                && ::std::is_x86_feature_detected!($feat2)
        }
        #[cfg(not(target_arch = "x86_64"))]
        {
            false
        }
    }};
}

#[cfg(test)]
#[cfg(target_arch = "x86_64")]
mod tests {
    // Note: These tests verify macro compilation and basic functionality.
    // Actual SIMD execution depends on CPU features.
    // Uses direct is_x86_feature_detected! calls to avoid macro hygiene issues.

    #[test]
    fn test_simd_available_macro() {
        // Direct feature detection test
        let _has_sse2 = std::is_x86_feature_detected!("sse2");
        let _has_avx2 = std::is_x86_feature_detected!("avx2");
        let _has_bmi2 = std::is_x86_feature_detected!("bmi2");
        // Feature should be detected on any x86_64 machine
        assert!(_has_sse2); // SSE2 is baseline for x86_64
    }

    #[test]
    fn test_simd_select_macro() {
        fn scalar_impl() -> i32 {
            42
        }
        fn avx2_impl() -> i32 {
            84
        }

        let result = crate::simd_select!(
            avx2 => avx2_impl(),
            _ => scalar_impl()
        );

        // Result should be one of the two values
        assert!(result == 42 || result == 84);
    }

    #[test]
    fn test_simd_select_with_sse2() {
        fn scalar_impl() -> i32 {
            1
        }
        fn sse2_impl() -> i32 {
            2
        }
        fn avx2_impl() -> i32 {
            3
        }

        let result = crate::simd_select!(
            avx2 => avx2_impl(),
            sse2 => sse2_impl(),
            _ => scalar_impl()
        );

        // Result should be one of the three values
        assert!(result >= 1 && result <= 3);
    }

    // Test simd_dispatch! with a function that uses return
    fn dispatch_test_fn(val: i32) -> i32 {
        crate::simd_dispatch!(
            avx2 => val * 2,
            sse2 => val + 10,
            _ => val
        )
    }

    #[test]
    fn test_simd_dispatch_macro() {
        let result = dispatch_test_fn(5);
        // Should be 10 (avx2), 15 (sse2), or 5 (scalar)
        assert!(result == 10 || result == 15 || result == 5);
    }

    // Test single feature check
    fn feature_check_test_fn(val: i32) -> i32 {
        crate::simd_feature_check!(
            "avx2",
            val * 3,
            val
        )
    }

    #[test]
    fn test_simd_feature_check_macro() {
        let result = feature_check_test_fn(7);
        // Should be 21 (avx2) or 7 (fallback)
        assert!(result == 21 || result == 7);
    }

    // Test dual feature check
    fn dual_feature_test_fn(val: i32) -> i32 {
        crate::simd_feature_check!(
            "avx2", "bmi2",
            val * 4,
            val
        )
    }

    #[test]
    fn test_dual_feature_check_macro() {
        let result = dual_feature_test_fn(5);
        // Should be 20 (avx2+bmi2) or 5 (fallback)
        assert!(result == 20 || result == 5);
    }
}