stator_jse 0.1.0

Stator JavaScript engine core — parser, bytecode compiler, Maglev JIT, interpreter, GC
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
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
//! ECMAScript §21.3 `Math` built-in static methods.
//!
//! Every function in this module is a direct Rust equivalent of a static
//! method on the JavaScript `Math` object.  They operate on plain `f64`
//! values and have no side-effects beyond the values passed in.
//!
//! # Naming convention
//!
//! Each function is prefixed `math_` to avoid ambiguity with similarly-named
//! standard-library items (e.g. `math_abs` vs `f64::abs`).
//!
//! # References
//!
//! * ECMAScript 2025 Language Specification §21.3 — *The Math Object*

// ── Constants (ECMAScript §21.3.1) ────────────────────────────────────────────

/// `Math.E` — Euler's number.
pub const MATH_E: f64 = std::f64::consts::E;

/// `Math.LN2` — natural logarithm of 2.
pub const MATH_LN2: f64 = std::f64::consts::LN_2;

/// `Math.LN10` — natural logarithm of 10.
pub const MATH_LN10: f64 = std::f64::consts::LN_10;

/// `Math.LOG2E` — base-2 logarithm of E.
pub const MATH_LOG2E: f64 = std::f64::consts::LOG2_E;

/// `Math.LOG10E` — base-10 logarithm of E.
pub const MATH_LOG10E: f64 = std::f64::consts::LOG10_E;

/// `Math.PI` — the ratio of a circle's circumference to its diameter.
pub const MATH_PI: f64 = std::f64::consts::PI;

/// `Math.SQRT1_2` — square root of 1/2.
pub const MATH_SQRT1_2: f64 = std::f64::consts::FRAC_1_SQRT_2;

/// `Math.SQRT2` — square root of 2.
pub const MATH_SQRT2: f64 = std::f64::consts::SQRT_2;

// ── Math.abs ──────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.1 `Math.abs(x)`.
///
/// Returns the absolute value of `x`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_abs;
///
/// assert_eq!(math_abs(-5.0), 5.0);
/// assert_eq!(math_abs(3.0), 3.0);
/// assert!(math_abs(f64::NAN).is_nan());
/// ```
pub fn math_abs(x: f64) -> f64 {
    x.abs()
}

// ── Math.ceil ─────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.6 `Math.ceil(x)`.
///
/// Returns the smallest integer greater than or equal to `x`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_ceil;
///
/// assert_eq!(math_ceil(1.2), 2.0);
/// assert_eq!(math_ceil(-1.2), -1.0);
/// assert_eq!(math_ceil(2.0), 2.0);
/// ```
pub fn math_ceil(x: f64) -> f64 {
    x.ceil()
}

// ── Math.floor ────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.16 `Math.floor(x)`.
///
/// Returns the largest integer less than or equal to `x`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_floor;
///
/// assert_eq!(math_floor(1.9), 1.0);
/// assert_eq!(math_floor(-1.1), -2.0);
/// assert_eq!(math_floor(2.0), 2.0);
/// ```
pub fn math_floor(x: f64) -> f64 {
    x.floor()
}

// ── Math.round ────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.28 `Math.round(x)`.
///
/// Returns the integer nearest to `x`, rounding half-way cases toward
/// `+Infinity` (i.e. `0.5` rounds to `1`, `-0.5` rounds to `-0`).
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_round;
///
/// assert_eq!(math_round(1.5), 2.0);
/// assert_eq!(math_round(-1.5), -1.0);
/// assert_eq!(math_round(1.4), 1.0);
/// ```
pub fn math_round(x: f64) -> f64 {
    let rounded = (x + 0.5).floor();
    // ECMAScript §21.3.2.28: values in [-0.5, -0] must return -0.
    if rounded == 0.0 && x.is_sign_negative() {
        -0.0_f64
    } else {
        rounded
    }
}

// ── Math.trunc ────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.35 `Math.trunc(x)`.
///
/// Returns the integer part of `x` by removing any fractional digits.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_trunc;
///
/// assert_eq!(math_trunc(1.9), 1.0);
/// assert_eq!(math_trunc(-1.9), -1.0);
/// assert_eq!(math_trunc(0.5), 0.0);
/// ```
pub fn math_trunc(x: f64) -> f64 {
    x.trunc()
}

// ── Math.sign ─────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.29 `Math.sign(x)`.
///
/// Returns `1.0` if `x > 0`, `-1.0` if `x < 0`, `+0.0` if `x` is `+0`,
/// `-0.0` if `x` is `-0`, and `NaN` if `x` is `NaN`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_sign;
///
/// assert_eq!(math_sign(5.0), 1.0);
/// assert_eq!(math_sign(-3.0), -1.0);
/// assert_eq!(math_sign(0.0), 0.0);
/// assert!(math_sign(f64::NAN).is_nan());
/// ```
pub fn math_sign(x: f64) -> f64 {
    if x.is_nan() {
        f64::NAN
    } else if x > 0.0 {
        1.0
    } else if x < 0.0 {
        -1.0
    } else {
        // Preserve the sign of zero.
        x
    }
}

// ── Math.max / Math.min ───────────────────────────────────────────────────────

/// ECMAScript §21.3.2.24 `Math.max(...values)`.
///
/// Returns the largest of the supplied values.  Returns `-Infinity` for an
/// empty slice and `NaN` if any value is `NaN`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_max;
///
/// assert_eq!(math_max(&[1.0, 3.0, 2.0]), 3.0);
/// assert_eq!(math_max(&[]), f64::NEG_INFINITY);
/// assert!(math_max(&[1.0, f64::NAN]).is_nan());
/// ```
pub fn math_max(values: &[f64]) -> f64 {
    let mut result = f64::NEG_INFINITY;
    for &v in values {
        if v.is_nan() {
            return f64::NAN;
        }
        // ECMAScript: +0 is greater than -0.
        if v > result || (v == 0.0 && result == 0.0 && result.is_sign_negative()) {
            result = v;
        }
    }
    result
}

/// ECMAScript §21.3.2.25 `Math.min(...values)`.
///
/// Returns the smallest of the supplied values.  Returns `+Infinity` for an
/// empty slice and `NaN` if any value is `NaN`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_min;
///
/// assert_eq!(math_min(&[1.0, 3.0, 2.0]), 1.0);
/// assert_eq!(math_min(&[]), f64::INFINITY);
/// assert!(math_min(&[1.0, f64::NAN]).is_nan());
/// ```
pub fn math_min(values: &[f64]) -> f64 {
    let mut result = f64::INFINITY;
    for &v in values {
        if v.is_nan() {
            return f64::NAN;
        }
        // ECMAScript: -0 is less than +0.
        if v < result || (v == 0.0 && result == 0.0 && v.is_sign_negative()) {
            result = v;
        }
    }
    result
}

// ── Math.pow ──────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.26 `Math.pow(base, exponent)`.
///
/// Returns `base` raised to the power `exponent`, following ECMAScript
/// semantics which differ from IEEE 754 / Rust's `powf` in a few edge
/// cases.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_pow;
///
/// assert!((math_pow(2.0, 10.0) - 1024.0).abs() < 1e-10);
/// assert_eq!(math_pow(4.0, 0.5), 2.0);
/// assert!(math_pow(-1.0, f64::INFINITY).is_nan());
/// assert!(math_pow(1.0, f64::INFINITY).is_nan());
/// assert!(math_pow(-1.0, f64::NEG_INFINITY).is_nan());
/// ```
pub fn math_pow(base: f64, exponent: f64) -> f64 {
    // ECMAScript §21.3.2.26 step 3.b.iii:
    // If abs(base) = 1 and exponent is +∞ or −∞, return NaN.
    if base.abs() == 1.0 && exponent.is_infinite() {
        return f64::NAN;
    }
    base.powf(exponent)
}

// ── Math.sqrt ─────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.32 `Math.sqrt(x)`.
///
/// Returns the square root of `x`.  Returns `NaN` for negative inputs.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_sqrt;
///
/// assert_eq!(math_sqrt(4.0), 2.0);
/// assert!(math_sqrt(-1.0).is_nan());
/// ```
pub fn math_sqrt(x: f64) -> f64 {
    x.sqrt()
}

// ── Math.cbrt ─────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.5 `Math.cbrt(x)`.
///
/// Returns the cube root of `x`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_cbrt;
///
/// assert_eq!(math_cbrt(27.0), 3.0);
/// assert_eq!(math_cbrt(-8.0), -2.0);
/// ```
pub fn math_cbrt(x: f64) -> f64 {
    x.cbrt()
}

// ── Math.hypot ────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.18 `Math.hypot(...values)`.
///
/// Returns the square root of the sum of squares of the supplied values.
/// Returns `0` for an empty slice and `NaN` if any value is `NaN`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_hypot;
///
/// assert_eq!(math_hypot(&[3.0, 4.0]), 5.0);
/// assert_eq!(math_hypot(&[]), 0.0);
/// ```
pub fn math_hypot(values: &[f64]) -> f64 {
    if values.is_empty() {
        return 0.0;
    }
    let mut max = 0.0;
    let mut saw_nan = false;

    for &value in values {
        let abs = value.abs();
        if abs.is_infinite() {
            return f64::INFINITY;
        }
        if abs.is_nan() {
            saw_nan = true;
            continue;
        }
        if abs > max {
            max = abs;
        }
    }

    if saw_nan {
        return f64::NAN;
    }
    if max == 0.0 {
        return 0.0;
    }

    let scaled_sum = values
        .iter()
        .map(|value| {
            let scaled = value / max;
            scaled * scaled
        })
        .sum::<f64>();
    max * scaled_sum.sqrt()
}

// ── Math.log / Math.log2 / Math.log10 ────────────────────────────────────────

/// ECMAScript §21.3.2.20 `Math.log(x)`.
///
/// Returns the natural logarithm (base-*e*) of `x`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_log;
///
/// assert!((math_log(std::f64::consts::E) - 1.0).abs() < 1e-15);
/// assert!(math_log(-1.0).is_nan());
/// assert_eq!(math_log(0.0), f64::NEG_INFINITY);
/// ```
pub fn math_log(x: f64) -> f64 {
    x.ln()
}

/// ECMAScript §21.3.2.22 `Math.log2(x)`.
///
/// Returns the base-2 logarithm of `x`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_log2;
///
/// assert!((math_log2(8.0) - 3.0).abs() < 1e-10);
/// assert!(math_log2(-1.0).is_nan());
/// ```
pub fn math_log2(x: f64) -> f64 {
    x.log2()
}

/// ECMAScript §21.3.2.21 `Math.log10(x)`.
///
/// Returns the base-10 logarithm of `x`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_log10;
///
/// assert_eq!(math_log10(1000.0), 3.0);
/// assert!(math_log10(-1.0).is_nan());
/// ```
pub fn math_log10(x: f64) -> f64 {
    x.log10()
}

// ── Math.sin / Math.cos / Math.tan ────────────────────────────────────────────

/// ECMAScript §21.3.2.30 `Math.sin(x)`.
///
/// Returns the sine of `x` (in radians).
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_sin;
///
/// assert!((math_sin(0.0) - 0.0).abs() < 1e-15);
/// ```
pub fn math_sin(x: f64) -> f64 {
    x.sin()
}

/// ECMAScript §21.3.2.7 `Math.cos(x)`.
///
/// Returns the cosine of `x` (in radians).
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_cos;
///
/// assert!((math_cos(0.0) - 1.0).abs() < 1e-15);
/// ```
pub fn math_cos(x: f64) -> f64 {
    x.cos()
}

/// ECMAScript §21.3.2.33 `Math.tan(x)`.
///
/// Returns the tangent of `x` (in radians).
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_tan;
///
/// assert!((math_tan(0.0) - 0.0).abs() < 1e-15);
/// ```
pub fn math_tan(x: f64) -> f64 {
    x.tan()
}

// ── Math.asin / Math.acos / Math.atan / Math.atan2 ───────────────────────────

/// ECMAScript §21.3.2.3 `Math.asin(x)`.
///
/// Returns the arcsine of `x` (in radians).
pub fn math_asin(x: f64) -> f64 {
    x.asin()
}

/// ECMAScript §21.3.2.2 `Math.acos(x)`.
///
/// Returns the arccosine of `x` (in radians).
pub fn math_acos(x: f64) -> f64 {
    x.acos()
}

/// ECMAScript §21.3.2.4 `Math.atan(x)`.
///
/// Returns the arctangent of `x` (in radians).
pub fn math_atan(x: f64) -> f64 {
    x.atan()
}

/// ECMAScript §21.3.2.8 `Math.atan2(y, x)`.
///
/// Returns the angle in radians between the positive x-axis and the point
/// `(x, y)`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_atan2;
///
/// assert!((math_atan2(1.0, 1.0) - std::f64::consts::FRAC_PI_4).abs() < 1e-15);
/// ```
pub fn math_atan2(y: f64, x: f64) -> f64 {
    y.atan2(x)
}

// ── Math.random ───────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.27 `Math.random()`.
///
/// Returns a pseudo-random `f64` in `[0, 1)`.
///
/// This implementation uses the [xorshift64] algorithm seeded from the current
/// system time (nanoseconds since UNIX epoch) so that each call sequence
/// produces different values.  It is **not** cryptographically secure.
///
/// [xorshift64]: https://en.wikipedia.org/wiki/Xorshift
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_random;
///
/// let v = math_random();
/// assert!((0.0..1.0).contains(&v));
/// ```
pub fn math_random() -> f64 {
    use std::cell::Cell;

    // Under Miri the OS-level thread-local machinery (`pthread_key_create`) is
    // blocked in isolation mode even for types without a destructor.  Use a
    // `const`-init static with a fixed seed so Miri can run this code without
    // any syscalls.
    #[cfg(miri)]
    thread_local! {
        static STATE: Cell<u64> = const { Cell::new(12_345_678_901_234_567_u64) };
    }
    #[cfg(not(miri))]
    thread_local! {
        static STATE: Cell<u64> = {
            use std::time::{SystemTime, UNIX_EPOCH};
            Cell::new(
                SystemTime::now()
                    .duration_since(UNIX_EPOCH)
                    .map(|d| {
                        d.subsec_nanos() as u64
                            ^ (d.as_secs().wrapping_mul(6_364_136_223_846_793_005))
                    })
                    .unwrap_or(12_345_678_901_234_567)
                    | 1, // ensure non-zero
            )
        };
    }

    STATE.with(|s| {
        let mut x = s.get();
        // xorshift64
        x ^= x << 13;
        x ^= x >> 7;
        x ^= x << 17;
        s.set(x);
        // Map to [0, 1) by taking 53 bits and dividing by 2^53.
        (x >> 11) as f64 / (1u64 << 53) as f64
    })
}

// ── Math.clz32 ────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.9 `Math.clz32(x)`.
///
/// Converts `x` to a 32-bit unsigned integer and returns the number of
/// leading zero bits.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_clz32;
///
/// assert_eq!(math_clz32(1.0), 31);
/// assert_eq!(math_clz32(1000.0), 22);
/// assert_eq!(math_clz32(0.0), 32);
/// ```
pub fn math_clz32(x: f64) -> u32 {
    to_uint32_number(x).leading_zeros()
}

// ── Math.imul ─────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.18 `Math.imul(a, b)`.
///
/// Returns the result of the C-like 32-bit integer multiplication of `a` and
/// `b`.  Both operands are converted to `i32` before multiplication.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_imul;
///
/// assert_eq!(math_imul(3.0, 4.0), 12);
/// assert_eq!(math_imul(-5.0, 3.0), -15);
/// // Overflow wraps around.
/// assert_eq!(math_imul(0xffffffff_u32 as f64, 5.0), -5);
/// ```
pub fn math_imul(a: f64, b: f64) -> i32 {
    to_uint32_number(a).wrapping_mul(to_uint32_number(b)) as i32
}

// ── Math.fround ───────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.17 `Math.fround(x)`.
///
/// Returns the nearest single-precision (`f32`) floating-point representation
/// of `x`, converted back to `f64`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_fround;
///
/// assert_eq!(math_fround(1.337), 1.337_f32 as f64);
/// assert!(math_fround(f64::NAN).is_nan());
/// ```
pub fn math_fround(x: f64) -> f64 {
    (x as f32) as f64
}

fn to_uint32_number(n: f64) -> u32 {
    if n.is_nan() || n.is_infinite() || n == 0.0 {
        return 0;
    }
    n.trunc().rem_euclid(4_294_967_296.0) as u32
}

// ── Math.exp ──────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.14 `Math.exp(x)`.
///
/// Returns *e* raised to the power `x`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_exp;
///
/// assert!((math_exp(0.0) - 1.0).abs() < 1e-15);
/// assert!((math_exp(1.0) - std::f64::consts::E).abs() < 1e-14);
/// assert!(math_exp(f64::NAN).is_nan());
/// ```
pub fn math_exp(x: f64) -> f64 {
    x.exp()
}

// ── Math.expm1 ────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.15 `Math.expm1(x)`.
///
/// Returns *e*^`x` − 1, computed in a way that is accurate even when `x` is
/// close to zero.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_expm1;
///
/// assert!((math_expm1(0.0) - 0.0).abs() < 1e-15);
/// assert!(math_expm1(f64::NAN).is_nan());
/// ```
pub fn math_expm1(x: f64) -> f64 {
    x.exp_m1()
}

// ── Math.log1p ────────────────────────────────────────────────────────────────

/// ECMAScript §21.3.2.23 `Math.log1p(x)`.
///
/// Returns the natural logarithm of `1 + x`, computed in a way that is
/// accurate even when `x` is close to zero.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_log1p;
///
/// assert!((math_log1p(0.0) - 0.0).abs() < 1e-15);
/// assert_eq!(math_log1p(-1.0), f64::NEG_INFINITY);
/// assert!(math_log1p(f64::NAN).is_nan());
/// ```
pub fn math_log1p(x: f64) -> f64 {
    x.ln_1p()
}

// ── Math.sinh / Math.cosh / Math.tanh ─────────────────────────────────────────

/// ECMAScript §21.3.2.31 `Math.sinh(x)`.
///
/// Returns the hyperbolic sine of `x`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_sinh;
///
/// assert!((math_sinh(0.0) - 0.0).abs() < 1e-15);
/// ```
pub fn math_sinh(x: f64) -> f64 {
    x.sinh()
}

/// ECMAScript §21.3.2.12 `Math.cosh(x)`.
///
/// Returns the hyperbolic cosine of `x`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_cosh;
///
/// assert!((math_cosh(0.0) - 1.0).abs() < 1e-15);
/// ```
pub fn math_cosh(x: f64) -> f64 {
    x.cosh()
}

/// ECMAScript §21.3.2.34 `Math.tanh(x)`.
///
/// Returns the hyperbolic tangent of `x`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_tanh;
///
/// assert!((math_tanh(0.0) - 0.0).abs() < 1e-15);
/// ```
pub fn math_tanh(x: f64) -> f64 {
    x.tanh()
}

// ── Math.asinh / Math.acosh / Math.atanh ──────────────────────────────────────

/// ECMAScript §21.3.2.5 `Math.asinh(x)`.
///
/// Returns the inverse hyperbolic sine of `x`.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_asinh;
///
/// assert!((math_asinh(0.0) - 0.0).abs() < 1e-15);
/// ```
pub fn math_asinh(x: f64) -> f64 {
    x.asinh()
}

/// ECMAScript §21.3.2.1 `Math.acosh(x)`.
///
/// Returns the inverse hyperbolic cosine of `x`.  Returns `NaN` for
/// inputs less than 1.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_acosh;
///
/// assert!((math_acosh(1.0) - 0.0).abs() < 1e-15);
/// assert!(math_acosh(0.5).is_nan());
/// ```
pub fn math_acosh(x: f64) -> f64 {
    x.acosh()
}

/// ECMAScript §21.3.2.7 `Math.atanh(x)`.
///
/// Returns the inverse hyperbolic tangent of `x`.  Returns `NaN` for
/// inputs with absolute value greater than 1.
///
/// # Examples
///
/// ```
/// use stator_jse::builtins::math::math_atanh;
///
/// assert!((math_atanh(0.0) - 0.0).abs() < 1e-15);
/// assert!(math_atanh(2.0).is_nan());
/// ```
pub fn math_atanh(x: f64) -> f64 {
    x.atanh()
}

// ──────────────────────────────────────────────────────────────────────────────
// Tests
// ──────────────────────────────────────────────────────────────────────────────

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

    // ── Constants ────────────────────────────────────────────────────────────

    #[test]
    fn test_math_pi_approx() {
        assert!((MATH_PI - 3.141_592_653_589_793).abs() < 1e-15);
    }

    #[test]
    fn test_math_e_approx() {
        assert!((MATH_E - 2.718_281_828_459_045).abs() < 1e-15);
    }

    // ── math_abs ─────────────────────────────────────────────────────────────

    #[test]
    fn test_abs_positive() {
        assert_eq!(math_abs(3.5), 3.5);
    }

    #[test]
    fn test_abs_negative() {
        assert_eq!(math_abs(-3.5), 3.5);
    }

    #[test]
    fn test_abs_zero() {
        assert_eq!(math_abs(0.0), 0.0);
        assert_eq!(math_abs(-0.0), 0.0);
    }

    #[test]
    fn test_abs_nan() {
        assert!(math_abs(f64::NAN).is_nan());
    }

    #[test]
    fn test_abs_infinity() {
        assert_eq!(math_abs(f64::INFINITY), f64::INFINITY);
        assert_eq!(math_abs(f64::NEG_INFINITY), f64::INFINITY);
    }

    // ── math_ceil ────────────────────────────────────────────────────────────

    #[test]
    fn test_ceil_positive_fraction() {
        assert_eq!(math_ceil(1.2), 2.0);
    }

    #[test]
    fn test_ceil_negative_fraction() {
        assert_eq!(math_ceil(-1.2), -1.0);
    }

    #[test]
    fn test_ceil_whole() {
        assert_eq!(math_ceil(3.0), 3.0);
    }

    // ── math_floor ───────────────────────────────────────────────────────────

    #[test]
    fn test_floor_positive_fraction() {
        assert_eq!(math_floor(1.9), 1.0);
    }

    #[test]
    fn test_floor_negative_fraction() {
        assert_eq!(math_floor(-1.1), -2.0);
    }

    #[test]
    fn test_floor_whole() {
        assert_eq!(math_floor(2.0), 2.0);
    }

    // ── math_round ───────────────────────────────────────────────────────────

    #[test]
    fn test_round_half_up() {
        assert_eq!(math_round(1.5), 2.0);
        assert_eq!(math_round(2.5), 3.0);
    }

    #[test]
    fn test_round_negative_half() {
        // ECMAScript: -0.5 rounds to -0, -1.5 rounds to -1.
        assert_eq!(math_round(-1.5), -1.0);
        let r = math_round(-0.5);
        assert_eq!(r, 0.0);
        assert!(r.is_sign_negative());
    }

    #[test]
    fn test_round_below_half() {
        assert_eq!(math_round(1.4), 1.0);
        assert_eq!(math_round(-1.4), -1.0);
    }

    // ── math_trunc ───────────────────────────────────────────────────────────

    #[test]
    fn test_trunc_positive() {
        assert_eq!(math_trunc(1.9), 1.0);
    }

    #[test]
    fn test_trunc_negative() {
        assert_eq!(math_trunc(-1.9), -1.0);
    }

    #[test]
    fn test_trunc_zero() {
        assert_eq!(math_trunc(0.5), 0.0);
        assert_eq!(math_trunc(-0.5), -0.0);
    }

    // ── math_sign ────────────────────────────────────────────────────────────

    #[test]
    fn test_sign_positive() {
        assert_eq!(math_sign(5.0), 1.0);
    }

    #[test]
    fn test_sign_negative() {
        assert_eq!(math_sign(-3.0), -1.0);
    }

    #[test]
    fn test_sign_zero() {
        assert_eq!(math_sign(0.0), 0.0);
        // Negative zero should preserve sign.
        assert!(math_sign(-0.0_f64).is_sign_negative());
    }

    #[test]
    fn test_sign_nan() {
        assert!(math_sign(f64::NAN).is_nan());
    }

    // ── math_max / math_min ──────────────────────────────────────────────────

    #[test]
    fn test_max_basic() {
        assert_eq!(math_max(&[1.0, 3.0, 2.0]), 3.0);
    }

    #[test]
    fn test_max_empty() {
        assert_eq!(math_max(&[]), f64::NEG_INFINITY);
    }

    #[test]
    fn test_max_nan_propagates() {
        assert!(math_max(&[1.0, f64::NAN, 3.0]).is_nan());
    }

    #[test]
    fn test_min_basic() {
        assert_eq!(math_min(&[1.0, 3.0, 2.0]), 1.0);
    }

    #[test]
    fn test_min_empty() {
        assert_eq!(math_min(&[]), f64::INFINITY);
    }

    #[test]
    fn test_min_nan_propagates() {
        assert!(math_min(&[1.0, f64::NAN, 3.0]).is_nan());
    }

    // ── math_pow ─────────────────────────────────────────────────────────────

    #[test]
    fn test_pow_integer() {
        // Use approximate comparison: `powf` is a transcendental function and
        // Miri's software-float implementation may have ≤1 ULP error.
        assert!((math_pow(2.0, 10.0) - 1024.0).abs() < 1e-10);
    }

    #[test]
    fn test_pow_fractional_exponent() {
        assert!((math_pow(4.0, 0.5) - 2.0).abs() < 1e-15);
    }

    #[test]
    fn test_pow_zero_exponent() {
        assert_eq!(math_pow(5.0, 0.0), 1.0);
        assert_eq!(math_pow(0.0, 0.0), 1.0);
    }

    #[test]
    fn test_pow_nan_base() {
        assert!(math_pow(f64::NAN, 2.0).is_nan());
    }

    // ── math_sqrt ────────────────────────────────────────────────────────────

    #[test]
    fn test_sqrt_perfect_square() {
        assert_eq!(math_sqrt(4.0), 2.0);
        assert_eq!(math_sqrt(9.0), 3.0);
    }

    #[test]
    fn test_sqrt_negative() {
        assert!(math_sqrt(-1.0).is_nan());
    }

    #[test]
    fn test_sqrt_zero() {
        assert_eq!(math_sqrt(0.0), 0.0);
    }

    // ── math_cbrt ────────────────────────────────────────────────────────────

    #[test]
    fn test_cbrt_positive() {
        assert!((math_cbrt(27.0) - 3.0).abs() < 1e-14);
    }

    #[test]
    fn test_cbrt_negative() {
        assert!((math_cbrt(-8.0) - (-2.0)).abs() < 1e-14);
    }

    // ── math_hypot ───────────────────────────────────────────────────────────

    #[test]
    fn test_hypot_3_4_5() {
        assert!((math_hypot(&[3.0, 4.0]) - 5.0).abs() < 1e-14);
    }

    #[test]
    fn test_hypot_empty() {
        assert_eq!(math_hypot(&[]), 0.0);
    }

    #[test]
    fn test_hypot_infinity() {
        assert_eq!(math_hypot(&[f64::INFINITY, 0.0]), f64::INFINITY);
    }

    #[test]
    fn test_hypot_nan() {
        assert!(math_hypot(&[f64::NAN, 1.0]).is_nan());
    }

    // ── math_log / math_log2 / math_log10 ────────────────────────────────────

    #[test]
    fn test_log_e() {
        assert!((math_log(std::f64::consts::E) - 1.0).abs() < 1e-15);
    }

    #[test]
    fn test_log_zero() {
        assert_eq!(math_log(0.0), f64::NEG_INFINITY);
    }

    #[test]
    fn test_log_negative() {
        assert!(math_log(-1.0).is_nan());
    }

    #[test]
    fn test_log2_power_of_two() {
        // Use approximate comparison: `log2` is a transcendental function and
        // Miri's software-float implementation may have ≤1 ULP error.
        assert!((math_log2(8.0) - 3.0).abs() < 1e-10);
    }

    #[test]
    fn test_log10_power_of_ten() {
        assert!((math_log10(1000.0) - 3.0).abs() < 1e-14);
    }

    // ── math_sin / math_cos / math_tan ───────────────────────────────────────

    #[test]
    fn test_sin_zero() {
        assert!((math_sin(0.0)).abs() < 1e-15);
    }

    #[test]
    fn test_sin_half_pi() {
        assert!((math_sin(std::f64::consts::FRAC_PI_2) - 1.0).abs() < 1e-14);
    }

    #[test]
    fn test_cos_zero() {
        assert!((math_cos(0.0) - 1.0).abs() < 1e-15);
    }

    #[test]
    fn test_cos_pi() {
        assert!((math_cos(std::f64::consts::PI) + 1.0).abs() < 1e-14);
    }

    #[test]
    fn test_tan_zero() {
        assert!(math_tan(0.0).abs() < 1e-15);
    }

    // ── math_random ──────────────────────────────────────────────────────────

    #[test]
    fn test_random_in_range() {
        for _ in 0..100 {
            let v = math_random();
            assert!((0.0..1.0).contains(&v), "random value {v} not in [0, 1)");
        }
    }

    #[test]
    fn test_random_produces_different_values() {
        let a = math_random();
        let b = math_random();
        // With a 53-bit mantissa the probability of two identical values is
        // ~1 in 2^53 — this test is practically always true.
        assert_ne!(a, b);
    }

    // ── math_clz32 ───────────────────────────────────────────────────────────

    #[test]
    fn test_clz32_one() {
        assert_eq!(math_clz32(1.0), 31);
    }

    #[test]
    fn test_clz32_zero() {
        assert_eq!(math_clz32(0.0), 32);
    }

    #[test]
    fn test_clz32_large() {
        assert_eq!(math_clz32(1000.0), 22);
    }

    // ── math_imul ────────────────────────────────────────────────────────────

    #[test]
    fn test_imul_basic() {
        assert_eq!(math_imul(3.0, 4.0), 12);
    }

    #[test]
    fn test_imul_negative() {
        assert_eq!(math_imul(-5.0, 3.0), -15);
    }

    #[test]
    fn test_imul_overflow_wraps() {
        // 0xffffffff * 5 wraps in 32-bit arithmetic.
        assert_eq!(math_imul(0xffff_ffff_u32 as f64, 5.0), -5);
    }

    // ── math_fround ──────────────────────────────────────────────────────────

    #[test]
    fn test_fround_identity_for_f32_exact() {
        assert_eq!(math_fround(1.0), 1.0);
    }

    #[test]
    fn test_fround_reduces_precision() {
        let exact = 1.337_f32 as f64;
        assert_eq!(math_fround(1.337), exact);
    }

    #[test]
    fn test_fround_nan() {
        assert!(math_fround(f64::NAN).is_nan());
    }

    // ── IEEE 754 edge cases ───────────────────────────────────────────────────

    #[test]
    fn test_ieee754_abs_negative_zero() {
        // Per IEEE 754, abs(-0) == +0.
        assert!(math_abs(-0.0_f64).is_sign_positive());
    }

    #[test]
    fn test_ieee754_sqrt_infinity() {
        assert_eq!(math_sqrt(f64::INFINITY), f64::INFINITY);
    }

    #[test]
    fn test_ieee754_pow_neg1_infinity() {
        // ECMAScript §21.3.2.26: abs(base) == 1 and exponent ±∞ → NaN.
        assert!(math_pow(-1.0, f64::INFINITY).is_nan());
        assert!(math_pow(-1.0, f64::NEG_INFINITY).is_nan());
        assert!(math_pow(1.0, f64::INFINITY).is_nan());
        assert!(math_pow(1.0, f64::NEG_INFINITY).is_nan());
    }

    #[test]
    fn test_ieee754_log_one() {
        assert_eq!(math_log(1.0), 0.0);
    }

    #[test]
    fn test_ieee754_hypot_inf_over_nan() {
        // Per ECMAScript, if any value is Infinity, result is Infinity even
        // if there is a NaN.
        assert_eq!(math_hypot(&[f64::INFINITY, f64::NAN]), f64::INFINITY);
    }

    // ── math_round edge cases ────────────────────────────────────────────────

    #[test]
    fn test_round_negative_zero() {
        // Math.round(-0) → -0
        let r = math_round(-0.0_f64);
        assert_eq!(r, 0.0);
        assert!(r.is_sign_negative());
    }

    #[test]
    fn test_round_small_negative() {
        // Math.round(-0.3) → -0
        let r = math_round(-0.3);
        assert_eq!(r, 0.0);
        assert!(r.is_sign_negative());
    }

    // ── math_max / math_min signed-zero ──────────────────────────────────────

    #[test]
    fn test_max_negative_zero_positive_zero() {
        // Math.max(-0, +0) → +0
        let r = math_max(&[-0.0, 0.0]);
        assert_eq!(r, 0.0);
        assert!(r.is_sign_positive());
    }

    #[test]
    fn test_min_positive_zero_negative_zero() {
        // Math.min(+0, -0) → -0
        let r = math_min(&[0.0, -0.0]);
        assert_eq!(r, 0.0);
        assert!(r.is_sign_negative());
    }

    // ── math_exp ─────────────────────────────────────────────────────────────

    #[test]
    fn test_exp_zero() {
        assert_eq!(math_exp(0.0), 1.0);
    }

    #[test]
    fn test_exp_one() {
        assert!((math_exp(1.0) - std::f64::consts::E).abs() < 1e-14);
    }

    #[test]
    fn test_exp_nan() {
        assert!(math_exp(f64::NAN).is_nan());
    }

    #[test]
    fn test_exp_infinity() {
        assert_eq!(math_exp(f64::INFINITY), f64::INFINITY);
        assert_eq!(math_exp(f64::NEG_INFINITY), 0.0);
    }

    // ── math_expm1 ───────────────────────────────────────────────────────────

    #[test]
    fn test_expm1_zero() {
        assert_eq!(math_expm1(0.0), 0.0);
    }

    #[test]
    fn test_expm1_nan() {
        assert!(math_expm1(f64::NAN).is_nan());
    }

    // ── math_log1p ───────────────────────────────────────────────────────────

    #[test]
    fn test_log1p_zero() {
        assert_eq!(math_log1p(0.0), 0.0);
    }

    #[test]
    fn test_log1p_minus_one() {
        assert_eq!(math_log1p(-1.0), f64::NEG_INFINITY);
    }

    #[test]
    fn test_log1p_nan() {
        assert!(math_log1p(f64::NAN).is_nan());
    }

    // ── math_sinh / math_cosh / math_tanh ────────────────────────────────────

    #[test]
    fn test_sinh_zero() {
        assert_eq!(math_sinh(0.0), 0.0);
    }

    #[test]
    fn test_cosh_zero() {
        assert_eq!(math_cosh(0.0), 1.0);
    }

    #[test]
    fn test_tanh_zero() {
        assert_eq!(math_tanh(0.0), 0.0);
    }

    #[test]
    fn test_sinh_nan() {
        assert!(math_sinh(f64::NAN).is_nan());
    }

    #[test]
    fn test_cosh_nan() {
        assert!(math_cosh(f64::NAN).is_nan());
    }

    #[test]
    fn test_tanh_nan() {
        assert!(math_tanh(f64::NAN).is_nan());
    }

    // ── math_asinh / math_acosh / math_atanh ─────────────────────────────────

    #[test]
    fn test_asinh_zero() {
        assert_eq!(math_asinh(0.0), 0.0);
    }

    #[test]
    fn test_acosh_one() {
        assert!((math_acosh(1.0) - 0.0).abs() < 1e-15);
    }

    #[test]
    fn test_acosh_less_than_one() {
        assert!(math_acosh(0.5).is_nan());
    }

    #[test]
    fn test_atanh_zero() {
        assert_eq!(math_atanh(0.0), 0.0);
    }

    #[test]
    fn test_atanh_out_of_range() {
        assert!(math_atanh(2.0).is_nan());
    }

    // ── Math edge cases (ECMAScript conformance) ─────────────────────────────

    #[test]
    fn test_math_max_empty_returns_neg_infinity() {
        assert_eq!(math_max(&[]), f64::NEG_INFINITY);
    }

    #[test]
    fn test_math_min_empty_returns_pos_infinity() {
        assert_eq!(math_min(&[]), f64::INFINITY);
    }

    #[test]
    fn test_math_pow_neg1_pos_infinity_is_nan() {
        assert!(math_pow(-1.0, f64::INFINITY).is_nan());
    }

    #[test]
    fn test_math_pow_1_neg_infinity_is_nan() {
        assert!(math_pow(1.0, f64::NEG_INFINITY).is_nan());
    }

    #[test]
    fn test_math_round_neg_half_is_neg_zero() {
        let r = math_round(-0.5);
        assert_eq!(r, 0.0);
        assert!(r.is_sign_negative());
    }

    #[test]
    fn test_math_pow_zero_exponent() {
        // ECMAScript: anything^0 = 1, even NaN^0 = 1.
        assert_eq!(math_pow(f64::NAN, 0.0), 1.0);
        assert_eq!(math_pow(f64::INFINITY, 0.0), 1.0);
    }

    #[test]
    fn test_math_pow_base_2_exponent_10() {
        assert!((math_pow(2.0, 10.0) - 1024.0).abs() < 1e-10);
    }
}