decimal-scaled 0.5.0

Const-generic base-10 fixed-point decimals (D18/D38/D76/D153/D307 and the half-width tiers up to D1232) with integer-only transcendentals correctly rounded to within 0.5 ULP — exact at the type's last representable place. Deterministic across every platform; no_std-friendly.
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
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
// SPDX-FileCopyrightText: 2026 John Moxley
// SPDX-License-Identifier: MIT OR Apache-2.0

//! Exponential series kernel — `exp_fixed` evaluated on the 256-bit
//! `Fixed` guard-digit intermediate, parameterised by working-digit
//! guard.
//!
//! The narrow `Int<2>`-storage series path: it serves the narrow
//! D18 / D38 tier, where the result must be correctly rounded but the
//! storage is too small to host the guard digits directly, so the
//! Taylor evaluation runs in the wider `Fixed` intermediate. Returns
//! the raw `i128` storage at the input's scale; the typed method shell
//! handles the panic-on-overflow message.
//!
//! Hosts the shared `Fixed` exp primitive used by the `policy::exp`
//! defaults (`exp_fixed`) so the typed-shell file has no
//! `crate::algos::*` or `crate::algos::support::fixed::*` references left.

use crate::algos::pow::powi_exact::ExactPin;
use crate::algos::support::fixed::Fixed;
use crate::algos::support::narrow_ziv::{self, WZiv};
use crate::algos::ln::ln_series_2limb::{STRICT_GUARD, wide_ln2};
use crate::int::types::Int;
use crate::support::rounding::RoundingMode;

/// Work integer for the narrow integer-regime / MAX-scale exp fallback.
///
/// `Int<24>` is 1536 bits ≈ 462 decimal digits — far wider than the
/// 256-bit `Fixed` (~77 digits) the normal narrow path runs in. The
/// largest D38 result fits 38 storage digits, and at the strict working
/// scale `w = SCALE + STRICT_GUARD ≤ 68` the internal `exp_fixed` peak
/// (`≈ 2·w_ext`, `w_ext = w + extra`, `extra ≈ result_int_digits`) tops
/// out near `2·(68 + 60) ≈ 256` digits, so `Int<24>` holds it with a
/// comfortable margin for every D38 (and D18) cell. The work width is the
/// fixed [`WNarrow`] type, NOT a const work-width parameter — it is a
/// concrete wider integer the generic [`exp_generic::exp_fixed`] runs in.
type WNarrow = Int<24>;

/// Integer-digit count of `e^x` for the storage value `raw` at `scale`
/// (`x = raw / 10^scale`). For `x ≤ 0` (`e^x ≤ 1`) the result has a
/// single integer digit (`0` or `1`). For `x > 0`, `e^x` has
/// `floor(x·log10 e) + 1` integer digits, computed in exact `i128`
/// arithmetic from the rational bound `log10 e ≈ 434295 / 1_000_000`
/// (rounded UP via `div_ceil`, so the digit count is never UNDER-stated).
/// Over-stating is the safe direction for the [`narrow_fixed_fits`] gate:
/// it errs toward routing a borderline cell to the wider work integer.
#[inline]
fn exp_result_int_digits(raw: i128, scale: u32) -> u32 {
    if raw <= 0 {
        return 1;
    }
    // `int_digits(e^x) = ceil(x · log10 e) + 1`, `x = raw / 10^scale`,
    // `log10 e ≈ 434295 / 1_000_000`. We need
    // `ceil(raw · 434295 / (10^scale · 1_000_000)) + 1`.
    //
    // Forming `raw · 434295` and `10^scale · 1_000_000` directly both
    // overflow `u128` for in-range cells (`raw ≈ 1.7e38`, and any
    // `scale ≥ 33` makes `10^scale·10^6 > u128::MAX`). Returning
    // `u32::MAX` ("does not fit") whenever the DENOMINATOR
    // overflows is wrong: a SMALL argument at a HIGH scale
    // (e.g. `exp(0.1)` at scale 37, `raw = 10^36`) has a tiny result that
    // fits the fast path, yet `10^37·10^6` overflows and would force
    // the cell onto the expensive wide `WNarrow` path — mis-routing the
    // D38/cosh/sinh high-scale exp cells.
    //
    // The integer-digit count of `e^x` is governed by the MAGNITUDE of
    // `x = raw / 10^scale`, which never overflows even when `raw·434295`
    // and `10^scale·10^6` individually do. We want, exactly as before,
    //   `ceil(raw · 434295 / (10^scale · 10^6)) + 1`.
    // Compute it overflow-free by first dividing `raw` by `10^scale`
    // (split into integer part `q` and remainder `r`), then forming the
    // `·434295/10^6` product on the BOUNDED pieces:
    //
    //   raw·434295 / 10^scale = q·434295 + (r·434295)/10^scale
    //
    // where `q = ⌊x⌋`. The result int-digit count is past the 22-digit
    // fast band once `q ≳ 50`, so capping `q` at 60 keeps `q·434295`
    // inside u128 without ever mis-classifying an in-band cell — and the
    // remainder term `r·434295 < 10^scale·434295` is divided back down by
    // `10^scale`, never overflowing because `r < 10^scale ≤ 10^38` and
    // `434295 < 10^6` give `r·434295 < 10^44`… which DOES overflow for
    // large scale, so divide `r` toward the reduced scale first: drop the
    // low digits of `r` that cannot affect the `/10^6` ceil. Keeping the
    // top 12 significant digits of the fraction (`10^6` precision ×6 guard)
    // is exact for the comparison; do it by reducing `r`/`10^scale` to
    // `r6 = r·10^7 / 10^scale` (the fraction ×10^7, ≤ 10^7), all in u128.
    let one_s = match 10u128.checked_pow(scale) {
        Some(p) => p,
        // `scale > 38` cannot occur for an `i128`-storage tier; an
        // enormous scale means `x < 1`, single integer digit.
        None => return 1,
    };
    let raw_u = raw as u128;
    let q = raw_u / one_s; // integer part of x = ⌊raw / 10^scale⌋
    let r = raw_u % one_s; // fractional remainder, r < 10^scale
    // Past q = 50 the count certainly exceeds the 22-digit band; cap at 60
    // so q·434295 stays in u128 and never under-states an in-band cell.
    let q_capped = q.min(60);
    // Fraction of x scaled by 10^7 (one guard digit beyond the 10^6 in
    // log10 e): r/10^scale ∈ [0,1) ⇒ r7 = ⌊r·10^7 / 10^scale⌋ ∈ [0, 10^7).
    // Form it overflow-free: if scale ≤ 7, r·10^(7−scale); else r / 10^(scale−7).
    let r7 = if scale <= 7 {
        r * 10u128.pow(7 - scale)
    } else {
        r / 10u128.pow(scale - 7)
    };
    // x·10^7 ≈ q·10^7 + r7, then ·434295 / 10^6, ceil, +1.
    // numerator = (q·10^7 + r7)·434295, all bounded (q ≤ 60, r7 < 10^7).
    let x_e7 = q_capped * 10_000_000 + r7; // x · 10^7 (q capped)
    let num = x_e7 * 434_295; // / 10^7 / 10^6 = / 10^13 gives x·log10 e
    (num.div_ceil(10u128.pow(13)).min(u32::MAX as u128 - 1) as u32) + 1
}

/// Largest `e^x` integer-digit count the fast 256-bit `Fixed` path rounds
/// correctly. Empirically (the `validity_probe`) the fast path first
/// diverges from the wide reference at `≥ 25` result integer digits (the
/// guard digits left above the `2^k`-reassembled integer part erode to too
/// few). `22` keeps a 3-digit margin below that wall, so every cell at or
/// below it is bit-identical to the wide path; above it the integer-regime
/// cell takes the wider [`WNarrow`] work integer.
const FAST_MAX_RESULT_DIGITS: u32 = 22;

/// Whether the 256-bit `Fixed` fast path computes `e^x` correctly for the
/// storage value `raw` at `scale` — i.e. the result is NOT in the
/// integer-regime where its many integer digits leave the `Fixed` too few
/// guard digits to round correctly. Keyed on the result's integer-digit
/// count against [`FAST_MAX_RESULT_DIGITS`]; `w` is unused (kept for the
/// existing callers' signature) — the squaring/`2^k`-reassembly peak is
/// computed in the full 512-bit product inside `Fixed::mul`, so it never
/// overflows; only the rounded result's guard-digit budget bounds the fast
/// path, and that is purely a function of the result magnitude.
#[inline]
fn narrow_fixed_fits(raw: i128, scale: u32, w: u32) -> bool {
    let _ = w;
    exp_result_int_digits(raw, scale) <= FAST_MAX_RESULT_DIGITS
}

/// `e` raised to a working-scale value `v_w`, returned at the same
/// working scale `w`.
///
/// Range-reduces `v = k·ln(2) + s` with `|s| ≤ ln(2)/2`, halves `s`
/// `n` further times (`s_red = s / 2^n`), evaluates the Taylor
/// series for `exp(s_red)` on the much smaller argument, then squares
/// the result `n` times to recover `exp(s) = (exp(s_red))^(2^n)` —
/// classic Brent–Salamin "argument reduction + squaring" trick. `n`
/// is tuned so the Taylor cost (one mul + one div_small per term)
/// trades evenly against the `n` post-squarings (one wide mul each).
///
/// At `w = 44` decimal digits (D38 SCALE 19 + STRICT_GUARD = 25) the
/// naïve series wants ~25 iterations; halving with `n = 5` cuts that
/// to ~10 and adds five squarings — net ~30 % fewer wide multiplies.
///
/// Finally `2^k · exp(s)` is reassembled by shifting the working
/// value (so the `2^k` factor never amplifies a rounding error).
///
/// # Panics
///
/// Panics if `2^k · exp(s)` cannot fit a 256-bit working value — i.e.
/// the caller's result would overflow its representable range.
pub(crate) fn exp_fixed(v_w: Fixed, w: u32) -> Fixed {
    let one_w = Fixed {
        negative: false,
        mag: Fixed::pow10(w),
    };
    // Deep-underflow pre-gate — BEFORE the `k` range-reduction divide. For
    // a deep negative argument that divide (and the `k·ln 2` product after
    // it) overflows the 256-bit intermediates: `|v| ≥ (w+1)·ln 10` makes
    // `e^v < 10^-(w+1)`, strictly below the working resolution, while
    // `|k| ≈ |v|/ln 2` is far past what `mul_u128` / the `2^k` shift can
    // carry — pre-fix, `exp(-1.5e38)` died in an internal `div_u512_by_
    // pow10` invariant instead of returning its in-range 0. The threshold
    // `(w+1)·2.302586` over-approximates `(w+1)·ln 10` (so the gate only
    // fires on provable sub-resolution values), built as `(w+1)·2_302_586 ·
    // 10^(w−6)` — within `U256` for every working scale this kernel serves
    // (`w ≤ 68`). The returned ZERO is exactly what the ungated body
    // produces for any deep negative it can carry (`sum >> |k|` underflows
    // to zero), so every caller — exp's nearest-mode fast path (directed
    // modes route to the wider work integer before this kernel) and powf's
    // composition — sees the value it always did.
    if v_w.negative && w >= 6 {
        let thr = Fixed {
            negative: false,
            mag: Fixed::pow10(w - 6),
        }
        .mul_u128(((w as u128) + 1) * 2_302_586);
        if v_w.ge_mag(thr) {
            return Fixed::ZERO;
        }
    }
    let ln2 = wide_ln2(w);

    // k = round(v / ln 2); s = v - k·ln(2), |s| <= ln(2)/2.
    let k = v_w.div(ln2, w).round_to_nearest_int(w);
    let k_ln2 = if k >= 0 {
        ln2.mul_u128(k as u128)
    } else {
        ln2.mul_u128((-k) as u128).neg()
    };
    let s = v_w.sub(k_ln2);

    // Argument halvings: pick `n` such that `(n+1)² ≤ 3w+1` — the
    // standard tuning where one extra halving saves roughly two
    // Taylor iterations but costs one final squaring. For w ≤ 44
    // this lands at n ∈ {4, 5, 6}.
    let p_bits = w.saturating_mul(3).saturating_add(1);
    let mut n: u32 = 1;
    while (n + 1) * (n + 1) <= p_bits {
        n += 1;
    }
    let s_red = s.shr(n);

    // Taylor series exp(s_red) = 1 + s_red + s_red²/2! + … on the
    // halved argument — `term` carries s_redⁱ/i!.
    let mut sum = one_w.add(s_red);
    let mut term = s_red;
    let mut i: u128 = 2;
    loop {
        term = term.mul(s_red, w).div_small(i);
        if term.is_zero() {
            break;
        }
        sum = sum.add(term);
        i += 1;
        if i > 400 {
            break;
        }
    }

    // Undo the n halvings: exp(s) = (exp(s_red))^(2^n) — `n` repeated
    // squarings.
    for _ in 0..n {
        sum = sum.mul(sum, w);
    }

    // exp(v) = 2^k · exp(s).
    if k >= 0 {
        // Saturating narrowing: a `k` past `u32` (not formable by the gated
        // callers, but cheap to make total) must FAIL the range assert, not
        // wrap into a small shift that silently passes it.
        let shift = u32::try_from(k).unwrap_or(u32::MAX);
        assert!(
            (sum.bit_length() as u64) + (shift as u64) <= 256,
            "D38::exp: result out of range"
        );
        sum.shl(shift)
    } else {
        // `shr` is total for any shift ≥ 256 (the magnitude underflows to
        // zero), so clamp rather than truncate: a wrapped `(-k) as u32`
        // could land on a SMALL shift and return a wrongly large value.
        sum.shr(k.unsigned_abs().min(256) as u32)
    }
}

/// Narrow integer-regime / MAX-scale `e^x` fallback, evaluated in the
/// wider [`WNarrow`] (`Int<24>`) work integer instead of the 256-bit
/// `Fixed`, then narrowed back to `i128` storage with correctly-rounded
/// directed / nearest rounding.
///
/// Used when the result carries too many integer digits for the `Fixed`
/// to hold the `exp_fixed` peak ([`narrow_fixed_fits`] is false), or when
/// a directed mode needs the never-exact treatment of a sub-resolution
/// `e^(negative)` (`exp(-76)·10^0 ≈ 0` must round Ceiling up to `1`, not
/// truncate to `0`). The wider work integer gives the `2^k` reassembly
/// the headroom the flat-`w` `Fixed` lacks, and [`exp_generic::exp_fixed`]
/// already returns the smallest positive working value (`10^-w`) for a
/// deep-underflow `e^(negative)` so the sign is preserved into the
/// rounding. `exp_generic::exp_fixed::<WNarrow>` is the SAME range-reduce
/// → squaring-Taylor → `2^k`-reassemble algorithm as the per-tier wide
/// `exp_fixed`, just run in the wider `Int<24>` — one generic kernel, no
/// per-tier copy.
fn exp_wide_narrow_raw(
    raw: i128,
    scale: u32,
    working_digits: u32,
    mode: RoundingMode,
) -> Option<i128> {
    use crate::algos::exp::exp_generic;

    let w = scale + working_digits;
    let negative_input = raw < 0;
    let v_mag = WNarrow::from_i128(raw.unsigned_abs() as i128) * crate::consts::pow10::dispatch::<WNarrow>(working_digits);
    let v_w = if negative_input { -v_mag } else { v_mag };

    // `try_exp_fixed`: a deep argument the generic kernel proves out of
    // range is this kernel's `None` (the policy dispatch wrapper applies
    // the default form's contractual panic; the `checked_` surface
    // propagates it), same as the post-narrowing fit check below.
    let ex = exp_generic::try_exp_fixed::<WNarrow>(v_w, w)?;
    narrow_round_mag(ex, working_digits, mode, true, false)
}

/// Whether the sub-storage residual of the non-negative working
/// magnitude `mag` (at `shift` digits above storage) is clear of the
/// mode's deciding boundary by more than the near-tie band
/// (`divisor/1000`) — the [`WNarrow`] sibling of
/// [`Fixed::round_to_i128_clear_of_tie`]'s band check. `false` = the
/// strict caller must escalate through the Ziv walker.
#[inline]
fn wnarrow_residual_clear(mag: WNarrow, shift: u32, mode: RoundingMode) -> bool {
    let divisor = crate::consts::pow10::dispatch::<WNarrow>(shift);
    let (_q, rem) = mag.div_rem(divisor);
    let band = if shift >= 3 {
        crate::consts::pow10::dispatch::<WNarrow>(shift - 3)
    } else {
        WNarrow::ZERO
    };
    let dist = if crate::support::rounding::is_nearest_mode(mode) {
        let half = divisor >> 1;
        if rem < half { half - rem } else { rem - half }
    } else {
        let comp = divisor - rem;
        if rem < comp { rem } else { comp }
    };
    dist > band
}

/// One `WZiv` exp probe at working scale `scale + g` (`WZiv` and
/// [`WNarrow`] are the same `Int<24>`).
fn exp_ziv(raw: i128, scale: u32, g: u32) -> WZiv {
    crate::algos::exp::exp_generic::exp_fixed::<WZiv>(narrow_ziv::lift(raw, g), scale + g)
}

/// Strict-path integer-regime / directed `e^x` — the wide-[`WNarrow`]
/// single shot with the near-tie protected terminal: a clear residual
/// keeps the cheap single-shot cost; a near-tie escalates through the
/// never-exact Ziv walker (`e^x` is transcendental for every `x ≠ 0`).
fn exp_wide_narrow_strict_raw(raw: i128, scale: u32, mode: RoundingMode) -> Option<i128> {
    use crate::algos::exp::exp_generic;

    let w = scale + STRICT_GUARD;
    let negative_input = raw < 0;
    let v_mag = WNarrow::from_i128(raw.unsigned_abs() as i128)
        * crate::consts::pow10::dispatch::<WNarrow>(STRICT_GUARD);
    let v_w = if negative_input { -v_mag } else { v_mag };
    let ex = exp_generic::try_exp_fixed::<WNarrow>(v_w, w)?;
    let base = narrow_round_mag(ex, STRICT_GUARD, mode, true, false);
    if wnarrow_residual_clear(ex, STRICT_GUARD, mode) {
        return base;
    }
    narrow_ziv::walk_checked_never_exact(base, STRICT_GUARD, scale, mode, |g| {
        exp_ziv(raw, scale, g)
    })
}

/// Narrows a non-negative [`WNarrow`] working-scale magnitude `mag`
/// (`= value · 10^w`, `value > 0` and irrational at a non-trivial
/// argument) to a signed `i128` storage value at scale `w − shift` under
/// `mode`. `never_exact` mirrors the wide directed path: a zero working
/// residual is treated as a present positive sub-resolution fraction
/// (bumps Ceiling, not Floor/Trunc). `result_neg` reapplies an odd
/// function's sign AFTER rounding the magnitude.
///
/// Returns `None` when the rounded storage value does not fit the `i128`
/// the narrow tier stores its result in — a genuine RESULT-TYPE overflow
/// (e.g. `exp(100)` at D38<35> is ~2.7e43·10^35, far beyond `i128::MAX`),
/// DISTINCT from the working-width (`exp_fixed` internal `2·w_ext`)
/// overflow the wider `WNarrow` work integer fixes. The caller turns the
/// `None` into the same overflow panic / saturation the `Fixed` path's
/// `round_to_i128_with` did, so `exp_strict` still panics on an
/// unrepresentable result rather than silently returning a wrapped value.
#[inline]
fn narrow_round_mag(
    mag: WNarrow,
    shift: u32,
    mode: RoundingMode,
    never_exact: bool,
    result_neg: bool,
) -> Option<i128> {
    use crate::support::rounding::{is_nearest_mode, should_bump};
    let divisor = crate::consts::pow10::dispatch::<WNarrow>(shift);
    let (q, rem) = mag.div_rem(divisor);
    let result_positive = !result_neg;
    let bump = if rem != WNarrow::ZERO {
        if is_nearest_mode(mode) {
            let comp = divisor - rem;
            let cmp_r = rem.cmp(&comp);
            should_bump(mode, cmp_r, q.bit(0), result_positive)
        } else {
            match mode {
                RoundingMode::Ceiling => result_positive,
                RoundingMode::Floor => !result_positive,
                _ => false, // Trunc
            }
        }
    } else if never_exact {
        // Present-and-positive sub-resolution residual.
        match mode {
            RoundingMode::Ceiling => result_positive,
            RoundingMode::Floor => !result_positive,
            _ => false,
        }
    } else {
        false
    };
    let q_mag = if bump { q + WNarrow::ONE } else { q };
    // Result-type fit check (mirrors `Fixed::round_to_i128_with`): the
    // non-negative quotient magnitude `q_mag` must fit the signed `i128`.
    // A positive result fits iff `q_mag <= i128::MAX`; a negative result
    // iff `q_mag <= 2^127` (= `|i128::MIN|`). Both are bounded by
    // `bit_length <= 127`, with the single extra `2^127` value allowed
    // only for the negative side.
    let bl = q_mag.bit_length();
    if bl > 128 {
        return None;
    }
    if bl == 128 {
        // The only 128-bit magnitude that fits is exactly `2^127`, and
        // only as a negative result (`i128::MIN`).
        let two_pow_127 = WNarrow::ONE << 127;
        if !(result_neg && q_mag == two_pow_127) {
            return None;
        }
    } else if bl == 127 && !result_neg {
        // `2^126 <= q_mag < 2^127`: a positive result fits iff
        // `q_mag <= i128::MAX = 2^127 - 1`. bit_length 127 already
        // guarantees `q_mag < 2^127`, so it fits.
    }
    let signed = if result_neg { -q_mag } else { q_mag };
    Some(signed.to_i128())
}

/// `sinh(x)` / `cosh(x)` magnitude `(e^|x| ∓ e^-|x|)/2` at working scale
/// `w`, computed in the wide [`WNarrow`] work integer. Returns the
/// non-negative `sinh(|x|)` / `cosh(|x|)`; the odd-function sign is
/// reapplied by the caller via [`narrow_round_mag`].
#[inline]
fn hyper_pos_wide_narrow(av_w: WNarrow, w: u32, is_cosh: bool) -> WNarrow {
    use crate::algos::exp::exp_generic;
    let ex = exp_generic::exp_fixed::<WNarrow>(av_w, w);
    let one_w = crate::consts::pow10::dispatch::<WNarrow>(w);
    // `ex = e^|x|·10^w`. The reciprocal at the same scale is `e^-|x|·10^w
    // = 10^(2w) / ex`. For the integer-regime |x| this is a tiny positive
    // value (≪ 1 ULP-of-storage), formed in the wide integer to avoid the
    // `Fixed` overflow.
    let (enx, _r) = (one_w * one_w).div_rem(ex);
    let two = WNarrow::from_i128(2);
    if is_cosh {
        (ex + enx).div_rem(two).0
    } else {
        (ex - enx).div_rem(two).0
    }
}

/// Narrow integer-regime `sinh(x)` via the wide [`WNarrow`] work integer.
/// Routed from [`crate::algos::trig::trig_series_2limb::sinh_with_raw`]
/// when the result exceeds the 256-bit `Fixed`'s headroom. `sinh` is odd.
pub(crate) fn sinh_wide_narrow_raw(
    raw: i128,
    scale: u32,
    working_digits: u32,
    mode: RoundingMode,
) -> i128 {
    let w = scale + working_digits;
    let neg = raw < 0;
    let av = WNarrow::from_i128(raw.unsigned_abs() as i128) * crate::consts::pow10::dispatch::<WNarrow>(working_digits);
    let sh = hyper_pos_wide_narrow(av, w, false);
    narrow_round_mag(sh, working_digits, mode, true, neg).unwrap_or_else(|| {
        crate::support::diagnostics::overflow_panic_with_scale("D38::sinh", scale)
    })
}

/// Narrow integer-regime `cosh(x)` via the wide [`WNarrow`] work integer.
/// Routed from [`crate::algos::trig::trig_series_2limb::cosh_with_raw`]
/// when the result exceeds the 256-bit `Fixed`'s headroom. `cosh` is even
/// (always non-negative).
pub(crate) fn cosh_wide_narrow_raw(
    raw: i128,
    scale: u32,
    working_digits: u32,
    mode: RoundingMode,
) -> i128 {
    let w = scale + working_digits;
    let av = WNarrow::from_i128(raw.unsigned_abs() as i128) * crate::consts::pow10::dispatch::<WNarrow>(working_digits);
    let ch = hyper_pos_wide_narrow(av, w, true);
    narrow_round_mag(ch, working_digits, mode, true, false).unwrap_or_else(|| {
        crate::support::diagnostics::overflow_panic_with_scale("D38::cosh", scale)
    })
}

/// Whether the narrow `sinh`/`cosh` result for `raw` at `scale` exceeds
/// the 256-bit `Fixed`'s headroom and must route through [`WNarrow`].
/// `sinh(x)`/`cosh(x) ≈ e^|x|/2`, so the result's integer-digit count
/// matches `e^|x|`'s — reuse the exp gate on `|raw|`.
#[inline]
pub(crate) fn hyper_needs_wide_narrow(raw: i128, scale: u32, w: u32) -> bool {
    !narrow_fixed_fits(raw.unsigned_abs() as i128, scale, w)
}

/// `e^x` with caller-chosen `working_digits` above the storage scale.
///
/// Returns `None` when the correctly-rounded result does not fit the
/// `i128` storage — the single out-of-range detection point; the policy
/// dispatch wrapper turns it into the default form's panic and the
/// `checked_` surface propagates it.
#[inline]
#[must_use]
pub(crate) fn exp_with(
    raw: Int<2>,
    scale: u32,
    working_digits: u32,
    mode: RoundingMode,
) -> Option<Int<2>> {
    exp_with_raw(raw.as_i128(), scale, working_digits, mode).map(Int::<2>::from_i128)
}

/// `i128` core of [`exp_with`].
#[inline]
fn exp_with_raw(raw: i128, scale: u32, working_digits: u32, mode: RoundingMode) -> Option<i128> {
    if raw == 0 {
        return Some(10_i128.pow(scale)); // ONE for this scale
    }
    let w = scale + working_digits;
    // The wider `WNarrow` work integer is needed for the cells the fast
    // 256-bit `Fixed` path cannot round correctly:
    //  1. integer-regime — `e^x` carries so many integer digits the `Fixed`
    //     keeps too few guard digits (`!narrow_fixed_fits`); and
    //  2. ALL directed modes — the fast path's flat-`w` rounding lacks the
    //     never-exact treatment a directed mode needs for the sub-resolution
    //     transcendental residual (a near-1 `e^(tiny)` or a sub-resolution
    //     `e^(negative)` must round up under Ceiling, which the fast path
    //     cannot resolve). Directed exp is not the common/benched cell, so
    //     keeping it on the wide path costs nothing on the hot path.
    // Every other (NEAREST-mode, non-integer-regime) cell — the COMMON
    // narrow exp — stays on the fast path.
    if !narrow_fixed_fits(raw, scale, w) || !crate::support::rounding::is_nearest_mode(mode) {
        return exp_wide_narrow_raw(raw, scale, working_digits, mode);
    }
    let negative_input = raw < 0;
    let v_w = Fixed::from_u128_mag(raw.unsigned_abs(), false).mul_u128(10u128.pow(working_digits));
    let v_w = if negative_input { v_w.neg() } else { v_w };
    exp_fixed(v_w, w).round_to_i128_with(w, scale, mode)
}

/// Strict variant — const-folded `working_digits = STRICT_GUARD`.
/// `None` = result out of storage range (see [`exp_with`]).
#[inline]
#[must_use]
pub(crate) fn exp_strict<const SCALE: u32>(raw: Int<2>, mode: RoundingMode) -> Option<Int<2>> {
    exp_strict_raw::<SCALE>(raw.as_i128(), mode).map(Int::<2>::from_i128)
}

/// `i128` core of [`exp_strict`].
#[inline]
fn exp_strict_raw<const SCALE: u32>(raw: i128, mode: RoundingMode) -> Option<i128> {
    if raw == 0 {
        return Some(10_i128.pow(SCALE));
    }
    let w = SCALE + STRICT_GUARD;
    // See [`exp_with_raw`]: the integer-regime cells and ALL directed modes
    // route through the wider `WNarrow` work integer; every other
    // NEAREST-mode common cell stays on the fast `Fixed` path. Both
    // terminals are near-tie protected (clear-of-tie single shot, Ziv
    // walker behind it).
    if !narrow_fixed_fits(raw, SCALE, w) || !crate::support::rounding::is_nearest_mode(mode) {
        return exp_wide_narrow_strict_raw(raw, SCALE, mode);
    }
    let negative_input = raw < 0;
    let v_w = Fixed::from_u128_mag(raw.unsigned_abs(), false).mul_u128(10u128.pow(STRICT_GUARD));
    let v_w = if negative_input { v_w.neg() } else { v_w };
    let v = exp_fixed(v_w, w);
    match v.round_to_i128_clear_of_tie(w, SCALE, mode) {
        Some(r) => r,
        None => narrow_ziv::walk_checked_never_exact(
            v.round_to_i128_with(w, SCALE, mode),
            STRICT_GUARD,
            SCALE,
            mode,
            |g| exp_ziv(raw, SCALE, g),
        ),
    }
}

// ── exp2 kernel (D38, Fixed fallback) ─────────────────────────────

/// Exact-power pin for the D38 `exp2`. When `raw` is an exact integer
/// `k`, `exp2(k) = 2^k` is an exact algebraic point — a *dyadic
/// rational*, never a transcendental residual. Returns the
/// **correctly-rounded** storage value of `2^k` under `mode`, computed
/// from exact integer arithmetic, so the `exp(k·ln 2)` series round-off
/// can never bump it across a tie or grid line. [`ExactPin::Defer`] only
/// when `raw` is not an exact integer (the genuinely transcendental case
/// the series kernel handles); a positive `2^k` past the decimal range is
/// [`ExactPin::OutOfRange`] — the exact ladder's overflow is PROOF,
/// detected once here: the kernel returns `None` for it (the policy
/// dispatch wrapper applies the default form's contractual panic, the
/// `checked_` surface propagates) rather than deferring to the
/// `exp(k·ln 2)` composition, whose to-nearest approximation can
/// directed-round (Floor / Trunc) back INSIDE the range at an out-by-one
/// boundary (`exp2(127)` at scale 0 is `i128::MAX + 1`). See the
/// wide-tier `exp2_exact_pow`.
#[inline]
fn exp2_exact_pin(raw: i128, scale: u32, mode: RoundingMode) -> ExactPin<i128> {
    let one_s = match 10i128.checked_pow(scale) {
        Some(v) => v,
        None => return ExactPin::Defer,
    };
    if raw % one_s != 0 {
        return ExactPin::Defer;
    }
    let k = raw / one_s;
    if k == 0 {
        return ExactPin::Value(one_s);
    }
    let kk = k.unsigned_abs();
    if k > 0 {
        // 2^k · 10^scale — exact integer when representable; the ladder's
        // overflow is the out-of-range proof.
        let mut v: i128 = one_s;
        for _ in 0..kk {
            v = match v.checked_mul(2) {
                Some(d) => d,
                None => return ExactPin::OutOfRange,
            };
        }
        ExactPin::Value(v)
    } else if kk <= scale as u128 {
        // 2^-|k| = 5^|k| · 10^(scale − |k|) — exact, no rounding. These
        // checked steps cannot fail for any real scale (the value is
        // `<= 10^scale`); kept checked-and-deferring for totality.
        let mut v = match 10i128.checked_pow(scale - kk as u32) {
            Some(d) => d,
            None => return ExactPin::Defer,
        };
        for _ in 0..kk {
            v = match v.checked_mul(5) {
                Some(d) => d,
                None => return ExactPin::Defer,
            };
        }
        ExactPin::Value(v)
    } else {
        // |k| > scale: `2^k · 10^scale = 5^scale / 2^(|k|−scale)` is a
        // proper dyadic fraction in `(0, 1)` storage units. Round it
        // exactly under `mode` (`exp2(-1) = 0.5` is the half-to-even tie
        // → 0; `exp2(-146)` is a sub-resolution positive → Ceiling → 1).
        let num = match 5u128.checked_pow(scale) {
            Some(d) => d, // 5^38 < 2^89, fits u128
            None => return ExactPin::Defer,
        };
        let p = kk as u32 - scale; // shift amount, ≥ 1
        ExactPin::Value(round_pow2_fraction(num, p, mode))
    }
}

/// Correctly-rounded storage value of the dyadic fraction `num / 2^p`
/// (`num > 0`, `p ≥ 1`) — a strictly-positive result in `[0, num/2]`.
///
/// `q = num >> p`, remainder `r = num & (2^p − 1)`; the half-way divisor
/// is `2^p`, so the tie compares `2·r` against `2^p`. When `p ≥ 128`
/// the quotient is `0` and the whole of `num` is the (sub-half) residual
/// — a tiny positive value that only `Ceiling` rounds up.
#[inline]
fn round_pow2_fraction(num: u128, p: u32, mode: RoundingMode) -> i128 {
    if p >= 128 {
        // num < 2^128 ≤ 2^p, so q = 0 and r = num > 0 but < 2^(p-1)
        // (half), i.e. a sub-resolution positive residual.
        let bump = crate::support::rounding::should_bump(
            mode,
            ::core::cmp::Ordering::Less, // r strictly below half
            false,                       // q == 0 is even
            true,                        // result positive
        );
        return i128::from(bump);
    }
    let q = (num >> p) as i128;
    let r = num & ((1u128 << p) - 1);
    if r == 0 {
        return q;
    }
    let half = 1u128 << (p - 1);
    let cmp_r = r.cmp(&half);
    let q_is_odd = (q & 1) == 1;
    let bump = crate::support::rounding::should_bump(mode, cmp_r, q_is_odd, true);
    q + i128::from(bump)
}

/// `2^x = exp(x · ln 2)` on the `Fixed` intermediate. Used by
/// `policy::exp::exp2_dispatch` when the D57 borrow path is not available.
/// Returns `None` when the correctly-rounded result does not fit the
/// `i128` storage (the policy wrapper panics / the `checked_` surface
/// propagates).
#[inline]
#[must_use]
pub(crate) fn exp2_with(
    raw: Int<2>,
    scale: u32,
    working_digits: u32,
    mode: RoundingMode,
) -> Option<Int<2>> {
    exp2_with_raw(raw.as_i128(), scale, working_digits, mode).map(Int::<2>::from_i128)
}

/// `i128` core of [`exp2_with`].
#[inline]
fn exp2_with_raw(raw: i128, scale: u32, working_digits: u32, mode: RoundingMode) -> Option<i128> {
    if raw == 0 {
        return Some(10_i128.pow(scale));
    }
    // Exact-power pin: `exp2(integer k) = 2^k` is an exact algebraic
    // point (integer for `k >= 0`, `5^|k|·10^(scale−|k|)` for `k < 0`).
    // Emitting it directly stops the `exp(k·ln 2)` round-off from
    // bumping a directed mode by one LSB at the exact power. A proven
    // out-of-range positive power is the kernel's `None` (the policy
    // dispatch wrapper applies the default form's panic; the `checked_`
    // surface propagates) — never deferred to the composition.
    match exp2_exact_pin(raw, scale, mode) {
        ExactPin::Value(pinned) => return Some(pinned),
        ExactPin::OutOfRange => return None,
        ExactPin::Defer => {}
    }
    // Integer-regime gate (mirrors `exp_with_raw`): `2^x = e^(x·ln 2)` whose
    // result carries `k_lift` integer digits leaves the flat-`w` 256-bit
    // `Fixed` too few fractional guard digits to round correctly (e.g. 2^93
    // has 28 integer digits — the exp2_d38_s9 mis-round). Route those cells to
    // the wider work integer, which lifts the working scale by `k_lift` exactly
    // as the wide-tier `exp2_guarded` does. Small results stay on the fast path.
    let abs_raw = raw.unsigned_abs();
    if exp2_result_int_digits(abs_raw, scale) > FAST_MAX_RESULT_DIGITS {
        return exp2_wide_narrow_raw(raw, scale, working_digits, mode);
    }
    let w = scale + working_digits;
    let negative_input = raw < 0;
    let v_w = Fixed::from_u128_mag(raw.unsigned_abs(), false).mul_u128(10u128.pow(working_digits));
    let v_w = if negative_input { v_w.neg() } else { v_w };
    let arg_w = v_w.mul(wide_ln2(w), w);
    exp_fixed(arg_w, w).round_to_i128_with(w, scale, mode)
}

/// Integer-digit count of `2^x` for the non-negative storage magnitude
/// `abs_raw` at `scale` (`x = abs_raw / 10^scale`). `int_digits(2^x) =
/// floor(x · log10 2) + 1`; for `x == 0` it is one digit. `log10 2 ≈
/// 301030 / 1_000_000`, rounded UP (`div_ceil`) so the count is never
/// under-stated — the safe direction for the [`FAST_MAX_RESULT_DIGITS`]
/// gate (errs toward the wide path). Mirrors [`exp_result_int_digits`]'s
/// overflow-free `q`/`r` split so no intermediate exceeds `u128`.
#[inline]
fn exp2_result_int_digits(abs_raw: u128, scale: u32) -> u32 {
    let one_s = match 10u128.checked_pow(scale) {
        Some(p) => p,
        None => return 1,
    };
    let q = abs_raw / one_s; // integer part of |x|
    let r = abs_raw % one_s; // fractional remainder, r < 10^scale
    let q_capped = q.min(180); // past here the count far exceeds the band
    let r7 = if scale <= 7 {
        r * 10u128.pow(7 - scale)
    } else {
        r / 10u128.pow(scale - 7)
    };
    let x_e7 = q_capped * 10_000_000 + r7; // |x| · 10^7 (q capped)
    let num = x_e7 * 301_030; // / 10^7 / 10^6 = / 10^13 gives |x|·log10 2
    (num.div_ceil(10u128.pow(13)).min(u32::MAX as u128 - 1) as u32) + 1
}

/// LOWER bound on the integer-digit count of `2^x` for the non-negative
/// storage magnitude `abs_raw` at `scale` — the floor counterpart of the
/// (deliberately over-stating) [`exp2_result_int_digits`]. Every rounding
/// here errs DOWN: the fraction `r7` is floored, `301_029/10^6` under-
/// approximates `log10 2`, and the final division is floored — so the
/// returned count never exceeds the true `⌊x·log10 2⌋ + 1`. That is the
/// safe direction for the [`exp2_wide_narrow_raw`] overflow gate: a cell
/// it fires on is PROVABLY out of range, never a representable one.
///
/// The `q` cap matches the sibling's: at `q ≥ 180` the count is already
/// ≈ 55 — past the 40-digit `i128` ceiling at EVERY scale — so capping
/// keeps `x_e7 · 301_029` inside `u128` without weakening the gate.
#[inline]
fn exp2_result_int_digits_floor(abs_raw: u128, scale: u32) -> u32 {
    let one_s = match 10u128.checked_pow(scale) {
        Some(p) => p,
        None => return 1,
    };
    let q = abs_raw / one_s; // integer part of |x|
    let r = abs_raw % one_s; // fractional remainder, r < 10^scale
    let q_capped = q.min(180);
    let r7 = if scale <= 7 {
        r * 10u128.pow(7 - scale)
    } else {
        r / 10u128.pow(scale - 7)
    };
    let x_e7 = q_capped * 10_000_000 + r7; // ≤ |x| · 10^7
    let num = x_e7 * 301_029; // / 10^13 under-states |x|·log10 2
    ((num / 10u128.pow(13)).min(u32::MAX as u128 - 1) as u32) + 1
}

/// Integer-regime / large-result `2^x` for the narrow tier, evaluated in the
/// wider [`WNarrow`] work integer via the width-generic
/// [`exp_generic::exp_fixed`], then narrowed with correct rounding. The
/// working scale is lifted by the result's integer-digit count `k_lift` so the
/// argument `x·ln 2` AND the `e^(x·ln 2)` evaluation keep enough fractional
/// guard past the many integer digits — the narrow analogue of the wide-tier
/// `exp2_guarded`'s `GUARD + k_lift`. [`narrow_round_mag`]'s `never_exact`
/// gives the directed modes the sub-resolution residual a transcendental needs.
fn exp2_wide_narrow_raw(
    raw: i128,
    scale: u32,
    working_digits: u32,
    mode: RoundingMode,
) -> Option<i128> {
    let (ex, guard) = exp2_wide_narrow_eval(raw, scale, working_digits)?;
    narrow_round_mag(ex, guard, mode, true, false)
}

/// The [`exp2_wide_narrow_raw`] evaluation: the `(value · 10^(scale +
/// guard), guard)` pair before the narrowing terminal, shared by the
/// approx single shot and the strict near-tie protected terminal.
fn exp2_wide_narrow_eval(
    raw: i128,
    scale: u32,
    working_digits: u32,
) -> Option<(WNarrow, u32)> {
    use crate::algos::exp::exp_generic;

    let neg = raw < 0;
    let abs_raw = raw.unsigned_abs();
    // Storage overflow gate — BEFORE any working-scale arithmetic. The
    // `k_lift` lift below grows the working scale `w` with the result's
    // integer-digit count, so a deep-overflow argument inflates every
    // dividend downstream (`x·ln 2`, the kernel's own `k` range-reduction
    // divide) far past what the build's divide scratch provisions for
    // in-range work — tripping an INTERNAL kernel assertion instead of
    // the contractual out-of-range signal. Analytic bound, exact for
    // every scale: the result `2^x ≥ 10^(d−1)` for `d = int_digits(2^x)`,
    // so its storage value is `≥ 10^(d−1+scale)`; `i128` holds values
    // `< 1.8·10^38 < 10^39`, hence `d + scale ≥ 40` PROVES the result
    // cannot be stored — return the kernel's `None` (the policy dispatch
    // wrapper applies the default form's contractual panic; the
    // `checked_` surface propagates it). `d` is the floor lower bound
    // (never over-stated), so no representable cell can fire; cells
    // between the true edge and this bound still flow to the kernel,
    // whose post-narrowing fit check ([`narrow_round_mag`] → `None`)
    // signals the SAME `None` — and for those cells `d + scale ≤ 39`
    // bounds the lift (`w ≤ scale + working_digits + 41 − scale`),
    // keeping every dividend inside the scratch at every scale.
    if raw > 0 && exp2_result_int_digits_floor(abs_raw, scale).saturating_add(scale) >= 40 {
        return None;
    }
    // The lift exists to keep guard digits ABOVE the result's integer
    // digits. A negative argument has none (`2^x < 1`), so its lift is 0 —
    // lifting by `int_digits(2^|x|)` would re-inflate `w` without bound for
    // a deep-underflow argument (the mirror of the overflow band above),
    // with zero precision benefit: the `2^k` reassembly shifts DOWN.
    let k_lift = if neg { 0 } else { exp2_result_int_digits(abs_raw, scale) };
    let guard = working_digits + k_lift;
    let w = scale + guard;
    // x · ln 2 at scale `w`, formed in the wide work integer:
    //   x_w = x·10^w = abs_raw·10^guard ;  ln2_w = ln 2·10^w ;
    //   (x_w · ln2_w) / 10^w = x·ln 2 · 10^w.
    let x_w =
        WNarrow::from_i128(abs_raw as i128) * crate::consts::pow10::dispatch::<WNarrow>(guard);
    let ln2_w = crate::consts::ln2_by_working_scale::<WNarrow>(w, RoundingMode::HalfToEven);
    let prod = x_w * ln2_w;
    let arg_mag = if w <= 38 {
        crate::algos::support::mg_divide::div_wide_pow10::<WNarrow>(prod, w, RoundingMode::HalfToEven)
    } else {
        crate::algos::support::mg_divide::div_wide_pow10_chain::<WNarrow>(
            prod,
            w,
            RoundingMode::HalfToEven,
        )
    };
    let arg = if neg { -arg_mag } else { arg_mag };
    // `try_exp_fixed`: see [`exp_wide_narrow_raw`] — an out-of-range
    // verdict from the generic kernel propagates as this kernel's `None`.
    let ex = exp_generic::try_exp_fixed::<WNarrow>(arg, w)?;
    Some((ex, guard))
}

/// One `WZiv` `exp(x·ln 2)` probe at working scale `scale + g`. No
/// `k_lift` is applied at the probe — the walker's escalation cap
/// already subtracts the result's integer-digit count, so the probe
/// keeps its guard digits without an explicit lift.
fn exp2_ziv(raw: i128, scale: u32, g: u32) -> WZiv {
    use crate::algos::exp::exp_generic as eg;
    let w = scale + g;
    let arg = eg::mul::<WZiv>(narrow_ziv::lift(raw, g), narrow_ziv::ln2_w(w), w);
    eg::exp_fixed::<WZiv>(arg, w)
}

/// `None` = result out of storage range (see [`exp2_with`]). The strict
/// terminal is near-tie protected on both branches (the exact-power pin
/// already removes every rational `2^x`; `2^x` is irrational for every
/// other on-grid `x`, so the never-exact walker polarity is sound).
#[inline]
#[must_use]
pub(crate) fn exp2_strict<const SCALE: u32>(raw: Int<2>, mode: RoundingMode) -> Option<Int<2>> {
    exp2_strict_raw(raw.as_i128(), SCALE, mode).map(Int::<2>::from_i128)
}

/// `i128` core of [`exp2_strict`].
fn exp2_strict_raw(raw: i128, scale: u32, mode: RoundingMode) -> Option<i128> {
    if raw == 0 {
        return Some(10_i128.pow(scale));
    }
    match exp2_exact_pin(raw, scale, mode) {
        ExactPin::Value(pinned) => return Some(pinned),
        ExactPin::OutOfRange => return None,
        ExactPin::Defer => {}
    }
    let abs_raw = raw.unsigned_abs();
    if exp2_result_int_digits(abs_raw, scale) > FAST_MAX_RESULT_DIGITS {
        // Integer-regime: the lifted wide single shot, near-tie protected.
        let (ex, guard) = exp2_wide_narrow_eval(raw, scale, STRICT_GUARD)?;
        let base = narrow_round_mag(ex, guard, mode, true, false);
        if wnarrow_residual_clear(ex, guard, mode) {
            return base;
        }
        return narrow_ziv::walk_checked_never_exact(base, STRICT_GUARD, scale, mode, |g| {
            exp2_ziv(raw, scale, g)
        });
    }
    let w = scale + STRICT_GUARD;
    let negative_input = raw < 0;
    let v_w = Fixed::from_u128_mag(abs_raw, false).mul_u128(10u128.pow(STRICT_GUARD));
    let v_w = if negative_input { v_w.neg() } else { v_w };
    let arg_w = v_w.mul(wide_ln2(w), w);
    let v = exp_fixed(arg_w, w);
    match v.round_to_i128_clear_of_tie(w, scale, mode) {
        Some(r) => r,
        None => narrow_ziv::walk_checked_never_exact(
            v.round_to_i128_with(w, scale, mode),
            STRICT_GUARD,
            scale,
            mode,
            |g| exp2_ziv(raw, scale, g),
        ),
    }
}

// Deep-underflow directed-rounding guard (golden exp.golden:4748):
// `exp(-62.17530480440519)` ≈ 9.945e-28 (mpmath/flint-validated) is a
// strictly positive SUB-RESOLUTION result at scales >= 14, so the
// correctly-rounded storage value is 1 ULP under Ceiling and 0 under every
// other mode. The directed modes escalate through the never-exact Ziv
// walker (the residual sits inside the near-tie band at every probe
// depth); the walker's cap-clamped deepest probe runs the generic exp
// kernel past its internal squaring peak (`k = -90`, `w_ext = 231` in
// `Int<24>` — the 2·w_ext-digit peak tops the sign bit), handing back a
// NEGATIVE probe — which would invert
// Ceiling to 0 and Floor to -1 if trusted. The walker returns the clean base
// narrowing at an unresolved cap (`wide_trig_core::
// round_to_storage_directed_impl_g`); this pins the whole band's verdict
// at the kernel layer for every mode.
#[cfg(test)]
mod deep_underflow_directed {
    use super::*;

    const ALL_MODES: [RoundingMode; 6] = [
        RoundingMode::HalfToEven,
        RoundingMode::HalfAwayFromZero,
        RoundingMode::HalfTowardZero,
        RoundingMode::Ceiling,
        RoundingMode::Floor,
        RoundingMode::Trunc,
    ];

    /// `-62.17530480440519` lifted onto the storage grid at `scale`
    /// (exact for every `scale >= 14`).
    fn raw_at(scale: u32) -> i128 {
        -6_217_530_480_440_519 * 10_i128.pow(scale - 14)
    }

    #[test]
    fn exp_deep_underflow_rounds_correctly_all_modes() {
        // const-generic SCALE forces a literal per scale; same band, same
        // predicate (result magnitude strictly below the storage LSB).
        let cells: [(u32, fn(RoundingMode) -> Option<i128>); 3] = [
            (17, |m| exp_strict_raw::<17>(raw_at(17), m)),
            (18, |m| exp_strict_raw::<18>(raw_at(18), m)),
            (19, |m| exp_strict_raw::<19>(raw_at(19), m)),
        ];
        for (scale, run) in cells {
            for mode in ALL_MODES {
                let want = if mode == RoundingMode::Ceiling { 1 } else { 0 };
                assert_eq!(
                    run(mode),
                    Some(want),
                    "exp(-62.17530480440519) scale={scale} mode={mode:?}"
                );
            }
        }
    }
}

// ── Fast-path validity wall ────────────────────────────────────────
// The narrow exp gate (`exp_with_raw` / `exp_strict_raw`) routes a cell
// to the fast 256-bit `Fixed` path only where it is bit-identical to the
// trusted wider-`WNarrow` reference (the path the 8 mpmath golden cells
// validate). This test ASSERTS that validity wall across the full D38
// scale × |x| × mode space: for every cell the production gate keeps on
// the fast path, fast == wide. It is the consistency-wall guard that lets
// the gate stay tight (recover the common-cell speed) without a
// correctness regression — the same "bit-identical to the reference"
// pattern the `exp_series_tang_ab` Tang validity wall uses.
#[cfg(test)]
mod fast_path_validity {
    use super::*;

    /// FAST path with NO gate (pure `Fixed`), catching the overflow panic.
    fn fast_exp_raw_ungated(raw: i128, scale: u32, mode: RoundingMode) -> Option<i128> {
        if raw == 0 {
            return Some(10_i128.pow(scale));
        }
        let w = scale + STRICT_GUARD;
        let negative_input = raw < 0;
        let v_w =
            Fixed::from_u128_mag(raw.unsigned_abs(), false).mul_u128(10u128.pow(STRICT_GUARD));
        let v_w = if negative_input { v_w.neg() } else { v_w };
        std::panic::catch_unwind(|| exp_fixed(v_w, w).round_to_i128_with(w, scale, mode))
            .unwrap_or(None)
    }

    const MODES: [RoundingMode; 6] = [
        RoundingMode::HalfToEven,
        RoundingMode::HalfAwayFromZero,
        RoundingMode::HalfTowardZero,
        RoundingMode::Ceiling,
        RoundingMode::Floor,
        RoundingMode::Trunc,
    ];

    /// Mirror the production gate exactly: `true` ⇒ this cell stays on the
    /// fast path (so fast MUST equal wide). Directed modes always route wide.
    fn gate_keeps_fast(raw: i128, scale: u32, mode: RoundingMode) -> bool {
        let w = scale + STRICT_GUARD;
        narrow_fixed_fits(raw, scale, w) && crate::support::rounding::is_nearest_mode(mode)
    }

    // For EVERY D38 cell the production gate routes to the fast path,
    // assert it is bit-identical to the wide reference. A fine 0.1-step
    // |x| grid over the whole representable range, both signs, all six
    // modes, scale 0..=38 — so an unbenched scale cannot silently get a
    // wrong fast result.
    #[test]
    fn fast_path_bit_identical_to_wide_d38() {
        std::panic::set_hook(Box::new(|_| {}));
        let mut checked = 0u64;
        for scale in 0u32..=38 {
            let one_s = 10f64.powi(scale as i32);
            let mut x10 = 1u64;
            while x10 <= 1000 {
                let x = x10 as f64 / 10.0;
                for sign in [1i128, -1] {
                    let raw_f = sign as f64 * x * one_s;
                    if raw_f.abs() >= (i128::MAX as f64) {
                        x10 += 1;
                        continue;
                    }
                    let raw = raw_f as i128;
                    if raw == 0 {
                        continue;
                    }
                    for mode in MODES {
                        if !gate_keeps_fast(raw, scale, mode) {
                            continue; // routed to wide — not a fast-path claim
                        }
                        let wide = match std::panic::catch_unwind(|| {
                            exp_wide_narrow_raw(raw, scale, STRICT_GUARD, mode)
                        }) {
                            Ok(Some(v)) => v,
                            // Wide reference itself overflows i128 — the
                            // narrow tier cannot represent the result; both
                            // paths report out of range, not a fast-vs-wide
                            // question.
                            Ok(None) | Err(_) => continue,
                        };
                        let fast = fast_exp_raw_ungated(raw, scale, mode);
                        assert_eq!(
                            fast,
                            Some(wide),
                            "fast != wide at scale={scale} raw={raw} mode={mode:?} (gate kept fast)"
                        );
                        checked += 1;
                    }
                }
                x10 += 1;
            }
        }
        assert!(checked > 100_000, "too few cells checked: {checked}");
    }

    // The genuine wide-only cells (integer-regime + every directed mode)
    // must actually be routed AWAY from the fast path — the gate's other
    // half. Spot-check the 8-golden-cell shapes plus a directed cell.
    #[test]
    fn wide_only_cells_are_routed_wide() {
        use RoundingMode::*;
        // integer-regime: routed wide for ALL modes (incl. nearest)
        for &raw in &[66i128, 85, 100] {
            assert!(
                !gate_keeps_fast(raw, 0, HalfToEven),
                "exp({raw}) s0 should route WIDE (integer regime)"
            );
        }
        // ALL directed modes route wide (the fast path lacks the never-exact
        // directed rounding the transcendental residual needs) — including a
        // deep-fractional near-1 result like exp(-1e-37) under Ceiling, the
        // golden d38 exp s37 cell.
        for mode in [Ceiling, Floor, Trunc] {
            assert!(
                !gate_keeps_fast(-1, 37, mode),
                "exp(-1e-37) s37 {mode:?} should route WIDE (directed)"
            );
            assert!(
                !gate_keeps_fast(2 * 10i128.pow(0), 0, mode),
                "exp(2) s0 {mode:?} should route WIDE (directed)"
            );
        }
        // ...but a normal nearest-mode common cell stays FAST.
        assert!(
            gate_keeps_fast(15 * 10i128.pow(18), 19, HalfToEven),
            "exp(1.5) D38 s19 HalfToEven should stay FAST (common cell)"
        );
        assert!(
            gate_keeps_fast(-1, 37, HalfToEven),
            "exp(-1e-37) s37 HalfToEven should stay FAST"
        );
    }

    // Integer-regime exp2 guard (the golden exp2_d38_s9 defect): 2^x
    // whose result has many integer digits (2^93 ≈ 10^28) leaves the flat-`w`
    // 256-bit `Fixed` too few fractional guard digits, mis-rounding the
    // last ULPs. The gate routes such cells to `exp2_wide_narrow_raw`.
    // Pin the exposing cell (class "Low": every mode → floor, except Ceiling
    // → floor+1) plus a small integer-regime sweep checking the rounding
    // order stays consistent (floor ≤ nearest ≤ ceil, ceil − floor ≤ 1).
    // Guards the fix in the fast default build, parallel to the atanh near-1
    // test; the mpmath golden floor is independently confirmed by Arb.
    #[test]
    fn exp2_integer_regime_matches_golden_floor() {
        const S9: u32 = 9;
        let raw = 93_013_986_656_i128; // 93.013986656 at scale 9
        let gfloor: i128 = 9_999_999_994_134_964_658_924_521_484_307_802_708;
        for &mode in &MODES {
            let got = exp2_with_raw(raw, S9, STRICT_GUARD, mode);
            let want = if matches!(mode, RoundingMode::Ceiling) {
                gfloor + 1
            } else {
                gfloor
            };
            assert_eq!(got, Some(want), "exp2(93.013986656) s9 mode={mode:?}");
        }
        // Integer-regime inputs whose result still fits i128 at scale 9:
        // 2^x·10^9 < i128::MAX ≈ 1.7·10^38 ⇒ x ≲ 97. (2^100·10^9 ≈ 1.3·10^39
        // overflows and correctly panics, so keep the sweep below that.)
        for &r in &[50_000_000_000_i128, 70_000_000_000, 90_000_000_000] {
            let he = exp2_with_raw(r, S9, STRICT_GUARD, RoundingMode::HalfToEven).expect("in range");
            let fl = exp2_with_raw(r, S9, STRICT_GUARD, RoundingMode::Floor).expect("in range");
            let ce = exp2_with_raw(r, S9, STRICT_GUARD, RoundingMode::Ceiling).expect("in range");
            assert!(fl <= he && he <= ce, "exp2 rounding order violated at raw={r}");
            assert!(ce - fl <= 1, "exp2 floor/ceil differ by >1 at raw={r}");
        }
    }
}