zipora 3.1.2

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
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
//! # SIMD Memory Operations Module (Phase 1.2)
//!
//! High-performance memory operations using SIMD instructions with multi-tier optimization.
//! Inspired by world-class implementations while maintaining Rust's memory safety guarantees.
//!
//! ## Performance Targets
//! - **Small copies** (≤64 bytes): 2-3x faster than memcpy
//! - **Medium copies** (64-4096 bytes): 1.5-2x faster with prefetching
//! - **Large copies** (>4KB): Match or exceed system memcpy
//!
//! ## Architecture
//! - **Runtime CPU Detection**: Optimal implementation selection based on available features
//! - **Multi-tier SIMD**: AVX-512 → AVX2 → SSE2 → Scalar fallback
//! - **Size Optimization**: Different strategies for small/medium/large operations
//! - **Memory Safety**: Safe public APIs wrapping optimized unsafe implementations
//!
//! ## Features
//! - Fast memory copy (aligned/unaligned)
//! - Fast memory comparison with early termination
//! - Fast memory search and pattern matching
//! - Fast memory initialization
//! - Comprehensive testing and benchmarking

use crate::system::cpu_features::{CpuFeatures, get_cpu_features};
use crate::error::{Result, ZiporaError};
use crate::memory::cache_layout::{PrefetchHint, CacheLayoutConfig, align_to_cache_line};
use std::ptr;

/// Size thresholds for different optimization strategies
const SMALL_COPY_THRESHOLD: usize = 64;
const MEDIUM_COPY_THRESHOLD: usize = 4096;
const CACHE_LINE_SIZE: usize = 64;

/// SIMD implementation tiers based on available CPU features
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum SimdTier {
    /// AVX-512 implementation (64-byte operations)
    Avx512,
    /// AVX2 implementation (32-byte operations)
    Avx2,
    /// SSE2 implementation (16-byte operations)
    Sse2,
    /// Scalar fallback implementation
    Scalar,
}

/// SIMD Memory Operations dispatcher with runtime CPU feature detection
#[derive(Debug, Clone)]
pub struct SimdMemOps {
    /// Selected implementation tier based on CPU features
    tier: SimdTier,
    /// CPU features available at runtime
    cpu_features: &'static CpuFeatures,
    /// Cache layout configuration for optimization
    cache_config: CacheLayoutConfig,
}

impl SimdMemOps {
    /// Create a new SIMD memory operations instance with optimal tier selection
    pub fn new() -> Self {
        let cpu_features = get_cpu_features();
        let tier = Self::select_optimal_tier(cpu_features);
        
        Self {
            tier,
            cpu_features,
            cache_config: CacheLayoutConfig::new(),
        }
    }

    /// Create a new SIMD memory operations instance with specific cache configuration
    pub fn with_cache_config(cache_config: CacheLayoutConfig) -> Self {
        let cpu_features = get_cpu_features();
        let tier = Self::select_optimal_tier(cpu_features);
        
        Self {
            tier,
            cpu_features,
            cache_config,
        }
    }
    
    /// Select the optimal SIMD implementation tier based on available CPU features
    fn select_optimal_tier(features: &CpuFeatures) -> SimdTier {
        if features.has_avx512f && features.has_avx512vl && features.has_avx512bw {
            SimdTier::Avx512
        } else if features.has_avx2 {
            SimdTier::Avx2
        } else if features.has_sse41 && features.has_sse42 {
            SimdTier::Sse2
        } else {
            SimdTier::Scalar
        }
    }
    
    /// Get the currently selected SIMD tier
    pub fn tier(&self) -> SimdTier {
        self.tier
    }
    
    /// Get CPU features
    pub fn cpu_features(&self) -> &CpuFeatures {
        self.cpu_features
    }

    /// Get cache configuration
    pub fn cache_config(&self) -> &CacheLayoutConfig {
        &self.cache_config
    }
}

//==============================================================================
// PUBLIC SAFE APIS
//==============================================================================

impl SimdMemOps {
    /// Fast memory copy with optimal SIMD selection
    /// 
    /// # Safety
    /// This function provides a safe wrapper around optimized memory copy operations.
    /// Input slices must be valid and non-overlapping for optimal performance.
    ///
    /// # Performance
    /// - Small copies (≤64 bytes): 2-3x faster than standard copy
    /// - Medium copies (64-4096 bytes): 1.5-2x faster with prefetching
    /// - Large copies (>4KB): Matches or exceeds system memcpy
    pub fn copy_nonoverlapping(&self, src: &[u8], dst: &mut [u8]) -> Result<()> {
        if src.len() != dst.len() {
            return Err(ZiporaError::invalid_data(
                format!("Source and destination lengths don't match: {} vs {}", src.len(), dst.len())
            ));
        }
        
        if src.is_empty() {
            return Ok(());
        }
        
        // Check for overlap (undefined behavior in unsafe code)
        let src_start = src.as_ptr() as usize;
        let src_end = src_start + src.len();
        let dst_start = dst.as_mut_ptr() as usize;
        let dst_end = dst_start + dst.len();

        if (src_start < dst_end && dst_start < src_end) {
            return Err(ZiporaError::invalid_data(
                "Source and destination slices must not overlap".to_string()
            ));
        }

        // SAFETY: pointers valid from slice bounds, non-overlapping verified above, len checked
        unsafe {
            self.simd_memcpy_unaligned(dst.as_mut_ptr(), src.as_ptr(), src.len());
        }
        
        Ok(())
    }
    
    /// Fast aligned memory copy for cache-aligned data
    /// 
    /// # Safety
    /// Both source and destination must be aligned to cache line boundaries (64 bytes)
    /// for optimal performance. Use for large, aligned allocations.
    pub fn copy_aligned(&self, src: &[u8], dst: &mut [u8]) -> Result<()> {
        if src.len() != dst.len() {
            return Err(ZiporaError::invalid_data(
                format!("Source and destination lengths don't match: {} vs {}", src.len(), dst.len())
            ));
        }
        
        // Verify alignment
        let src_aligned = (src.as_ptr() as usize) % CACHE_LINE_SIZE == 0;
        let dst_aligned = (dst.as_mut_ptr() as usize) % CACHE_LINE_SIZE == 0;
        
        if !src_aligned || !dst_aligned {
            return Err(ZiporaError::invalid_data(
                "Source and destination must be 64-byte aligned for aligned copy".to_string()
            ));
        }
        
        if src.is_empty() {
            return Ok(());
        }

        // SAFETY: pointers valid from slice bounds, alignment verified above, len checked
        unsafe {
            self.simd_memcpy_aligned(dst.as_mut_ptr(), src.as_ptr(), src.len());
        }
        
        Ok(())
    }
    
    /// Fast memory comparison with SIMD acceleration and early termination
    /// 
    /// Returns:
    /// - `0` if slices are equal
    /// - Negative value if first differing byte in `a` is less than in `b`
    /// - Positive value if first differing byte in `a` is greater than in `b`
    /// 
    /// # Performance
    /// Uses SIMD instructions to compare multiple bytes simultaneously with
    /// early termination on first difference.
    pub fn compare(&self, a: &[u8], b: &[u8]) -> i32 {
        use std::cmp::Ordering;
        
        match a.len().cmp(&b.len()) {
            Ordering::Less => {
                // SAFETY: pointers valid from slice bounds, len <= min(a.len(), b.len())
                let result = unsafe { self.simd_memcmp(a.as_ptr(), b.as_ptr(), a.len()) };
                if result == 0 { -1 } else { result }
            }
            Ordering::Greater => {
                // SAFETY: pointers valid from slice bounds, len <= min(a.len(), b.len())
                let result = unsafe { self.simd_memcmp(a.as_ptr(), b.as_ptr(), b.len()) };
                if result == 0 { 1 } else { result }
            }
            Ordering::Equal => {
                if a.is_empty() { 0 } else {
                    // SAFETY: pointers valid from slice bounds, len checked non-empty
                    unsafe { self.simd_memcmp(a.as_ptr(), b.as_ptr(), a.len()) }
                }
            }
        }
    }
    
    /// Fast memory search for a single byte with SIMD acceleration
    /// 
    /// # Performance
    /// Uses vectorized search to process multiple bytes per instruction,
    /// providing significant speedup over linear search.
    pub fn find_byte(&self, haystack: &[u8], needle: u8) -> Option<usize> {
        if haystack.is_empty() {
            return None;
        }

        // SAFETY: pointer valid from slice bounds, len checked non-empty
        unsafe { self.simd_memchr(haystack.as_ptr(), needle, haystack.len()) }
    }
    
    /// Fast memory initialization with SIMD acceleration
    /// 
    /// # Performance
    /// Uses vectorized stores to initialize memory faster than standard fill operations.
    pub fn fill(&self, slice: &mut [u8], value: u8) {
        if slice.is_empty() {
            return;
        }

        // SAFETY: pointer valid from slice bounds, len checked non-empty
        unsafe {
            self.simd_memset(slice.as_mut_ptr(), value, slice.len());
        }
    }

    /// Issue prefetch hints for memory address
    /// 
    /// # Performance
    /// Uses architecture-specific prefetch instructions to improve cache performance
    /// for predictable access patterns. No-op on architectures without prefetch support.
    pub fn prefetch(&self, addr: *const u8, hint: PrefetchHint) {
        if !self.cache_config.enable_prefetch {
            return;
        }

        #[cfg(target_arch = "x86_64")]
        // SAFETY: prefetch is advisory only, pointer validity not required, no side effects
        unsafe {
            match hint {
                PrefetchHint::T0 => std::arch::x86_64::_mm_prefetch(addr as *const i8, std::arch::x86_64::_MM_HINT_T0),
                PrefetchHint::T1 => std::arch::x86_64::_mm_prefetch(addr as *const i8, std::arch::x86_64::_MM_HINT_T1),
                PrefetchHint::T2 => std::arch::x86_64::_mm_prefetch(addr as *const i8, std::arch::x86_64::_MM_HINT_T2),
                PrefetchHint::NTA => std::arch::x86_64::_mm_prefetch(addr as *const i8, std::arch::x86_64::_MM_HINT_NTA),
            }
        }

        #[cfg(target_arch = "aarch64")]
        // SAFETY: prefetch is advisory only, pointer validity not required, no side effects
        unsafe {
            match hint {
                PrefetchHint::T0 | PrefetchHint::T1 => {
                    std::arch::asm!("prfm pldl1keep, [{}]", in(reg) addr);
                }
                PrefetchHint::T2 => {
                    std::arch::asm!("prfm pldl2keep, [{}]", in(reg) addr);
                }
                PrefetchHint::NTA => {
                    std::arch::asm!("prfm pldl1strm, [{}]", in(reg) addr);
                }
            }
        }

        #[cfg(not(any(target_arch = "x86_64", target_arch = "aarch64")))]
        {
            // No-op for other architectures
            let _ = (addr, hint);
        }
    }

    /// Prefetch memory range for sequential access
    ///
    /// # Performance
    /// Issues prefetch hints for an entire memory range, optimized for sequential access patterns.
    /// Automatically adjusts prefetch distance based on cache configuration.
    ///
    /// SAFETY FIX (v2.1.1): Changed from raw pointer to slice to prevent pointer arithmetic overflow
    pub fn prefetch_range(&self, data: &[u8]) {
        if !self.cache_config.enable_prefetch || data.is_empty() {
            return;
        }

        let distance = self.cache_config.prefetch_distance;
        let cache_line_size = self.cache_config.cache_line_size;
        let step_size = cache_line_size.min(distance);

        // Safe iteration - no pointer arithmetic overflow possible
        for chunk in data.chunks(step_size) {
            // SAFETY FIX (v2.1.1): Use chunk.as_ptr() to get actual data pointer,
            // not &chunk[0] which creates temporary reference (stack address)
            self.prefetch(chunk.as_ptr(), PrefetchHint::T0);
        }
    }

    /// Cache-optimized memory copy with automatic prefetching
    /// 
    /// # Performance
    /// Combines SIMD acceleration with intelligent prefetching based on size and access patterns.
    /// Automatically selects optimal strategy based on cache configuration.
    pub fn copy_cache_optimized(&self, src: &[u8], dst: &mut [u8]) -> Result<()> {
        if src.len() != dst.len() {
            return Err(ZiporaError::invalid_data(
                format!("Source and destination lengths don't match: {} vs {}", src.len(), dst.len())
            ));
        }
        
        if src.is_empty() {
            return Ok(());
        }

        // For large copies, use prefetching
        if src.len() >= self.cache_config.prefetch_distance && self.cache_config.enable_prefetch {
            // Prefetch source data ahead
            self.prefetch_range(src);
            
            // Small delay to let prefetch take effect
            if src.len() >= MEDIUM_COPY_THRESHOLD {
                std::hint::spin_loop();
            }
        }

        // Use cache-aligned copy if beneficial
        let src_aligned = (src.as_ptr() as usize) % self.cache_config.cache_line_size == 0;
        let dst_aligned = (dst.as_mut_ptr() as usize) % self.cache_config.cache_line_size == 0;

        if src_aligned && dst_aligned && src.len() >= self.cache_config.cache_line_size {
            self.copy_aligned(src, dst)
        } else {
            self.copy_nonoverlapping(src, dst)
        }
    }

    /// Cache-friendly memory comparison with prefetching
    /// 
    /// # Performance
    /// Uses prefetch hints to improve performance for large comparisons.
    /// Automatically adjusts strategy based on size and access patterns.
    pub fn compare_cache_optimized(&self, a: &[u8], b: &[u8]) -> i32 {
        // For large comparisons, prefetch both arrays
        let min_len = a.len().min(b.len());
        if min_len >= self.cache_config.prefetch_distance && self.cache_config.enable_prefetch {
            self.prefetch_range(a);
            self.prefetch_range(b);
        }

        self.compare(a, b)
    }
}

//==============================================================================
// INTERNAL UNSAFE SIMD IMPLEMENTATIONS
//==============================================================================

impl SimdMemOps {
    /// Internal fast memory copy with automatic alignment detection
    #[inline]
    unsafe fn simd_memcpy_unaligned(&self, dst: *mut u8, src: *const u8, len: usize) {
        match (self.tier, len) {
            (SimdTier::Avx512, len) if len >= 64 => {
                // SAFETY: caller ensures pointers valid and len within bounds
                unsafe { self.avx512_memcpy_unaligned(dst, src, len); }
            }
            (SimdTier::Avx2, len) if len >= 32 => {
                // SAFETY: caller ensures pointers valid and len within bounds
                unsafe { self.avx2_memcpy_unaligned(dst, src, len); }
            }
            (SimdTier::Sse2, len) if len >= 16 => {
                // SAFETY: caller ensures pointers valid and len within bounds
                unsafe { self.sse2_memcpy_unaligned(dst, src, len); }
            }
            _ => {
                // SAFETY: caller ensures pointers valid and len within bounds
                unsafe { self.scalar_memcpy(dst, src, len); }
            }
        }
    }
    
    /// Internal fast aligned memory copy
    #[inline]
    unsafe fn simd_memcpy_aligned(&self, dst: *mut u8, src: *const u8, len: usize) {
        match (self.tier, len) {
            (SimdTier::Avx512, len) if len >= 64 => {
                // SAFETY: caller ensures pointers valid, aligned, and len within bounds
                unsafe { self.avx512_memcpy_aligned(dst, src, len); }
            }
            (SimdTier::Avx2, len) if len >= 32 => {
                // SAFETY: caller ensures pointers valid, aligned, and len within bounds
                unsafe { self.avx2_memcpy_aligned(dst, src, len); }
            }
            (SimdTier::Sse2, len) if len >= 16 => {
                // SAFETY: caller ensures pointers valid, aligned, and len within bounds
                unsafe { self.sse2_memcpy_aligned(dst, src, len); }
            }
            _ => {
                // SAFETY: caller ensures pointers valid and len within bounds
                unsafe { self.scalar_memcpy(dst, src, len); }
            }
        }
    }
    
    /// Internal fast memory comparison
    #[inline]
    unsafe fn simd_memcmp(&self, a: *const u8, b: *const u8, len: usize) -> i32 {
        match (self.tier, len) {
            (SimdTier::Avx512, len) if len >= 64 => {
                // SAFETY: caller ensures pointers valid and len within bounds
                unsafe { self.avx512_memcmp(a, b, len) }
            }
            (SimdTier::Avx2, len) if len >= 32 => {
                // SAFETY: caller ensures pointers valid and len within bounds
                unsafe { self.avx2_memcmp(a, b, len) }
            }
            (SimdTier::Sse2, len) if len >= 16 => {
                // SAFETY: caller ensures pointers valid and len within bounds
                unsafe { self.sse2_memcmp(a, b, len) }
            }
            _ => {
                // SAFETY: caller ensures pointers valid and len within bounds
                unsafe { self.scalar_memcmp(a, b, len) }
            }
        }
    }
    
    /// Internal fast memory search
    #[inline]
    unsafe fn simd_memchr(&self, haystack: *const u8, needle: u8, len: usize) -> Option<usize> {
        match (self.tier, len) {
            (SimdTier::Avx512, len) if len >= 64 => {
                // SAFETY: caller ensures pointer valid and len within bounds
                unsafe { self.avx512_memchr(haystack, needle, len) }
            }
            (SimdTier::Avx2, len) if len >= 32 => {
                // SAFETY: caller ensures pointer valid and len within bounds
                unsafe { self.avx2_memchr(haystack, needle, len) }
            }
            (SimdTier::Sse2, len) if len >= 16 => {
                // SAFETY: caller ensures pointer valid and len within bounds
                unsafe { self.sse2_memchr(haystack, needle, len) }
            }
            _ => {
                // SAFETY: caller ensures pointer valid and len within bounds
                unsafe { self.scalar_memchr(haystack, needle, len) }
            }
        }
    }
    
    /// Internal fast memory initialization
    #[inline]
    unsafe fn simd_memset(&self, ptr: *mut u8, value: u8, len: usize) {
        match (self.tier, len) {
            (SimdTier::Avx512, len) if len >= 64 => {
                // SAFETY: caller ensures pointer valid and len within bounds
                unsafe { self.avx512_memset(ptr, value, len); }
            }
            (SimdTier::Avx2, len) if len >= 32 => {
                // SAFETY: caller ensures pointer valid and len within bounds
                unsafe { self.avx2_memset(ptr, value, len); }
            }
            (SimdTier::Sse2, len) if len >= 16 => {
                // SAFETY: caller ensures pointer valid and len within bounds
                unsafe { self.sse2_memset(ptr, value, len); }
            }
            _ => {
                // SAFETY: caller ensures pointer valid and len within bounds
                unsafe { self.scalar_memset(ptr, value, len); }
            }
        }
    }
}

//==============================================================================
// AVX-512 IMPLEMENTATIONS (64-byte operations)
//==============================================================================

#[cfg(target_arch = "x86_64")]
impl SimdMemOps {
    #[target_feature(enable = "avx512f,avx512vl,avx512bw")]
    unsafe fn avx512_memcpy_aligned(&self, dst: *mut u8, src: *const u8, mut len: usize) {
        use std::arch::x86_64::*;
        
        let mut dst_ptr = dst;
        let mut src_ptr = src;
        
        // Process 64-byte chunks
        while len >= 64 {
            // SAFETY: avx512f/vl/bw guaranteed by #[target_feature], pointers valid from caller, len >= 64 checked, alignment guaranteed by caller
            unsafe {
                let data = _mm512_load_si512(src_ptr as *const __m512i);
                _mm512_store_si512(dst_ptr as *mut __m512i, data);

                src_ptr = src_ptr.add(64);
                dst_ptr = dst_ptr.add(64);
            }
            len -= 64;
        }

        // Handle remaining bytes with scalar copy
        if len > 0 {
            // SAFETY: pointers valid, remaining len < 64
            unsafe { self.scalar_memcpy(dst_ptr, src_ptr, len); }
        }
    }
    
    #[target_feature(enable = "avx512f,avx512vl,avx512bw")]
    unsafe fn avx512_memcpy_unaligned(&self, dst: *mut u8, src: *const u8, mut len: usize) {
        use std::arch::x86_64::*;
        
        let mut dst_ptr = dst;
        let mut src_ptr = src;
        
        // Process 64-byte chunks with unaligned loads/stores
        while len >= 64 {
            // SAFETY: avx512f/vl/bw guaranteed by #[target_feature], pointers valid from caller, len >= 64 checked
            unsafe {
                let data = _mm512_loadu_si512(src_ptr as *const __m512i);
                _mm512_storeu_si512(dst_ptr as *mut __m512i, data);

                src_ptr = src_ptr.add(64);
                dst_ptr = dst_ptr.add(64);
            }
            len -= 64;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointers valid, remaining len < 64
            unsafe { self.scalar_memcpy(dst_ptr, src_ptr, len); }
        }
    }
    
    #[target_feature(enable = "avx512f,avx512vl,avx512bw")]
    unsafe fn avx512_memcmp(&self, mut a: *const u8, mut b: *const u8, mut len: usize) -> i32 {
        use std::arch::x86_64::*;
        
        // Process 64-byte chunks
        while len >= 64 {
            // SAFETY: avx512f/vl/bw guaranteed by #[target_feature], pointers valid from caller, len >= 64 checked, offset within bounds
            unsafe {
                let va = _mm512_loadu_si512(a as *const __m512i);
                let vb = _mm512_loadu_si512(b as *const __m512i);

                let mask = _mm512_cmpneq_epu8_mask(va, vb);
                if mask != 0 {
                    // Find first differing byte
                    let byte_offset = mask.trailing_zeros() as usize;
                    let byte_a = *a.add(byte_offset);
                    let byte_b = *b.add(byte_offset);
                    return (byte_a as i32) - (byte_b as i32);
                }

                a = a.add(64);
                b = b.add(64);
            }
            len -= 64;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointers valid, remaining len < 64
            unsafe { self.scalar_memcmp(a, b, len) }
        } else {
            0
        }
    }
    
    #[target_feature(enable = "avx512f,avx512vl,avx512bw")]
    unsafe fn avx512_memchr(&self, mut haystack: *const u8, needle: u8, mut len: usize) -> Option<usize> {
        use std::arch::x86_64::*;

        // SAFETY: avx512f/vl/bw guaranteed by #[target_feature]
        let needle_vec = unsafe { _mm512_set1_epi8(needle as i8) };
        let mut offset = 0;

        // Process 64-byte chunks
        while len >= 64 {
            // SAFETY: avx512f/vl/bw guaranteed by #[target_feature], pointer valid from caller, len >= 64 checked, offset within bounds
            unsafe {
                let data = _mm512_loadu_si512(haystack as *const __m512i);
                let mask = _mm512_cmpeq_epu8_mask(data, needle_vec);

                if mask != 0 {
                    let byte_offset = mask.trailing_zeros() as usize;
                    return Some(offset + byte_offset);
                }

                haystack = haystack.add(64);
            }
            offset += 64;
            len -= 64;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointer valid, remaining len < 64
            if let Some(remaining_offset) = unsafe { self.scalar_memchr(haystack, needle, len) } {
                Some(offset + remaining_offset)
            } else {
                None
            }
        } else {
            None
        }
    }
    
    #[target_feature(enable = "avx512f,avx512vl,avx512bw")]
    unsafe fn avx512_memset(&self, mut ptr: *mut u8, value: u8, mut len: usize) {
        use std::arch::x86_64::*;

        // SAFETY: avx512f/vl/bw guaranteed by #[target_feature]
        let value_vec = unsafe { _mm512_set1_epi8(value as i8) };

        // Process 64-byte chunks
        while len >= 64 {
            // SAFETY: avx512f/vl/bw guaranteed by #[target_feature], pointer valid from caller, len >= 64 checked
            unsafe {
                _mm512_storeu_si512(ptr as *mut __m512i, value_vec);
                ptr = ptr.add(64);
            }
            len -= 64;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointer valid, remaining len < 64
            unsafe { self.scalar_memset(ptr, value, len); }
        }
    }
}

#[cfg(not(target_arch = "x86_64"))]
impl SimdMemOps {
    #[inline]
    unsafe fn avx512_memcpy_aligned(&self, dst: *mut u8, src: *const u8, len: usize) {
        // SAFETY: caller ensures pointers valid and len within bounds
        unsafe { self.scalar_memcpy(dst, src, len); }
    }

    #[inline]
    unsafe fn avx512_memcpy_unaligned(&self, dst: *mut u8, src: *const u8, len: usize) {
        // SAFETY: caller ensures pointers valid and len within bounds
        unsafe { self.scalar_memcpy(dst, src, len); }
    }

    #[inline]
    unsafe fn avx512_memcmp(&self, a: *const u8, b: *const u8, len: usize) -> i32 {
        // SAFETY: caller ensures pointers valid and len within bounds
        unsafe { self.scalar_memcmp(a, b, len) }
    }

    #[inline]
    unsafe fn avx512_memchr(&self, haystack: *const u8, needle: u8, len: usize) -> Option<usize> {
        // SAFETY: caller ensures pointer valid and len within bounds
        unsafe { self.scalar_memchr(haystack, needle, len) }
    }

    #[inline]
    unsafe fn avx512_memset(&self, ptr: *mut u8, value: u8, len: usize) {
        // SAFETY: caller ensures pointer valid and len within bounds
        unsafe { self.scalar_memset(ptr, value, len); }
    }
}

//==============================================================================
// AVX2 IMPLEMENTATIONS (32-byte operations)
//==============================================================================

#[cfg(target_arch = "x86_64")]
impl SimdMemOps {
    #[target_feature(enable = "avx2")]
    unsafe fn avx2_memcpy_aligned(&self, dst: *mut u8, src: *const u8, mut len: usize) {
        use std::arch::x86_64::*;
        
        let mut dst_ptr = dst;
        let mut src_ptr = src;
        
        // Process 32-byte chunks
        while len >= 32 {
            // SAFETY: avx2 guaranteed by #[target_feature], pointers valid from caller, len >= 32 checked, alignment guaranteed by caller
            unsafe {
                let data = _mm256_load_si256(src_ptr as *const __m256i);
                _mm256_store_si256(dst_ptr as *mut __m256i, data);

                src_ptr = src_ptr.add(32);
                dst_ptr = dst_ptr.add(32);
            }
            len -= 32;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointers valid, remaining len < 32
            unsafe { self.scalar_memcpy(dst_ptr, src_ptr, len); }
        }
    }
    
    #[target_feature(enable = "avx2")]
    unsafe fn avx2_memcpy_unaligned(&self, dst: *mut u8, src: *const u8, mut len: usize) {
        use std::arch::x86_64::*;
        
        let mut dst_ptr = dst;
        let mut src_ptr = src;
        
        // Use prefetching for medium-large copies
        if len >= MEDIUM_COPY_THRESHOLD {
            // Prefetch ahead for better cache performance
            let prefetch_distance = 256;
            if len > prefetch_distance {
                // SAFETY: prefetch is advisory only, pointer valid from caller, offset within bounds
                unsafe {
                    _mm_prefetch(src_ptr.add(prefetch_distance) as *const i8, _MM_HINT_T0);
                }
            }
        }

        // Process 32-byte chunks with unaligned loads/stores
        while len >= 32 {
            // SAFETY: avx2 guaranteed by #[target_feature], pointers valid from caller, len >= 32 checked
            unsafe {
                let data = _mm256_loadu_si256(src_ptr as *const __m256i);
                _mm256_storeu_si256(dst_ptr as *mut __m256i, data);

                src_ptr = src_ptr.add(32);
                dst_ptr = dst_ptr.add(32);
            }
            len -= 32;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointers valid, remaining len < 32
            unsafe { self.scalar_memcpy(dst_ptr, src_ptr, len); }
        }
    }
    
    #[target_feature(enable = "avx2")]
    unsafe fn avx2_memcmp(&self, mut a: *const u8, mut b: *const u8, mut len: usize) -> i32 {
        use std::arch::x86_64::*;

        // Process 32-byte chunks
        while len >= 32 {
            // SAFETY: avx2 guaranteed by #[target_feature], pointers valid from caller, len >= 32 checked, offset within bounds
            unsafe {
                let va = _mm256_loadu_si256(a as *const __m256i);
                let vb = _mm256_loadu_si256(b as *const __m256i);

                let cmp = _mm256_cmpeq_epi8(va, vb);
                let mask = _mm256_movemask_epi8(cmp) as u32;

                if mask != 0xFFFFFFFF {
                    // Find first differing byte
                    let diff_mask = !mask;
                    let byte_offset = diff_mask.trailing_zeros() as usize;
                    let byte_a = *a.add(byte_offset);
                    let byte_b = *b.add(byte_offset);
                    return (byte_a as i32) - (byte_b as i32);
                }

                a = a.add(32);
                b = b.add(32);
            }
            len -= 32;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointers valid, remaining len < 32
            unsafe { self.scalar_memcmp(a, b, len) }
        } else {
            0
        }
    }
    
    #[target_feature(enable = "avx2")]
    unsafe fn avx2_memchr(&self, mut haystack: *const u8, needle: u8, mut len: usize) -> Option<usize> {
        use std::arch::x86_64::*;

        // SAFETY: avx2 guaranteed by #[target_feature]
        let needle_vec = unsafe { _mm256_set1_epi8(needle as i8) };
        let mut offset = 0;

        // Process 32-byte chunks
        while len >= 32 {
            // SAFETY: avx2 guaranteed by #[target_feature], pointer valid from caller, len >= 32 checked, offset within bounds
            unsafe {
                let data = _mm256_loadu_si256(haystack as *const __m256i);
                let cmp = _mm256_cmpeq_epi8(data, needle_vec);
                let mask = _mm256_movemask_epi8(cmp) as u32;

                if mask != 0 {
                    let byte_offset = mask.trailing_zeros() as usize;
                    return Some(offset + byte_offset);
                }

                haystack = haystack.add(32);
            }
            offset += 32;
            len -= 32;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointer valid, remaining len < 32
            if let Some(remaining_offset) = unsafe { self.scalar_memchr(haystack, needle, len) } {
                Some(offset + remaining_offset)
            } else {
                None
            }
        } else {
            None
        }
    }
    
    #[target_feature(enable = "avx2")]
    unsafe fn avx2_memset(&self, mut ptr: *mut u8, value: u8, mut len: usize) {
        use std::arch::x86_64::*;

        // SAFETY: avx2 guaranteed by #[target_feature]
        let value_vec = unsafe { _mm256_set1_epi8(value as i8) };

        // Process 32-byte chunks
        while len >= 32 {
            // SAFETY: avx2 guaranteed by #[target_feature], pointer valid from caller, len >= 32 checked
            unsafe {
                _mm256_storeu_si256(ptr as *mut __m256i, value_vec);
                ptr = ptr.add(32);
            }
            len -= 32;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointer valid, remaining len < 32
            unsafe { self.scalar_memset(ptr, value, len); }
        }
    }
}

#[cfg(not(target_arch = "x86_64"))]
impl SimdMemOps {
    #[inline]
    unsafe fn avx2_memcpy_aligned(&self, dst: *mut u8, src: *const u8, len: usize) {
        // SAFETY: caller ensures pointers valid and len within bounds
        unsafe { self.scalar_memcpy(dst, src, len); }
    }

    #[inline]
    unsafe fn avx2_memcpy_unaligned(&self, dst: *mut u8, src: *const u8, len: usize) {
        // SAFETY: caller ensures pointers valid and len within bounds
        unsafe { self.scalar_memcpy(dst, src, len); }
    }

    #[inline]
    unsafe fn avx2_memcmp(&self, a: *const u8, b: *const u8, len: usize) -> i32 {
        // SAFETY: caller ensures pointers valid and len within bounds
        unsafe { self.scalar_memcmp(a, b, len) }
    }

    #[inline]
    unsafe fn avx2_memchr(&self, haystack: *const u8, needle: u8, len: usize) -> Option<usize> {
        // SAFETY: caller ensures pointer valid and len within bounds
        unsafe { self.scalar_memchr(haystack, needle, len) }
    }

    #[inline]
    unsafe fn avx2_memset(&self, ptr: *mut u8, value: u8, len: usize) {
        // SAFETY: caller ensures pointer valid and len within bounds
        unsafe { self.scalar_memset(ptr, value, len); }
    }
}

//==============================================================================
// SSE2 IMPLEMENTATIONS (16-byte operations)
//==============================================================================

#[cfg(target_arch = "x86_64")]
impl SimdMemOps {
    #[target_feature(enable = "sse2")]
    unsafe fn sse2_memcpy_aligned(&self, dst: *mut u8, src: *const u8, mut len: usize) {
        use std::arch::x86_64::*;

        let mut dst_ptr = dst;
        let mut src_ptr = src;

        // Process 16-byte chunks
        while len >= 16 {
            // SAFETY: sse2 guaranteed by #[target_feature], pointers valid from caller, len >= 16 checked, alignment guaranteed by caller
            unsafe {
                let data = _mm_load_si128(src_ptr as *const __m128i);
                _mm_store_si128(dst_ptr as *mut __m128i, data);

                src_ptr = src_ptr.add(16);
                dst_ptr = dst_ptr.add(16);
            }
            len -= 16;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointers valid, remaining len < 16
            unsafe { self.scalar_memcpy(dst_ptr, src_ptr, len); }
        }
    }
    
    #[target_feature(enable = "sse2")]
    unsafe fn sse2_memcpy_unaligned(&self, dst: *mut u8, src: *const u8, mut len: usize) {
        use std::arch::x86_64::*;

        let mut dst_ptr = dst;
        let mut src_ptr = src;

        // Process 16-byte chunks with unaligned loads/stores
        while len >= 16 {
            // SAFETY: sse2 guaranteed by #[target_feature], pointers valid from caller, len >= 16 checked
            unsafe {
                let data = _mm_loadu_si128(src_ptr as *const __m128i);
                _mm_storeu_si128(dst_ptr as *mut __m128i, data);

                src_ptr = src_ptr.add(16);
                dst_ptr = dst_ptr.add(16);
            }
            len -= 16;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointers valid, remaining len < 16
            unsafe { self.scalar_memcpy(dst_ptr, src_ptr, len); }
        }
    }
    
    #[target_feature(enable = "sse2")]
    unsafe fn sse2_memcmp(&self, mut a: *const u8, mut b: *const u8, mut len: usize) -> i32 {
        use std::arch::x86_64::*;

        // Process 16-byte chunks
        while len >= 16 {
            // SAFETY: sse2 guaranteed by #[target_feature], pointers valid from caller, len >= 16 checked, offset within bounds
            unsafe {
                let va = _mm_loadu_si128(a as *const __m128i);
                let vb = _mm_loadu_si128(b as *const __m128i);

                let cmp = _mm_cmpeq_epi8(va, vb);
                let mask = _mm_movemask_epi8(cmp) as u16;

                if mask != 0xFFFF {
                    // Find first differing byte
                    let diff_mask = !mask;
                    let byte_offset = diff_mask.trailing_zeros() as usize;
                    let byte_a = *a.add(byte_offset);
                    let byte_b = *b.add(byte_offset);
                    return (byte_a as i32) - (byte_b as i32);
                }

                a = a.add(16);
                b = b.add(16);
            }
            len -= 16;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointers valid, remaining len < 16
            unsafe { self.scalar_memcmp(a, b, len) }
        } else {
            0
        }
    }
    
    #[target_feature(enable = "sse2")]
    unsafe fn sse2_memchr(&self, mut haystack: *const u8, needle: u8, mut len: usize) -> Option<usize> {
        use std::arch::x86_64::*;

        // SAFETY: sse2 guaranteed by #[target_feature]
        let needle_vec = unsafe { _mm_set1_epi8(needle as i8) };
        let mut offset = 0;

        // Process 16-byte chunks
        while len >= 16 {
            // SAFETY: sse2 guaranteed by #[target_feature], pointer valid from caller, len >= 16 checked, offset within bounds
            unsafe {
                let data = _mm_loadu_si128(haystack as *const __m128i);
                let cmp = _mm_cmpeq_epi8(data, needle_vec);
                let mask = _mm_movemask_epi8(cmp) as u16;

                if mask != 0 {
                    let byte_offset = mask.trailing_zeros() as usize;
                    return Some(offset + byte_offset);
                }

                haystack = haystack.add(16);
            }
            offset += 16;
            len -= 16;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointer valid, remaining len < 16
            if let Some(remaining_offset) = unsafe { self.scalar_memchr(haystack, needle, len) } {
                Some(offset + remaining_offset)
            } else {
                None
            }
        } else {
            None
        }
    }
    
    #[target_feature(enable = "sse2")]
    unsafe fn sse2_memset(&self, mut ptr: *mut u8, value: u8, mut len: usize) {
        use std::arch::x86_64::*;

        // SAFETY: sse2 guaranteed by #[target_feature]
        let value_vec = unsafe { _mm_set1_epi8(value as i8) };

        // Process 16-byte chunks
        while len >= 16 {
            // SAFETY: sse2 guaranteed by #[target_feature], pointer valid from caller, len >= 16 checked
            unsafe {
                _mm_storeu_si128(ptr as *mut __m128i, value_vec);
                ptr = ptr.add(16);
            }
            len -= 16;
        }

        // Handle remaining bytes
        if len > 0 {
            // SAFETY: pointer valid, remaining len < 16
            unsafe { self.scalar_memset(ptr, value, len); }
        }
    }
}

#[cfg(not(target_arch = "x86_64"))]
impl SimdMemOps {
    #[inline]
    unsafe fn sse2_memcpy_aligned(&self, dst: *mut u8, src: *const u8, len: usize) {
        // SAFETY: caller ensures pointers valid and len within bounds
        unsafe { self.scalar_memcpy(dst, src, len); }
    }

    #[inline]
    unsafe fn sse2_memcpy_unaligned(&self, dst: *mut u8, src: *const u8, len: usize) {
        // SAFETY: caller ensures pointers valid and len within bounds
        unsafe { self.scalar_memcpy(dst, src, len); }
    }

    #[inline]
    unsafe fn sse2_memcmp(&self, a: *const u8, b: *const u8, len: usize) -> i32 {
        // SAFETY: caller ensures pointers valid and len within bounds
        unsafe { self.scalar_memcmp(a, b, len) }
    }

    #[inline]
    unsafe fn sse2_memchr(&self, haystack: *const u8, needle: u8, len: usize) -> Option<usize> {
        // SAFETY: caller ensures pointer valid and len within bounds
        unsafe { self.scalar_memchr(haystack, needle, len) }
    }

    #[inline]
    unsafe fn sse2_memset(&self, ptr: *mut u8, value: u8, len: usize) {
        // SAFETY: caller ensures pointer valid and len within bounds
        unsafe { self.scalar_memset(ptr, value, len); }
    }
}

//==============================================================================
// SCALAR FALLBACK IMPLEMENTATIONS
//==============================================================================

impl SimdMemOps {
    #[inline]
    unsafe fn scalar_memcpy(&self, dst: *mut u8, src: *const u8, len: usize) {
        // SAFETY: caller ensures pointers valid, non-overlapping, and len within bounds
        unsafe { ptr::copy_nonoverlapping(src, dst, len); }
    }

    #[inline]
    unsafe fn scalar_memcmp(&self, a: *const u8, b: *const u8, len: usize) -> i32 {
        for i in 0..len {
            // SAFETY: caller ensures pointers valid, i < len guarantees offset within bounds
            unsafe {
                let byte_a = *a.add(i);
                let byte_b = *b.add(i);
                if byte_a != byte_b {
                    return (byte_a as i32) - (byte_b as i32);
                }
            }
        }
        0
    }

    #[inline]
    unsafe fn scalar_memchr(&self, haystack: *const u8, needle: u8, len: usize) -> Option<usize> {
        for i in 0..len {
            // SAFETY: caller ensures pointer valid, i < len guarantees offset within bounds
            unsafe {
                if *haystack.add(i) == needle {
                    return Some(i);
                }
            }
        }
        None
    }

    #[inline]
    unsafe fn scalar_memset(&self, ptr: *mut u8, value: u8, len: usize) {
        // SAFETY: caller ensures pointer valid and len within bounds
        unsafe { ptr::write_bytes(ptr, value, len); }
    }
}

//==============================================================================
// DEFAULT INSTANCE AND CONVENIENCE FUNCTIONS
//==============================================================================

impl Default for SimdMemOps {
    fn default() -> Self {
        Self::new()
    }
}

/// Global SIMD memory operations instance for reuse
static GLOBAL_SIMD_OPS: std::sync::OnceLock<SimdMemOps> = std::sync::OnceLock::new();

/// Get the global SIMD memory operations instance
pub fn get_global_simd_ops() -> &'static SimdMemOps {
    GLOBAL_SIMD_OPS.get_or_init(|| SimdMemOps::new())
}

/// Convenience function for fast memory copy
pub fn fast_copy(src: &[u8], dst: &mut [u8]) -> Result<()> {
    get_global_simd_ops().copy_nonoverlapping(src, dst)
}

/// Convenience function for fast memory comparison
pub fn fast_compare(a: &[u8], b: &[u8]) -> i32 {
    get_global_simd_ops().compare(a, b)
}

/// Convenience function for fast byte search
pub fn fast_find_byte(haystack: &[u8], needle: u8) -> Option<usize> {
    get_global_simd_ops().find_byte(haystack, needle)
}

/// Convenience function for fast memory fill
pub fn fast_fill(slice: &mut [u8], value: u8) {
    get_global_simd_ops().fill(slice, value)
}

/// Convenience function for cache-optimized memory copy
pub fn fast_copy_cache_optimized(src: &[u8], dst: &mut [u8]) -> Result<()> {
    get_global_simd_ops().copy_cache_optimized(src, dst)
}

/// Convenience function for cache-optimized memory comparison
pub fn fast_compare_cache_optimized(a: &[u8], b: &[u8]) -> i32 {
    get_global_simd_ops().compare_cache_optimized(a, b)
}

/// Convenience function for memory prefetch
///
/// # Safety
/// This function is safe because it accepts a reference to any type,
/// ensuring the memory address is valid. Prefetch hints are advisory only.
pub fn fast_prefetch<T: ?Sized>(data: &T, hint: PrefetchHint) {
    let addr = data as *const T as *const u8;
    get_global_simd_ops().prefetch(addr, hint)
}

/// Convenience function for range prefetch
///
/// # Safety
/// This function is safe because it accepts a slice, which guarantees
/// the pointer and length form a valid memory range.
pub fn fast_prefetch_range(data: &[u8]) {
    if data.is_empty() {
        return;
    }
    get_global_simd_ops().prefetch_range(data)
}

#[cfg(test)]
mod tests {
    use super::*;
    use std::collections::HashMap;

    #[test]
    fn test_simd_ops_creation() {
        let ops = SimdMemOps::new();
        println!("Selected SIMD tier: {:?}", ops.tier());
        
        // Should always work regardless of available features
        assert!(matches!(ops.tier(), SimdTier::Avx512 | SimdTier::Avx2 | SimdTier::Sse2 | SimdTier::Scalar));
    }
    
    #[test]
    fn test_global_simd_ops() {
        let ops1 = get_global_simd_ops();
        let ops2 = get_global_simd_ops();
        
        // Should be the same instance
        assert_eq!(ops1.tier(), ops2.tier());
    }
    
    #[test]
    fn test_memory_copy_basic() {
        let src = b"Hello, SIMD World!";
        let mut dst = vec![0u8; src.len()];
        
        fast_copy(src, &mut dst).unwrap();
        assert_eq!(src, &dst[..]);
    }
    
    #[test]
    fn test_memory_copy_large() {
        let size = 8192;
        let src: Vec<u8> = (0..size).map(|i| (i % 256) as u8).collect();
        let mut dst = vec![0u8; size];
        
        fast_copy(&src, &mut dst).unwrap();
        assert_eq!(src, dst);
    }
    
    #[test]
    fn test_memory_copy_empty() {
        let src: &[u8] = &[];
        let mut dst: Vec<u8> = vec![];
        
        let result = fast_copy(src, &mut dst);
        assert!(result.is_ok());
    }
    
    #[test]
    fn test_memory_copy_size_mismatch() {
        let src = b"Hello";
        let mut dst = vec![0u8; 10];
        
        let result = fast_copy(src, &mut dst);
        assert!(result.is_err());
    }
    
    #[test]
    fn test_memory_compare_equal() {
        let a = b"Hello, World!";
        let b = b"Hello, World!";
        
        assert_eq!(fast_compare(a, b), 0);
    }
    
    #[test]
    fn test_memory_compare_different() {
        let a = b"Hello, World!";
        let b = b"Hello, SIMD!";
        
        let result = fast_compare(a, b);
        assert_ne!(result, 0);
    }
    
    #[test]
    fn test_memory_compare_different_lengths() {
        let a = b"Hello";
        let b = b"Hello, World!";
        
        let result = fast_compare(a, b);
        assert!(result < 0); // a is shorter than b
        
        let result2 = fast_compare(b, a);
        assert!(result2 > 0); // b is longer than a
    }
    
    #[test]
    fn test_byte_search_found() {
        let haystack = b"Hello, SIMD World!";
        let needle = b'S';
        
        let result = fast_find_byte(haystack, needle);
        assert_eq!(result, Some(7));
    }
    
    #[test]
    fn test_byte_search_not_found() {
        let haystack = b"Hello, World!";
        let needle = b'X';
        
        let result = fast_find_byte(haystack, needle);
        assert_eq!(result, None);
    }
    
    #[test]
    fn test_byte_search_empty() {
        let haystack: &[u8] = &[];
        let needle = b'A';
        
        let result = fast_find_byte(haystack, needle);
        assert_eq!(result, None);
    }
    
    #[test]
    fn test_memory_fill() {
        let mut buffer = vec![0u8; 100];
        fast_fill(&mut buffer, 0xFF);
        
        assert!(buffer.iter().all(|&b| b == 0xFF));
    }
    
    #[test]
    fn test_memory_fill_empty() {
        let mut buffer: Vec<u8> = vec![];
        fast_fill(&mut buffer, 0xFF);
        
        assert!(buffer.is_empty());
    }
    
    #[test]
    fn test_aligned_copy() {
        let ops = SimdMemOps::new();
        
        // Create aligned buffers (64-byte aligned)
        let layout_src = std::alloc::Layout::from_size_align(128, 64).unwrap();
        let layout_dst = std::alloc::Layout::from_size_align(128, 64).unwrap();

        // SAFETY: Test code allocating with valid layouts, null checks before use, deallocated at end
        unsafe {
            let src_ptr = std::alloc::alloc(layout_src);
            let dst_ptr = std::alloc::alloc(layout_dst);
            
            if !src_ptr.is_null() && !dst_ptr.is_null() {
                // Fill source with test data
                for i in 0..128 {
                    *src_ptr.add(i) = (i % 256) as u8;
                }
                
                let src_slice = std::slice::from_raw_parts(src_ptr, 128);
                let dst_slice = std::slice::from_raw_parts_mut(dst_ptr, 128);
                
                let result = ops.copy_aligned(src_slice, dst_slice);
                assert!(result.is_ok());
                
                // Verify copy
                for i in 0..128 {
                    assert_eq!(*src_ptr.add(i), *dst_ptr.add(i));
                }
                
                std::alloc::dealloc(src_ptr, layout_src);
                std::alloc::dealloc(dst_ptr, layout_dst);
            }
        }
    }
    
    #[test]
    fn test_size_categories() {
        let ops = SimdMemOps::new();
        
        // Test different size categories
        let sizes = vec![1, 8, 16, 32, 64, 128, 1024, 4096, 8192];
        
        for size in sizes {
            let src: Vec<u8> = (0..size).map(|i| (i % 256) as u8).collect();
            let mut dst = vec![0u8; size];
            
            let result = ops.copy_nonoverlapping(&src, &mut dst);
            assert!(result.is_ok(), "Failed for size {}", size);
            assert_eq!(src, dst, "Mismatch for size {}", size);
        }
    }
    
    #[test]
    fn test_pattern_search() {
        let haystack = b"AAAABBBBCCCCDDDD";
        
        assert_eq!(fast_find_byte(haystack, b'A'), Some(0));
        assert_eq!(fast_find_byte(haystack, b'B'), Some(4));
        assert_eq!(fast_find_byte(haystack, b'C'), Some(8));
        assert_eq!(fast_find_byte(haystack, b'D'), Some(12));
        assert_eq!(fast_find_byte(haystack, b'E'), None);
    }
    
    #[test]
    fn test_performance_comparison() {
        // This test compares SIMD operations against standard library functions
        let size = 1024;
        let src: Vec<u8> = (0..size).map(|i| (i % 256) as u8).collect();
        let mut dst_simd = vec![0u8; size];
        let mut dst_std = vec![0u8; size];
        
        // SIMD copy
        fast_copy(&src, &mut dst_simd).unwrap();
        
        // Standard copy
        dst_std.copy_from_slice(&src);
        
        // Results should be identical
        assert_eq!(dst_simd, dst_std);
        
        // Test comparison
        assert_eq!(fast_compare(&dst_simd, &dst_std), 0);
    }
    
    #[test]
    fn test_cross_tier_consistency() {
        // Test that all SIMD tiers produce the same results
        let test_data: Vec<u8> = (0u8..=255u8).collect();
        let needle = 128u8;
        
        // All tiers should find the same position
        let ops = SimdMemOps::new();
        let result = ops.find_byte(&test_data, needle);
        assert_eq!(result, Some(128));
        
        // All tiers should produce the same comparison result
        let other_data: Vec<u8> = (0u8..=255u8).map(|i| if i == 128 { 129 } else { i }).collect();
        let cmp = ops.compare(&test_data, &other_data);
        assert!(cmp < 0); // test_data[128] = 128 < other_data[128] = 129
    }

    #[test]
    fn test_cache_optimized_operations() {
        let size = 4096;
        let src: Vec<u8> = (0..size).map(|i| (i % 256) as u8).collect();
        let mut dst = vec![0u8; size];
        
        // Test cache-optimized copy
        let result = fast_copy_cache_optimized(&src, &mut dst);
        assert!(result.is_ok());
        assert_eq!(src, dst);
        
        // Test cache-optimized comparison
        let cmp = fast_compare_cache_optimized(&src, &dst);
        assert_eq!(cmp, 0);
        
        // Test with different data
        dst[100] = 255;
        let cmp2 = fast_compare_cache_optimized(&src, &dst);
        assert_ne!(cmp2, 0);
    }

    #[test]
    fn test_prefetch_operations() {
        let data = vec![1u8; 1024];

        // Test single prefetch with slice (should not panic)
        fast_prefetch(&data[0], PrefetchHint::T0);
        fast_prefetch(&data[0], PrefetchHint::T1);
        fast_prefetch(&data[0], PrefetchHint::T2);
        fast_prefetch(&data[0], PrefetchHint::NTA);

        // Test prefetch with different types (generic)
        let value: u64 = 42;
        fast_prefetch(&value, PrefetchHint::T0);

        // Test range prefetch with slice (should not panic)
        fast_prefetch_range(&data);
        fast_prefetch_range(&data[100..200]);

        // Test with empty slice (should not panic)
        fast_prefetch_range(&[]);
    }

    #[test]
    fn test_simd_ops_with_cache_config() {
        use crate::memory::cache_layout::{CacheLayoutConfig, AccessPattern};
        
        let config = CacheLayoutConfig::sequential();
        let ops = SimdMemOps::with_cache_config(config);
        
        assert_eq!(ops.cache_config().access_pattern, AccessPattern::Sequential);
        assert!(ops.cache_config().enable_prefetch);
        
        // Test that operations work with custom config
        let src = b"Hello, Cache-Optimized SIMD!";
        let mut dst = vec![0u8; src.len()];
        
        let result = ops.copy_cache_optimized(src, &mut dst);
        assert!(result.is_ok());
        assert_eq!(src, &dst[..]);
    }

    #[test]
    fn test_cache_config_access() {
        let ops = SimdMemOps::new();
        let config = ops.cache_config();
        
        assert!(config.cache_line_size > 0);
        assert!(config.hierarchy.l1_size > 0);
        assert!(config.prefetch_distance > 0);
    }

    #[test]
    fn test_prefetch_with_different_sizes() {
        let ops = SimdMemOps::new();

        // Small data - should still work
        let small_data = vec![1u8; 32];
        ops.prefetch_range(&small_data);

        // Large data
        let large_data = vec![1u8; 8192];
        ops.prefetch_range(&large_data);

        // Empty data
        let empty: &[u8] = &[];
        ops.prefetch_range(empty);
    }

    #[test]
    fn test_cache_optimized_copy_edge_cases() {
        let ops = SimdMemOps::new();
        
        // Empty slices
        let empty_src: &[u8] = &[];
        let mut empty_dst: Vec<u8> = vec![];
        let result = ops.copy_cache_optimized(empty_src, &mut empty_dst);
        assert!(result.is_ok());
        
        // Size mismatch
        let src = b"hello";
        let mut dst = vec![0u8; 10];
        let result = ops.copy_cache_optimized(src, &mut dst);
        assert!(result.is_err());
        
        // Large aligned copy
        let layout = std::alloc::Layout::from_size_align(4096, 64).unwrap();
        // SAFETY: Test code allocating with valid layout, null checks before use, deallocated at end
        unsafe {
            let src_ptr = std::alloc::alloc(layout);
            let dst_ptr = std::alloc::alloc(layout);
            
            if !src_ptr.is_null() && !dst_ptr.is_null() {
                // Initialize source
                for i in 0..4096 {
                    *src_ptr.add(i) = (i % 256) as u8;
                }
                
                let src_slice = std::slice::from_raw_parts(src_ptr, 4096);
                let dst_slice = std::slice::from_raw_parts_mut(dst_ptr, 4096);
                
                let result = ops.copy_cache_optimized(src_slice, dst_slice);
                assert!(result.is_ok());
                
                // Verify copy
                for i in 0..4096 {
                    assert_eq!(*src_ptr.add(i), *dst_ptr.add(i));
                }
                
                std::alloc::dealloc(src_ptr, layout);
                std::alloc::dealloc(dst_ptr, layout);
            }
        }
    }
}