base-d 3.0.34

Universal base encoder: Encode binary data to 33+ dictionaries including RFC standards, hieroglyphs, emoji, and more
Documentation
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
//! SIMD implementation for base32 (5-bit encoding)
//!
//! Based on techniques from:
//! - Daniel Lemire: https://lemire.me/blog/2023/07/20/fast-decoding-of-base32-strings/
//! - NLnetLabs/simdzone (C implementation by @aqrit)
//! - Wojciech Muła's SIMD base64 work (multiply-shift pattern)
//!
//! Key differences from base64:
//! - Block size: 5 bytes → 8 chars (vs 3 bytes → 4 chars)
//! - SSSE3: 10 bytes → 16 chars (vs 12 bytes → 16 chars)
//! - AVX2: 20 bytes → 32 chars (vs 24 bytes → 32 chars)
//! - 5-bit extraction requires different masks and multiplies

use super::super::common;
use crate::core::dictionary::Dictionary;
use crate::simd::variants::Base32Variant;

/// SIMD-accelerated base32 encoding with runtime dispatch
///
/// Automatically selects the best available SIMD implementation:
/// - AVX2 (256-bit): Processes 20 bytes -> 32 chars per iteration
/// - SSSE3 (128-bit): Processes 10 bytes -> 16 chars per iteration
///   Falls back to scalar for remainder.
pub fn encode(data: &[u8], dictionary: &Dictionary, variant: Base32Variant) -> Option<String> {
    // Pre-allocate output
    let output_len = data.len().div_ceil(5) * 8;
    let mut result = String::with_capacity(output_len);

    #[cfg(target_arch = "x86_64")]
    {
        // SAFETY: Runtime detection verifies CPU feature support
        if is_x86_feature_detected!("avx2") {
            unsafe {
                encode_avx2_impl(data, dictionary, variant, &mut result);
            }
        } else {
            unsafe {
                encode_ssse3_impl(data, dictionary, variant, &mut result);
            }
        }
    }

    #[cfg(not(target_arch = "x86_64"))]
    {
        encode_scalar_remainder(data, dictionary, &mut result);
    }

    Some(result)
}

/// Validate Base32 padding per RFC 4648
///
/// Returns the data portion (without padding) if valid, None otherwise.
fn validate_base32_padding(input: &str) -> Option<&str> {
    let padding_count = input.bytes().rev().take_while(|&b| b == b'=').count();
    let data_len = input.len() - padding_count;

    // If no padding, validate data_len mod 8 is valid
    if padding_count == 0 {
        return match data_len % 8 {
            0 | 2 | 4 | 5 | 7 => Some(input),
            _ => None,
        };
    }

    // With padding, total must be multiple of 8
    if !input.len().is_multiple_of(8) {
        return None;
    }

    // Verify correct padding count for data length
    let expected_padding = match data_len % 8 {
        0 => 0,
        2 => 6,
        4 => 4,
        5 => 3,
        7 => 1,
        _ => return None,
    };

    if padding_count == expected_padding {
        Some(&input[..data_len])
    } else {
        None
    }
}

/// SIMD-accelerated base32 decoding with runtime dispatch
///
/// Automatically selects the best available SIMD implementation:
/// - AVX2 (256-bit): Processes 32 chars -> 20 bytes per iteration
/// - SSSE3 (128-bit): Processes 16 chars -> 10 bytes per iteration
///   Falls back to scalar for remainder.
pub fn decode(encoded: &str, variant: Base32Variant) -> Option<Vec<u8>> {
    // Validate padding before processing
    let input_no_padding = validate_base32_padding(encoded)?;

    let encoded_bytes = input_no_padding.as_bytes();

    // Calculate output size
    let output_len = (input_no_padding.len() / 8) * 5
        + match input_no_padding.len() % 8 {
            0 => 0,
            2 => 1,
            4 => 2,
            5 => 3,
            7 => 4,
            _ => return None, // Invalid base32
        };

    let mut result = Vec::with_capacity(output_len);

    #[cfg(target_arch = "x86_64")]
    {
        // SAFETY: Runtime detection verifies CPU feature support
        if is_x86_feature_detected!("avx2") {
            if !unsafe { decode_avx2_impl(encoded_bytes, variant, &mut result) } {
                return None;
            }
        } else if !unsafe { decode_ssse3_impl(encoded_bytes, variant, &mut result) } {
            return None;
        }
    }

    #[cfg(not(target_arch = "x86_64"))]
    {
        // SAFETY: Runtime detection verifies CPU feature support
        if !unsafe { decode_ssse3_impl(encoded_bytes, variant, &mut result) } {
            return None;
        }
    }

    Some(result)
}

/// Encode bytes using scalar algorithm
fn encode_scalar_remainder(data: &[u8], dictionary: &Dictionary, result: &mut String) {
    // Use common scalar chunked encoding (5-bit for base32)
    common::encode_scalar_chunked(data, dictionary, result);

    // Add padding if needed (base32 pads to 8-character boundaries)
    let chars_produced = result.len();
    let padding_needed = (8 - (chars_produced % 8)) % 8;
    if let Some(pad_char) = dictionary.padding() {
        for _ in 0..padding_needed {
            result.push(pad_char);
        }
    }
}

/// AVX2 base32 encoding implementation
///
/// Processes 20 input bytes -> 32 output characters per iteration.
/// Uses 256-bit vectors to process two independent 10-byte blocks in parallel.
///
/// Note: AVX2's vpshufb operates per 128-bit lane, so we process two
/// independent 10-byte chunks as separate lanes.
#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "avx2")]
unsafe fn encode_avx2_impl(
    data: &[u8],
    dictionary: &Dictionary,
    variant: Base32Variant,
    result: &mut String,
) {
    use std::arch::x86_64::*;

    const BLOCK_SIZE: usize = 20; // 20 bytes -> 32 chars

    // Need at least 32 bytes to safely load two 128-bit blocks (16 bytes each)
    if data.len() < 32 {
        // Fall back to SSSE3 for small inputs
        // SAFETY: Called from function with matching target_feature
        unsafe {
            encode_ssse3_impl(data, dictionary, variant, result);
        }
        return;
    }

    // Process blocks of 20 bytes
    let safe_len = if data.len() >= 12 { data.len() - 12 } else { 0 };
    let (num_rounds, simd_bytes) = common::calculate_blocks(safe_len, BLOCK_SIZE);

    let mut offset = 0;
    for _ in 0..num_rounds {
        // SAFETY: Pointer arithmetic for SIMD loads
        let (input_lo, input_hi) = unsafe {
            (
                _mm_loadu_si128(data.as_ptr().add(offset) as *const __m128i),
                _mm_loadu_si128(data.as_ptr().add(offset + 10) as *const __m128i),
            )
        };

        // Combine into 256-bit register
        let input_256 = _mm256_set_m128i(input_hi, input_lo);

        // Extract 5-bit indices from both lanes (same algorithm as SSSE3, per-lane)
        // SAFETY: Called from function with matching target_feature
        let indices = unsafe { extract_5bit_indices_avx2(input_256) };

        // Translate 5-bit indices to ASCII (per-lane)
        // SAFETY: Called from function with matching target_feature
        let encoded = unsafe { translate_encode_avx2(indices, variant) };

        // Store 32 output characters
        let mut output_buf = [0u8; 32];
        // SAFETY: Pointer cast for SIMD store
        unsafe {
            _mm256_storeu_si256(output_buf.as_mut_ptr() as *mut __m256i, encoded);
        }

        // Append to result (safe because base32 is ASCII)
        for &byte in &output_buf {
            result.push(byte as char);
        }

        offset += BLOCK_SIZE;
    }

    // Handle remainder with SSSE3
    if simd_bytes < data.len() {
        // SAFETY: Called from function with matching target_feature
        unsafe {
            encode_ssse3_impl(&data[simd_bytes..], dictionary, variant, result);
        }
    }
}

/// Extract 32 x 5-bit indices from 20 packed input bytes (AVX2)
///
/// Processes two independent 10-byte blocks in parallel (one per 128-bit lane).
/// Same algorithm as SSSE3 unpack_5bit_simple, but applied to both lanes simultaneously.
#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "avx2")]
unsafe fn extract_5bit_indices_avx2(
    input: std::arch::x86_64::__m256i,
) -> std::arch::x86_64::__m256i {
    use std::arch::x86_64::*;

    // Extract both 128-bit lanes and process separately
    let lane_lo = _mm256_castsi256_si128(input);
    let lane_hi = _mm256_extracti128_si256(input, 1);

    // Apply SSSE3 unpacking to each lane
    // SAFETY: Called from function with matching target_feature
    let indices_lo = unsafe { unpack_5bit_simple(lane_lo) };
    let indices_hi = unsafe { unpack_5bit_simple(lane_hi) };

    // Recombine into 256-bit register
    _mm256_set_m128i(indices_hi, indices_lo)
}

/// Translate 5-bit indices to base32 ASCII characters (AVX2)
///
/// Operates on both 128-bit lanes independently.
/// Same algorithm as SSSE3 translate, but with 256-bit vectors.
#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "avx2")]
unsafe fn translate_encode_avx2(
    indices: std::arch::x86_64::__m256i,
    variant: Base32Variant,
) -> std::arch::x86_64::__m256i {
    use std::arch::x86_64::*;

    match variant {
        Base32Variant::Rfc4648 => {
            // RFC 4648 standard: 0-25 -> 'A'-'Z', 26-31 -> '2'-'7'
            // Create mask for indices >= 26
            let ge_26 = _mm256_cmpgt_epi8(indices, _mm256_set1_epi8(25));

            // Base offset is 'A' (65) for all
            let base = _mm256_set1_epi8(b'A' as i8);

            // Adjustment for >= 26: we want '2' (50) for index 26
            // So offset should be 50 - 26 = 24 instead of 65
            // Difference: 24 - 65 = -41
            let adjustment = _mm256_and_si256(ge_26, _mm256_set1_epi8(-41));

            _mm256_add_epi8(_mm256_add_epi8(indices, base), adjustment)
        }
        Base32Variant::Rfc4648Hex => {
            // RFC 4648 hex: 0-9 -> '0'-'9', 10-31 -> 'A'-'V'
            // Create mask for indices >= 10
            let ge_10 = _mm256_cmpgt_epi8(indices, _mm256_set1_epi8(9));

            // Base offset is '0' (48) for indices 0-9
            let base = _mm256_set1_epi8(b'0' as i8);

            // Adjustment for >= 10: we want 'A' (65) for index 10
            // So offset should be 65 - 10 = 55 instead of 48
            // Difference: 55 - 48 = 7
            let adjustment = _mm256_and_si256(ge_10, _mm256_set1_epi8(7));

            _mm256_add_epi8(_mm256_add_epi8(indices, base), adjustment)
        }
    }
}

/// SSSE3 base32 encoding implementation
///
/// Processes 10 input bytes -> 16 output characters per iteration.
/// Uses bit extraction via shuffle and shift operations to extract 5-bit groups.
#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "ssse3")]
unsafe fn encode_ssse3_impl(
    data: &[u8],
    dictionary: &Dictionary,
    variant: Base32Variant,
    result: &mut String,
) {
    use std::arch::x86_64::*;

    const BLOCK_SIZE: usize = 10; // 10 bytes -> 16 chars

    // Need at least 16 bytes in buffer to safely load 128 bits
    if data.len() < 16 {
        // Fall back to scalar for small inputs
        encode_scalar_remainder(data, dictionary, result);
        return;
    }

    // Process blocks of 10 bytes. We load 16 bytes but only use 10.
    // Ensure we don't read past the buffer: need 6 extra bytes after last block
    let safe_len = if data.len() >= 6 { data.len() - 6 } else { 0 };
    let (num_rounds, simd_bytes) = common::calculate_blocks(safe_len, BLOCK_SIZE);

    let mut offset = 0;
    for _ in 0..num_rounds {
        // SAFETY: Pointer arithmetic for SIMD load
        let input_vec = unsafe { _mm_loadu_si128(data.as_ptr().add(offset) as *const __m128i) };

        // Extract 5-bit indices from 10 packed bytes
        // SAFETY: Called from function with matching target_feature
        let indices = unsafe { extract_5bit_indices(input_vec) };

        // Translate 5-bit indices to ASCII
        // SAFETY: Called from function with matching target_feature
        let encoded = unsafe { translate_encode(indices, variant) };

        // Store 16 output characters
        let mut output_buf = [0u8; 16];
        // SAFETY: Pointer cast for SIMD store
        unsafe {
            _mm_storeu_si128(output_buf.as_mut_ptr() as *mut __m128i, encoded);
        }

        // Append to result (safe because base32 is ASCII)
        for &byte in &output_buf {
            result.push(byte as char);
        }

        offset += BLOCK_SIZE;
    }

    // Handle remainder with scalar code
    if simd_bytes < data.len() {
        encode_scalar_remainder(&data[simd_bytes..], dictionary, result);
    }
}

/// Extract 16 x 5-bit indices from 10 packed input bytes
///
/// This is the inverse of pack_5bit_to_8bit. Takes 10 bytes (80 bits)
/// and extracts 16 x 5-bit values (80 bits) into separate byte lanes.
///
/// For every 5 bytes [A B C D E], we extract 8 x 5-bit groups:
/// - Char 0: A >> 3           (bits 7-3 of A)
/// - Char 1: (A << 2) | (B >> 6) (bits 2-0 of A + bits 7-6 of B)
/// - Char 2: B >> 1           (bits 5-1 of B)
/// - Char 3: (B << 4) | (C >> 4) (bit 0 of B + bits 7-4 of C)
/// - Char 4: (C << 1) | (D >> 7) (bits 3-0 of C + bit 7 of D)
/// - Char 5: D >> 2           (bits 6-2 of D)
/// - Char 6: (D << 3) | (E >> 5) (bits 1-0 of D + bits 7-5 of E)
/// - Char 7: E & 0x1F         (bits 4-0 of E)
///
/// Note: Unlike base64's multiply-shift approach, 5-bit boundaries don't align
/// cleanly with 16-bit SIMD operations. We use a straightforward extraction
/// approach that's still faster than pure scalar for large inputs due to
/// SIMD translation and memory operations.
#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "ssse3")]
unsafe fn extract_5bit_indices(input: std::arch::x86_64::__m128i) -> std::arch::x86_64::__m128i {
    // Use direct extraction - 5-bit boundaries are irregular
    // SAFETY: Called from function with matching target_feature
    unsafe { unpack_5bit_simple(input) }
}

/// Simple 5-bit unpacking using direct shifts and masks
///
/// Extracts 16 x 5-bit values from 10 bytes
#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "ssse3")]
unsafe fn unpack_5bit_simple(input: std::arch::x86_64::__m128i) -> std::arch::x86_64::__m128i {
    use std::arch::x86_64::*;

    // Extract bytes 0-9 into a buffer for easier manipulation
    let mut buf = [0u8; 16];
    // SAFETY: Pointer cast for SIMD store
    unsafe {
        _mm_storeu_si128(buf.as_mut_ptr() as *mut __m128i, input);
    }

    // Extract 5-bit indices manually (two 5-byte groups)
    let mut indices = [0u8; 16];

    // First group: bytes 0-4 -> indices 0-7
    indices[0] = buf[0] >> 3;
    indices[1] = ((buf[0] & 0x07) << 2) | (buf[1] >> 6);
    indices[2] = (buf[1] >> 1) & 0x1F;
    indices[3] = ((buf[1] & 0x01) << 4) | (buf[2] >> 4);
    indices[4] = ((buf[2] & 0x0F) << 1) | (buf[3] >> 7);
    indices[5] = (buf[3] >> 2) & 0x1F;
    indices[6] = ((buf[3] & 0x03) << 3) | (buf[4] >> 5);
    indices[7] = buf[4] & 0x1F;

    // Second group: bytes 5-9 -> indices 8-15
    indices[8] = buf[5] >> 3;
    indices[9] = ((buf[5] & 0x07) << 2) | (buf[6] >> 6);
    indices[10] = (buf[6] >> 1) & 0x1F;
    indices[11] = ((buf[6] & 0x01) << 4) | (buf[7] >> 4);
    indices[12] = ((buf[7] & 0x0F) << 1) | (buf[8] >> 7);
    indices[13] = (buf[8] >> 2) & 0x1F;
    indices[14] = ((buf[8] & 0x03) << 3) | (buf[9] >> 5);
    indices[15] = buf[9] & 0x1F;

    // SAFETY: Pointer cast for SIMD load
    unsafe { _mm_loadu_si128(indices.as_ptr() as *const __m128i) }
}

/// Translate 5-bit indices (0-31) to base32 ASCII characters
#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "ssse3")]
unsafe fn translate_encode(
    indices: std::arch::x86_64::__m128i,
    variant: Base32Variant,
) -> std::arch::x86_64::__m128i {
    use std::arch::x86_64::*;

    match variant {
        Base32Variant::Rfc4648 => {
            // RFC 4648 standard: 0-25 -> 'A'-'Z', 26-31 -> '2'-'7'
            // For indices 0-25: add 'A' (65)
            // For indices 26-31: add ('2' - 26) = 24

            // Create mask for indices >= 26
            let ge_26 = _mm_cmpgt_epi8(indices, _mm_set1_epi8(25));

            // Base offset is 'A' (65) for all
            let base = _mm_set1_epi8(b'A' as i8);

            // Adjustment for >= 26: we want '2' (50) for index 26
            // So offset should be 50 - 26 = 24 instead of 65
            // Difference: 24 - 65 = -41
            let adjustment = _mm_and_si128(ge_26, _mm_set1_epi8(-41));

            _mm_add_epi8(_mm_add_epi8(indices, base), adjustment)
        }
        Base32Variant::Rfc4648Hex => {
            // RFC 4648 hex: 0-9 -> '0'-'9', 10-31 -> 'A'-'V'
            // For indices 0-9: add '0' (48)
            // For indices 10-31: add ('A' - 10) = 55

            // Create mask for indices >= 10
            let ge_10 = _mm_cmpgt_epi8(indices, _mm_set1_epi8(9));

            // Base offset is '0' (48) for indices 0-9
            let base = _mm_set1_epi8(b'0' as i8);

            // Adjustment for >= 10: we want 'A' (65) for index 10
            // So offset should be 65 - 10 = 55 instead of 48
            // Difference: 55 - 48 = 7
            let adjustment = _mm_and_si128(ge_10, _mm_set1_epi8(7));

            _mm_add_epi8(_mm_add_epi8(indices, base), adjustment)
        }
    }
}

/// AVX2 base32 decoding implementation
///
/// Processes 32 input characters -> 20 output bytes per iteration.
/// Uses 256-bit vectors to process two independent 16-char blocks in parallel.
///
/// Note: AVX2's vpshufb operates per 128-bit lane, so we process two
/// independent 16-char chunks as separate lanes.
#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "avx2")]
unsafe fn decode_avx2_impl(encoded: &[u8], variant: Base32Variant, result: &mut Vec<u8>) -> bool {
    use std::arch::x86_64::*;

    const INPUT_BLOCK_SIZE: usize = 32;

    // Need at least 32 bytes to use AVX2
    if encoded.len() < 32 {
        // Fall back to SSSE3 for small inputs
        // SAFETY: Called from function with matching target_feature
        return unsafe { decode_ssse3_impl(encoded, variant, result) };
    }

    // Get decode LUTs for this variant (128-bit versions)
    // SAFETY: Called from function with matching target_feature
    let (delta_check_128, delta_rebase_128) = unsafe { get_decode_delta_tables(variant) };

    // Broadcast to 256-bit (duplicate in both lanes)
    let delta_check = _mm256_broadcastsi128_si256(delta_check_128);
    let delta_rebase = _mm256_broadcastsi128_si256(delta_rebase_128);

    // Calculate number of full 32-byte blocks
    let (num_rounds, simd_bytes) = common::calculate_blocks(encoded.len(), INPUT_BLOCK_SIZE);

    // Process full blocks
    for round in 0..num_rounds {
        let offset = round * INPUT_BLOCK_SIZE;

        // SAFETY: Pointer arithmetic for SIMD load
        let input_vec =
            unsafe { _mm256_loadu_si256(encoded.as_ptr().add(offset) as *const __m256i) };

        // Validate and translate using hash-based approach
        // 1. Extract hash key (upper 4 bits)
        let hash_key = _mm256_and_si256(_mm256_srli_epi32(input_vec, 4), _mm256_set1_epi8(0x0F));

        // 2. Validate: check = delta_check[hash_key] + input
        let check = _mm256_add_epi8(_mm256_shuffle_epi8(delta_check, hash_key), input_vec);

        // 3. Check should be <= 0x1F (31) for valid base32 characters
        let invalid_mask = _mm256_cmpgt_epi8(check, _mm256_set1_epi8(0x1F));
        if _mm256_movemask_epi8(invalid_mask) != 0 {
            return false; // Invalid characters
        }

        // 4. Translate: indices = input + delta_rebase[hash_key]
        let indices = _mm256_add_epi8(input_vec, _mm256_shuffle_epi8(delta_rebase, hash_key));

        // Pack 5-bit values into bytes (32 chars -> 20 bytes, per-lane)
        // SAFETY: Called from function with matching target_feature
        let decoded = unsafe { pack_5bit_to_8bit_avx2(indices) };

        // Extract 10 bytes from each 128-bit lane (20 total)
        // Lane 0 (low): bytes 0-9
        // Lane 1 (high): bytes 0-9 (after extracting high 128 bits)
        let lane0 = _mm256_castsi256_si128(decoded);
        let lane1 = _mm256_extracti128_si256(decoded, 1);

        let mut buf0 = [0u8; 16];
        let mut buf1 = [0u8; 16];
        // SAFETY: Pointer casts for SIMD stores
        unsafe {
            _mm_storeu_si128(buf0.as_mut_ptr() as *mut __m128i, lane0);
            _mm_storeu_si128(buf1.as_mut_ptr() as *mut __m128i, lane1);
        }

        result.extend_from_slice(&buf0[0..10]);
        result.extend_from_slice(&buf1[0..10]);
    }

    // Handle remainder with SSSE3 fallback
    if simd_bytes < encoded.len() {
        let remainder = &encoded[simd_bytes..];
        // SAFETY: Called from function with matching target_feature
        if !unsafe { decode_ssse3_impl(remainder, variant, result) } {
            return false;
        }
    }

    true
}

/// Pack 32 bytes of 5-bit indices into 20 bytes (AVX2)
///
/// Processes two independent 16-char blocks (one per 128-bit lane).
/// Same algorithm as SSSE3 pack_5bit_to_8bit, but applied to both lanes simultaneously.
#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "avx2")]
unsafe fn pack_5bit_to_8bit_avx2(
    indices: std::arch::x86_64::__m256i,
) -> std::arch::x86_64::__m256i {
    use std::arch::x86_64::*;

    // Extract both 128-bit lanes and process separately
    let lane_lo = _mm256_castsi256_si128(indices);
    let lane_hi = _mm256_extracti128_si256(indices, 1);

    // Apply SSSE3 packing to each lane
    // SAFETY: Called from function with matching target_feature
    let packed_lo = unsafe { pack_5bit_to_8bit(lane_lo) };
    let packed_hi = unsafe { pack_5bit_to_8bit(lane_hi) };

    // Recombine into 256-bit register
    _mm256_set_m128i(packed_hi, packed_lo)
}

/// SSSE3 base32 decoding implementation
///
/// Based on Lemire's algorithm: https://lemire.me/blog/2023/07/20/fast-decoding-of-base32-strings/
/// Processes 16 input characters -> 10 output bytes per iteration
#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "ssse3")]
unsafe fn decode_ssse3_impl(encoded: &[u8], variant: Base32Variant, result: &mut Vec<u8>) -> bool {
    use std::arch::x86_64::*;

    const INPUT_BLOCK_SIZE: usize = 16;

    // Get decode LUTs for this variant
    // SAFETY: Called from function with matching target_feature
    let (delta_check, delta_rebase) = unsafe { get_decode_delta_tables(variant) };

    // Calculate number of full 16-byte blocks
    let (num_rounds, simd_bytes) = common::calculate_blocks(encoded.len(), INPUT_BLOCK_SIZE);

    // Process full blocks
    for round in 0..num_rounds {
        let offset = round * INPUT_BLOCK_SIZE;

        // SAFETY: Pointer arithmetic for SIMD load
        let input_vec = unsafe { _mm_loadu_si128(encoded.as_ptr().add(offset) as *const __m128i) };

        // Validate and translate using hash-based approach
        // 1. Extract hash key (upper 4 bits)
        let hash_key = _mm_and_si128(_mm_srli_epi32(input_vec, 4), _mm_set1_epi8(0x0F));

        // 2. Validate: check = delta_check[hash_key] + input
        let check = _mm_add_epi8(_mm_shuffle_epi8(delta_check, hash_key), input_vec);

        // 3. Check should be <= 0x1F (31) for valid base32 characters
        let invalid_mask = _mm_cmpgt_epi8(check, _mm_set1_epi8(0x1F));
        if _mm_movemask_epi8(invalid_mask) != 0 {
            return false; // Invalid characters
        }

        // 4. Translate: indices = input + delta_rebase[hash_key]
        let indices = _mm_add_epi8(input_vec, _mm_shuffle_epi8(delta_rebase, hash_key));

        // Pack 5-bit values into bytes (16 chars -> 10 bytes)
        // SAFETY: Called from function with matching target_feature
        let decoded = unsafe { pack_5bit_to_8bit(indices) };

        // Store 10 bytes
        let mut output_buf = [0u8; 16];
        // SAFETY: Pointer cast for SIMD store
        unsafe {
            _mm_storeu_si128(output_buf.as_mut_ptr() as *mut __m128i, decoded);
        }
        result.extend_from_slice(&output_buf[0..10]);
    }

    // Handle remainder with scalar fallback
    if simd_bytes < encoded.len() {
        let remainder = &encoded[simd_bytes..];
        if !decode_scalar_remainder(
            remainder,
            &mut |c| match variant {
                Base32Variant::Rfc4648 => match c {
                    b'A'..=b'Z' => Some(c - b'A'),
                    b'2'..=b'7' => Some(c - b'2' + 26),
                    _ => None,
                },
                Base32Variant::Rfc4648Hex => match c {
                    b'0'..=b'9' => Some(c - b'0'),
                    b'A'..=b'V' => Some(c - b'A' + 10),
                    _ => None,
                },
            },
            result,
        ) {
            return false;
        }
    }

    true
}

/// Get decode delta tables for hash-based validation
///
/// Returns (delta_check, delta_rebase) lookup tables indexed by high nibble.
/// These tables enable single-shuffle validation and translation.
#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "ssse3")]
unsafe fn get_decode_delta_tables(
    variant: Base32Variant,
) -> (std::arch::x86_64::__m128i, std::arch::x86_64::__m128i) {
    use std::arch::x86_64::*;

    match variant {
        Base32Variant::Rfc4648 => {
            // RFC 4648 standard: A-Z (0x41-0x5A) -> 0-25, 2-7 (0x32-0x37) -> 26-31
            // Hash key is high nibble (input >> 4)
            //
            // High nibble ranges:
            // 0x3x: '2'-'7' (0x32-0x37)
            // 0x4x: 'A'-'O' (0x41-0x4F)
            // 0x5x: 'P'-'Z' (0x50-0x5A)
            //
            // delta_check: add this + input, result should be <= 0x1F
            // delta_rebase: add this + input to get 5-bit index

            let delta_check = _mm_setr_epi8(
                0x7F,
                0x7F,
                0x7F,                // 0x0, 0x1, 0x2 - invalid
                (0x1F - 0x37) as i8, // 0x3: '2'-'7' -> check <= 0x1F
                (0x1F - 0x4F) as i8, // 0x4: 'A'-'O' -> check <= 0x1F
                (0x1F - 0x5A) as i8, // 0x5: 'P'-'Z' -> check <= 0x1F
                0x7F,
                0x7F,
                0x7F,
                0x7F,
                0x7F,
                0x7F,
                0x7F,
                0x7F,
                0x7F,
                0x7F, // 0x6-0xF - invalid
            );

            let delta_rebase = _mm_setr_epi8(
                0,
                0,
                0,                           // 0x0, 0x1, 0x2 - unused
                (26i16 - b'2' as i16) as i8, // 0x3: '2' -> 26
                (0i16 - b'A' as i16) as i8,  // 0x4: 'A' -> 0
                (0i16 - b'A' as i16) as i8,  // 0x5: 'A' -> 0 (P-Z use same offset)
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0, // 0x6-0xF - unused
            );

            (delta_check, delta_rebase)
        }
        Base32Variant::Rfc4648Hex => {
            // RFC 4648 hex: 0-9 (0x30-0x39) -> 0-9, A-V (0x41-0x56) -> 10-31
            // High nibble ranges:
            // 0x3x: '0'-'9' (0x30-0x39)
            // 0x4x: 'A'-'O' (0x41-0x4F)
            // 0x5x: 'P'-'V' (0x50-0x56)

            let delta_check = _mm_setr_epi8(
                0x7F,
                0x7F,
                0x7F,                // 0x0, 0x1, 0x2 - invalid
                (0x1F - 0x39) as i8, // 0x3: '0'-'9' -> check <= 0x1F
                (0x1F - 0x4F) as i8, // 0x4: 'A'-'O' -> check <= 0x1F
                (0x1F - 0x56) as i8, // 0x5: 'P'-'V' -> check <= 0x1F
                0x7F,
                0x7F,
                0x7F,
                0x7F,
                0x7F,
                0x7F,
                0x7F,
                0x7F,
                0x7F,
                0x7F, // 0x6-0xF - invalid
            );

            let delta_rebase = _mm_setr_epi8(
                0,
                0,
                0,                           // 0x0, 0x1, 0x2 - unused
                (0i16 - b'0' as i16) as i8,  // 0x3: '0' -> 0
                (10i16 - b'A' as i16) as i8, // 0x4: 'A' -> 10
                (10i16 - b'A' as i16) as i8, // 0x5: 'A' -> 10 (P-V use same offset)
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0,
                0, // 0x6-0xF - unused
            );

            (delta_check, delta_rebase)
        }
    }
}

/// Pack 16 bytes of 5-bit indices into 10 bytes
///
/// Based on Lemire's multiply-shift approach for base32.
/// 16 5-bit values -> 10 8-bit bytes
#[cfg(target_arch = "x86_64")]
#[target_feature(enable = "ssse3")]
unsafe fn pack_5bit_to_8bit(indices: std::arch::x86_64::__m128i) -> std::arch::x86_64::__m128i {
    use std::arch::x86_64::*;

    // Process in groups of 8 chars -> 5 bytes
    // Input: 8 bytes, each containing 5-bit value (0x00-0x1F)
    // Output: 5 packed bytes

    // Stage 1: Merge pairs using multiply-add
    // _mm_maddubs_epi16: multiply pairs of bytes, then add adjacent results
    // Multiply by 0x20 (32) to shift left by 5 bits, 0x01 to keep in place
    // Result: 8 16-bit values, each combining two 5-bit inputs
    let merged = _mm_maddubs_epi16(indices, _mm_set1_epi32(0x01200120u32 as i32));

    // Stage 2: Combine 16-bit pairs into 32-bit values
    // _mm_madd_epi16: multiply pairs of 16-bit values, then add adjacent results
    // This packs four 5-bit values into each 32-bit lane
    // 0x00000001 << 16 | 0x00000400 = shift left by 10 bits, or keep in place << 10
    let combined = _mm_madd_epi16(
        merged,
        _mm_set_epi32(
            0x00010400, // High 64-bit lane, 2nd pair
            0x00104000, // High 64-bit lane, 1st pair
            0x00010400, // Low 64-bit lane, 2nd pair
            0x00104000, // Low 64-bit lane, 1st pair
        ),
    );

    // Now we have 4 x 32-bit values, each containing parts of our packed output
    // Layout (after multiply-add):
    // - Each 32-bit contains bits from 4 5-bit inputs
    // - We need to extract and rearrange these

    // Stage 3: Shift and combine to consolidate bits
    // Shift upper 16 bits of each 32-bit down, then OR
    let shifted = _mm_srli_epi64(combined, 48);
    let packed = _mm_or_si128(combined, shifted);

    // Stage 4: Shuffle to extract the 10 valid bytes in correct order
    // From NLnetLabs/simdzone: _mm_set_epi8(0, 0, 0, 0, 0, 0, 12, 13, 8, 9, 10, 4, 5, 0, 1, 2)
    // Note: _mm_set_epi8 is in REVERSE order (first arg goes to byte 15)
    // Converting to setr order (forward): 2, 1, 0, 5, 4, 10, 9, 8, 13, 12, 0, 0, 0, 0, 0, 0
    _mm_shuffle_epi8(
        packed,
        _mm_setr_epi8(
            2, 1, 0, // Bytes 0-2
            5, 4, // Bytes 3-4
            10, 9, 8, // Bytes 5-7
            13, 12, // Bytes 8-9
            0, 0, 0, 0, 0, 0, // Padding
        ),
    )
}

/// Decode bytes using scalar algorithm
fn decode_scalar_remainder(
    data: &[u8],
    char_to_index: &mut dyn FnMut(u8) -> Option<u8>,
    result: &mut Vec<u8>,
) -> bool {
    // Use common scalar chunked decoding (5-bit for base32)
    common::decode_scalar_chunked(data, char_to_index, result, 5)
}

#[cfg(test)]
#[allow(deprecated)]
mod tests {
    use super::*;
    use crate::core::config::EncodingMode;
    use crate::core::dictionary::Dictionary;

    fn make_base32_dict() -> Dictionary {
        let chars: Vec<char> = "ABCDEFGHIJKLMNOPQRSTUVWXYZ234567".chars().collect();
        Dictionary::new_with_mode(chars, EncodingMode::Chunked, Some('=')).unwrap()
    }

    fn make_base32_hex_dict() -> Dictionary {
        let chars: Vec<char> = "0123456789ABCDEFGHIJKLMNOPQRSTUV".chars().collect();
        Dictionary::new_with_mode(chars, EncodingMode::Chunked, Some('=')).unwrap()
    }

    #[test]
    fn test_encode_known_values() {
        let dictionary = make_base32_dict();

        let test_cases = [
            (b"".as_slice(), ""),
            (b"f", "MY======"),
            (b"fo", "MZXQ===="),
            (b"foo", "MZXW6==="),
            (b"foob", "MZXW6YQ="),
            (b"fooba", "MZXW6YTB"),
            (b"foobar", "MZXW6YTBOI======"),
        ];

        for (input, expected) in test_cases {
            if let Some(simd_result) = encode(input, &dictionary, Base32Variant::Rfc4648) {
                assert_eq!(simd_result, expected, "Failed for input: {:?}", input);
            }
        }
    }

    #[test]
    fn test_encode_hex_variant() {
        let dictionary = make_base32_hex_dict();

        let test_cases = [
            (b"".as_slice(), ""),
            (b"f", "CO======"),
            (b"fo", "CPNG===="),
            (b"foo", "CPNMU==="),
        ];

        for (input, expected) in test_cases {
            if let Some(simd_result) = encode(input, &dictionary, Base32Variant::Rfc4648Hex) {
                assert_eq!(simd_result, expected, "Failed for input: {:?}", input);
            }
        }
    }

    #[test]
    fn test_decode_round_trip() {
        let dictionary = make_base32_dict();

        for len in 0..100 {
            let original: Vec<u8> = (0..len).map(|i| (i * 7) as u8).collect();

            if let Some(encoded) = encode(&original, &dictionary, Base32Variant::Rfc4648)
                && let Some(decoded) = decode(&encoded, Base32Variant::Rfc4648)
            {
                assert_eq!(decoded, original, "Round-trip failed at length {}", len);
            }
        }
    }

    #[test]
    fn test_decode_hex_round_trip() {
        let dictionary = make_base32_hex_dict();

        for len in 0..100 {
            let original: Vec<u8> = (0..len).map(|i| (i * 7) as u8).collect();

            if let Some(encoded) = encode(&original, &dictionary, Base32Variant::Rfc4648Hex)
                && let Some(decoded) = decode(&encoded, Base32Variant::Rfc4648Hex)
            {
                assert_eq!(decoded, original, "Round-trip failed at length {}", len);
            }
        }
    }

    #[test]
    fn test_avx2_large_input() {
        let dictionary = make_base32_dict();

        // Test with input large enough to trigger AVX2 path (>32 bytes)
        // 40 bytes = 2 AVX2 blocks (20 bytes each)
        let test_data: Vec<u8> = (0..40).collect();

        if let Some(simd_result) = encode(&test_data, &dictionary, Base32Variant::Rfc4648) {
            // Verify round-trip
            if let Some(decoded) = decode(&simd_result, Base32Variant::Rfc4648) {
                assert_eq!(decoded, test_data, "AVX2 round-trip failed");
            }
        }
    }

    #[test]
    fn test_avx2_decode_large() {
        // Test AVX2 decode path with input large enough (>32 chars)
        // 64 chars = 2 AVX2 blocks (32 chars each -> 40 bytes total)
        let dictionary = make_base32_dict();
        let test_data: Vec<u8> = (0..40).map(|i| (i * 3) as u8).collect();

        if let Some(encoded) = encode(&test_data, &dictionary, Base32Variant::Rfc4648) {
            // Should use AVX2 for decoding
            if let Some(decoded) = decode(&encoded, Base32Variant::Rfc4648) {
                assert_eq!(decoded, test_data, "AVX2 decode failed");
            }
        }
    }

    #[test]
    fn test_padding_validation_correct() {
        // Valid padding cases per RFC 4648
        assert!(decode("MY======", Base32Variant::Rfc4648).is_some()); // 2 data chars, 6 padding
        assert!(decode("MZXQ====", Base32Variant::Rfc4648).is_some()); // 4 data chars, 4 padding
        assert!(decode("MZXW6===", Base32Variant::Rfc4648).is_some()); // 5 data chars, 3 padding
        assert!(decode("MZXW6YQ=", Base32Variant::Rfc4648).is_some()); // 7 data chars, 1 padding
        assert!(decode("MZXW6YTB", Base32Variant::Rfc4648).is_some()); // 8 data chars, 0 padding

        // Valid unpadded cases
        assert!(decode("MY", Base32Variant::Rfc4648).is_some()); // 2 data chars, no padding
        assert!(decode("MZXQ", Base32Variant::Rfc4648).is_some()); // 4 data chars, no padding
    }

    #[test]
    fn test_padding_validation_incorrect() {
        // Invalid padding count for data length
        assert!(decode("MY=====", Base32Variant::Rfc4648).is_none()); // Wrong padding count (5 instead of 6)
        assert!(decode("MY=======", Base32Variant::Rfc4648).is_none()); // Wrong padding count (7 instead of 6)
        assert!(decode("MZXQ===", Base32Variant::Rfc4648).is_none()); // Wrong padding count (3 instead of 4)
        assert!(decode("MZXW6==", Base32Variant::Rfc4648).is_none()); // Wrong padding count (2 instead of 3)
        assert!(decode("MZXW6YQ==", Base32Variant::Rfc4648).is_none()); // Wrong padding count (2 instead of 1)

        // Total length not multiple of 8 with padding
        assert!(decode("MY=", Base32Variant::Rfc4648).is_none()); // Length 3, not multiple of 8

        // Invalid data length (not 0, 2, 4, 5, 7 mod 8)
        assert!(decode("M", Base32Variant::Rfc4648).is_none()); // 1 char, invalid
        assert!(decode("MYX", Base32Variant::Rfc4648).is_none()); // 3 chars, invalid
        assert!(decode("MZXW6Y", Base32Variant::Rfc4648).is_none()); // 6 chars, invalid
    }
}