Skip to content

Commit 55aaa6b

Browse files
authored
[test] Add a few more mixed-type floating-point expression tests (WebAssembly#1785)
In addition to testing `demote(x-promote(y))`, also test `demote(promote(y) - x)`. And test similar mixed-type cases for multiply and divide.
1 parent c0b3a9c commit 55aaa6b

File tree

1 file changed

+56
-2
lines changed

1 file changed

+56
-2
lines changed

test/core/float_exprs.wast

Lines changed: 56 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -649,7 +649,8 @@
649649
(assert_return (invoke "no_fold_promote_demote" (f32.const inf)) (f32.const inf))
650650
(assert_return (invoke "no_fold_promote_demote" (f32.const -inf)) (f32.const -inf))
651651

652-
;; Test that demote(x+promote(y)) is not folded to demote(x)+y.
652+
;; Test that demote(x+promote(y)) is not folded to demote(x)+y, and that
653+
;; demote(promote(y)+x) is not folded to y+demote(x).
653654

654655
(module
655656
(func (export "no_demote_mixed_add") (param $x f64) (param $y f32) (result f32)
@@ -670,11 +671,14 @@
670671
(assert_return (invoke "no_demote_mixed_add_commuted" (f32.const 0x1.096f4ap-29) (f64.const -0x1.0d5110e3385bbp-20)) (f32.const -0x1.0ccc5ap-20))
671672
(assert_return (invoke "no_demote_mixed_add_commuted" (f32.const -0x1.24e474p-41) (f64.const -0x1.73852db4e5075p-20)) (f32.const -0x1.738536p-20))
672673

673-
;; Test that demote(x-promote(y)) is not folded to demote(x)-y.
674+
;; Test that demote(x-promote(y)) is not folded to demote(x)-y, and that
675+
;; demote(promote(y)-x) is not folded to y-demote(x).
674676

675677
(module
676678
(func (export "no_demote_mixed_sub") (param $x f64) (param $y f32) (result f32)
677679
(f32.demote_f64 (f64.sub (local.get $x) (f64.promote_f32 (local.get $y)))))
680+
(func (export "no_demote_mixed_sub_commuted") (param $y f32) (param $x f64) (result f32)
681+
(f32.demote_f64 (f64.sub (f64.promote_f32 (local.get $y)) (local.get $x))))
678682
)
679683

680684
(assert_return (invoke "no_demote_mixed_sub" (f64.const 0x1.a0a183220e9b1p+82) (f32.const 0x1.c5acf8p+61)) (f32.const 0x1.a0a174p+82))
@@ -683,6 +687,56 @@
683687
(assert_return (invoke "no_demote_mixed_sub" (f64.const 0x1.0459f34091dbfp-54) (f32.const 0x1.61ad08p-71)) (f32.const 0x1.045942p-54))
684688
(assert_return (invoke "no_demote_mixed_sub" (f64.const 0x1.a7498dca3fdb7p+14) (f32.const 0x1.ed21c8p+15)) (f32.const -0x1.197d02p+15))
685689

690+
(assert_return (invoke "no_demote_mixed_sub_commuted" (f32.const 0x1.c5acf8p+61) (f64.const 0x1.a0a183220e9b1p+82)) (f32.const -0x1.a0a174p+82))
691+
(assert_return (invoke "no_demote_mixed_sub_commuted" (f32.const 0x1.d48ca4p+17) (f64.const -0x1.6e2c5ac39f63ep+30)) (f32.const 0x1.6e3bp+30))
692+
(assert_return (invoke "no_demote_mixed_sub_commuted" (f32.const 0x1.9d69bcp-12) (f64.const -0x1.98c74350dde6ap+6)) (f32.const 0x1.98c7aap+6))
693+
(assert_return (invoke "no_demote_mixed_sub_commuted" (f32.const 0x1.61ad08p-71) (f64.const 0x1.0459f34091dbfp-54)) (f32.const -0x1.045942p-54))
694+
(assert_return (invoke "no_demote_mixed_sub_commuted" (f32.const 0x1.ed21c8p+15) (f64.const 0x1.a7498dca3fdb7p+14)) (f32.const 0x1.197d02p+15))
695+
696+
;; Test that demote(x*promote(y)) is not folded to demote(x)*y, and that
697+
;; demote(promote(y)*x) is not folded to y*demote(x).
698+
699+
(module
700+
(func (export "no_demote_mixed_mul") (param $x f64) (param $y f32) (result f32)
701+
(f32.demote_f64 (f64.mul (local.get $x) (f64.promote_f32 (local.get $y)))))
702+
(func (export "no_demote_mixed_mul_commuted") (param $y f32) (param $x f64) (result f32)
703+
(f32.demote_f64 (f64.mul (f64.promote_f32 (local.get $y)) (local.get $x))))
704+
)
705+
706+
(assert_return (invoke "no_demote_mixed_mul" (f64.const 0x1.a19789e5aa475p-202) (f32.const 0x1.858cbep+113)) (f32.const 0x1.3db86cp-88))
707+
(assert_return (invoke "no_demote_mixed_mul" (f64.const 0x1.8f0e6a5a53f15p+140) (f32.const 0x1.2ef826p-107)) (f32.const 0x1.d845d2p+33))
708+
(assert_return (invoke "no_demote_mixed_mul" (f64.const 0x1.f03aa769e296cp+176) (f32.const 0x1.a9255p-57)) (f32.const 0x1.9c0cdap+120))
709+
(assert_return (invoke "no_demote_mixed_mul" (f64.const 0x1.9cd70b636bc52p+221) (f32.const 0x1.3f3ac6p-122)) (f32.const 0x1.01676p+100))
710+
(assert_return (invoke "no_demote_mixed_mul" (f64.const 0x1.c56b4c2991a3cp-170) (f32.const 0x1.1ad242p+48)) (f32.const 0x1.f4ec98p-122))
711+
712+
(assert_return (invoke "no_demote_mixed_mul_commuted" (f32.const 0x1.858cbep+113) (f64.const 0x1.a19789e5aa475p-202)) (f32.const 0x1.3db86cp-88))
713+
(assert_return (invoke "no_demote_mixed_mul_commuted" (f32.const 0x1.2ef826p-107) (f64.const 0x1.8f0e6a5a53f15p+140)) (f32.const 0x1.d845d2p+33))
714+
(assert_return (invoke "no_demote_mixed_mul_commuted" (f32.const 0x1.a9255p-57) (f64.const 0x1.f03aa769e296cp+176)) (f32.const 0x1.9c0cdap+120))
715+
(assert_return (invoke "no_demote_mixed_mul_commuted" (f32.const 0x1.3f3ac6p-122) (f64.const 0x1.9cd70b636bc52p+221)) (f32.const 0x1.01676p+100))
716+
(assert_return (invoke "no_demote_mixed_mul_commuted" (f32.const 0x1.1ad242p+48) (f64.const 0x1.c56b4c2991a3cp-170)) (f32.const 0x1.f4ec98p-122))
717+
718+
;; Test that demote(x/promote(y)) is not folded to demote(x)/y, and that
719+
;; demote(promote(y)/x) is not folded to y/demote(x).
720+
721+
(module
722+
(func (export "no_demote_mixed_div") (param $x f64) (param $y f32) (result f32)
723+
(f32.demote_f64 (f64.div (local.get $x) (f64.promote_f32 (local.get $y)))))
724+
(func (export "no_demote_mixed_div_commuted") (param $y f32) (param $x f64) (result f32)
725+
(f32.demote_f64 (f64.div (f64.promote_f32 (local.get $y)) (local.get $x))))
726+
)
727+
728+
(assert_return (invoke "no_demote_mixed_div" (f64.const 0x1.40d0b55d4cee1p+150) (f32.const 0x1.6c7496p+103)) (f32.const 0x1.c2b158p+46))
729+
(assert_return (invoke "no_demote_mixed_div" (f64.const 0x1.402750f34cd98p-153) (f32.const 0x1.3db8ep-82)) (f32.const 0x1.01f586p-71))
730+
(assert_return (invoke "no_demote_mixed_div" (f64.const 0x1.3f7ece1a790a7p-37) (f32.const 0x1.a5652p-128)) (f32.const 0x1.8430dp+90))
731+
(assert_return (invoke "no_demote_mixed_div" (f64.const 0x1.5171328e16885p-138) (f32.const 0x1.10636ap-88)) (f32.const 0x1.3d23cep-50))
732+
(assert_return (invoke "no_demote_mixed_div" (f64.const 0x1.d3a380fc986ccp+74) (f32.const 0x1.f095b6p+88)) (f32.const 0x1.e227c4p-15))
733+
734+
(assert_return (invoke "no_demote_mixed_div_commuted" (f32.const 0x1.d78ddcp-74) (f64.const 0x1.2c57e125069e2p-42)) (f32.const 0x1.91eed6p-32))
735+
(assert_return (invoke "no_demote_mixed_div_commuted" (f32.const 0x1.7db224p+26) (f64.const 0x1.1c291ec609ed4p+159)) (f32.const 0x1.57dfp-133))
736+
(assert_return (invoke "no_demote_mixed_div_commuted" (f32.const 0x1.e7a824p-40) (f64.const 0x1.f4bdb25ff00fcp-137)) (f32.const 0x1.f29f22p+96))
737+
(assert_return (invoke "no_demote_mixed_div_commuted" (f32.const 0x1.730b8p+80) (f64.const 0x1.880fb331a64cap+210)) (f32.const 0x1.e48ep-131))
738+
(assert_return (invoke "no_demote_mixed_div_commuted" (f32.const 0x1.7715fcp-73) (f64.const 0x1.6feb1fa66f11bp-198)) (f32.const 0x1.04fcb6p+125))
739+
686740
;; Test that converting between integer and float and back isn't folded away.
687741

688742
(module

0 commit comments

Comments
 (0)