;; Test float 16 operations. (module (memory (data "\40\51\AD\DE")) (func (export "f32.load_f16") (result f32) (f32.load_f16 (i32.const 0))) (func (export "f32.store_f16") (f32.store_f16 (i32.const 0) (f32.const 100.5))) (func (export "i32.load16_u") (result i32) (i32.load16_u (i32.const 2))) (func (export "f16x8.splat") (param $0 f32) (result v128) (f16x8.splat (local.get $0))) (func (export "f16x8.extract_lane_first") (param $0 v128) (result f32) (f16x8.extract_lane 0 (local.get $0))) (func (export "f16x8.extract_lane_last") (param $0 v128) (result f32) (f16x8.extract_lane 7 (local.get $0))) (func (export "f16x8.replace_lane_first") (param $0 v128) (param $1 f32) (result v128) (f16x8.replace_lane 0 (local.get $0) (local.get $1))) (func (export "f16x8.replace_lane_last") (param $0 v128) (param $1 f32) (result v128) (f16x8.replace_lane 7 (local.get $0) (local.get $1))) (func (export "f16x8.eq") (param $0 v128) (param $1 v128) (result v128) (f16x8.eq (local.get $0) (local.get $1))) (func (export "f16x8.ne") (param $0 v128) (param $1 v128) (result v128) (f16x8.ne (local.get $0) (local.get $1))) (func (export "f16x8.lt") (param $0 v128) (param $1 v128) (result v128) (f16x8.lt (local.get $0) (local.get $1))) (func (export "f16x8.gt") (param $0 v128) (param $1 v128) (result v128) (f16x8.gt (local.get $0) (local.get $1))) (func (export "f16x8.le") (param $0 v128) (param $1 v128) (result v128) (f16x8.le (local.get $0) (local.get $1))) (func (export "f16x8.ge") (param $0 v128) (param $1 v128) (result v128) (f16x8.ge (local.get $0) (local.get $1))) (func (export "f16x8.add") (param $0 v128) (param $1 v128) (result v128) (f16x8.add (local.get $0) (local.get $1))) (func (export "f16x8.sub") (param $0 v128) (param $1 v128) (result v128) (f16x8.sub (local.get $0) (local.get $1))) (func (export "f16x8.mul") (param $0 v128) (param $1 v128) (result v128) (f16x8.mul (local.get $0) (local.get $1))) (func (export "f16x8.div") (param $0 v128) (param $1 v128) (result v128) (f16x8.div (local.get $0) (local.get $1))) (func (export "f16x8.min") (param $0 v128) (param $1 v128) (result v128) (f16x8.min (local.get $0) (local.get $1))) (func (export "f16x8.max") (param $0 v128) (param $1 v128) (result v128) (f16x8.max (local.get $0) (local.get $1))) (func (export "f16x8.pmin") (param $0 v128) (param $1 v128) (result v128) (f16x8.pmin (local.get $0) (local.get $1))) (func (export "f16x8.pmax") (param $0 v128) (param $1 v128) (result v128) (f16x8.pmax (local.get $0) (local.get $1))) (func (export "f16x8.abs") (param $0 v128) (result v128) (f16x8.abs (local.get $0))) (func (export "f16x8.neg") (param $0 v128) (result v128) (f16x8.neg (local.get $0))) (func (export "f16x8.sqrt") (param $0 v128) (result v128) (f16x8.sqrt (local.get $0))) (func (export "f16x8.ceil") (param $0 v128) (result v128) (f16x8.ceil (local.get $0))) (func (export "f16x8.floor") (param $0 v128) (result v128) (f16x8.floor (local.get $0))) (func (export "f16x8.trunc") (param $0 v128) (result v128) (f16x8.trunc (local.get $0))) (func (export "f16x8.nearest") (param $0 v128) (result v128) (f16x8.nearest (local.get $0))) ) (assert_return (invoke "f32.load_f16") (f32.const 42.0)) (invoke "f32.store_f16") (assert_return (invoke "f32.load_f16") (f32.const 100.5)) ;; Ensure that the above operations didn't write to memory they shouldn't have. (assert_return (invoke "i32.load16_u") (i32.const 0xDEAD)) ;; lane accesses (assert_return (invoke "f16x8.splat" (f32.const 100.5)) (v128.const i16x8 0x5648 0x5648 0x5648 0x5648 0x5648 0x5648 0x5648 0x5648)) (assert_return (invoke "f16x8.extract_lane_first" (v128.const i16x8 0x5648 0 0 0 0 0 0 0)) (f32.const 100.5)) (assert_return (invoke "f16x8.extract_lane_last" (v128.const i16x8 0 0 0 0 0 0 0 0xc500)) (f32.const -5)) (assert_return (invoke "f16x8.replace_lane_first" (v128.const i64x2 0 0) (f32.const 100.5)) (v128.const i16x8 0x5648 0 0 0 0 0 0 0)) (assert_return (invoke "f16x8.replace_lane_last" (v128.const i64x2 0 0) (f32.const 100.5)) (v128.const i16x8 0 0 0 0 0 0 0 0x5648)) ;; comparisons (assert_return (invoke "f16x8.eq" ;; 0 -1 1 nan inf nan inf nan ;; 0 0 -1 nan inf 0 -inf inf (v128.const i16x8 0 0xbc00 0x3c00 0x7e00 0x7c00 0x7e00 0x7c00 0x7e00) (v128.const i16x8 0 0 0xbc00 0x7e00 0x7c00 0 0xfc00 0x7c00) ) (v128.const i16x8 -1 0 0 0 -1 0 0 0) ) (assert_return (invoke "f16x8.ne" ;; 0 -1 1 nan inf nan inf nan ;; 0 0 -1 nan inf 0 -inf inf (v128.const i16x8 0 0xbc00 0x3c00 0x7e00 0x7c00 0x7e00 0x7c00 0x7e00) (v128.const i16x8 0 0 0xbc00 0x7e00 0x7c00 0 0xfc00 0x7c00) ) (v128.const i16x8 0 -1 -1 -1 0 -1 -1 -1) ) (assert_return (invoke "f16x8.lt" ;; 0 -1 1 nan inf nan inf nan ;; 0 0 -1 nan inf 0 -inf inf (v128.const i16x8 0 0xbc00 0x3c00 0x7e00 0x7c00 0x7e00 0x7c00 0x7e00) (v128.const i16x8 0 0 0xbc00 0x7e00 0x7c00 0 0xfc00 0x7c00) ) (v128.const i16x8 0 -1 0 0 0 0 0 0) ) (assert_return (invoke "f16x8.gt" ;; 0 -1 1 nan inf nan inf nan ;; 0 0 -1 nan inf 0 -inf inf (v128.const i16x8 0 0xbc00 0x3c00 0x7e00 0x7c00 0x7e00 0x7c00 0x7e00) (v128.const i16x8 0 0 0xbc00 0x7e00 0x7c00 0 0xfc00 0x7c00) ) (v128.const i16x8 0 0 -1 0 0 0 -1 0) ) (assert_return (invoke "f16x8.le" ;; 0 -1 1 nan inf nan inf nan ;; 0 0 -1 nan inf 0 -inf inf (v128.const i16x8 0 0xbc00 0x3c00 0x7e00 0x7c00 0x7e00 0x7c00 0x7e00) (v128.const i16x8 0 0 0xbc00 0x7e00 0x7c00 0 0xfc00 0x7c00) ) (v128.const i16x8 -1 -1 0 0 -1 0 0 0) ) (assert_return (invoke "f16x8.ge" ;; 0 -1 1 nan inf nan inf nan ;; 0 0 -1 nan inf 0 -inf inf (v128.const i16x8 0 0xbc00 0x3c00 0x7e00 0x7c00 0x7e00 0x7c00 0x7e00) (v128.const i16x8 0 0 0xbc00 0x7e00 0x7c00 0 0xfc00 0x7c00) ) (v128.const i16x8 -1 0 -1 0 -1 0 -1 0) ) ;; arithmetic operations (assert_return (invoke "f16x8.add" ;; nan -nan inf 1.5 -1 -1 1 1 (v128.const i16x8 0x7e00 0xfe00 0x7c00 0x3e00 0xbc00 0xbc00 0x3c00 0x3c00) ;; 42 -nan inf 1.5 0 1 0 1 (v128.const i16x8 0x5140 0xfe00 0x7c00 0x3e00 0 0x3c00 0 0x3c00)) ;; nan nan inf 3 -1 0 1 2 (v128.const i16x8 0x7e00 0x7e00 0x7c00 0x4200 0xbc00 0 0x3c00 0x4000)) (assert_return (invoke "f16x8.sub" ;; nan -nan inf 1.5 -1 -1 1 1 (v128.const i16x8 0x7e00 0xfe00 0x7c00 0x3e00 0xbc00 0xbc00 0x3c00 0x3c00) ;; 42 -nan inf 1.5 0 1 0 1 (v128.const i16x8 0x5140 0xfe00 0x7c00 0x3e00 0 0x3c00 0 0x3c00)) ;; nan nan nan 0 -1 -2 1 0 (v128.const i16x8 0x7e00 0x7e00 0x7e00 0 0xbc00 0xc000 0x3c00 0)) (assert_return (invoke "f16x8.mul" ;; nan -nan inf 1.5 -1 -1 1 1 (v128.const i16x8 0x7e00 0xfe00 0x7c00 0x3e00 0xbc00 0xbc00 0x3c00 0x3c00) ;; 42 -nan inf 1.5 0 1 0 1 (v128.const i16x8 0x5140 0xfe00 0x7c00 0x3e00 0 0x3c00 0 0x3c00)) ;; nan nan inf 2.25 0 -1 0 1 (v128.const i16x8 0x7e00 0x7e00 0x7c00 0x4080 0x8000 0xbc00 0 0x3c00)) (assert_return (invoke "f16x8.div" ;; nan -nan inf 1.5 -1 -1 1 1 (v128.const i16x8 0x7e00 0xfe00 0x7c00 0x3e00 0xbc00 0xbc00 0x3c00 0x3c00) ;; 42 -nan inf 1.5 0 1 0 1 (v128.const i16x8 0x5140 0xfe00 0x7c00 0x3e00 0 0x3c00 0 0x3c00)) ;; nan nan nan 1 -inf -1 inf 1 (v128.const i16x8 0x7e00 0x7e00 0x7e00 0x3c00 0xfc00 0xbc00 0x7c00 0x3c00)) (assert_return (invoke "f16x8.min" ;; nan -nan inf 1.5 -1 -1 1 1 (v128.const i16x8 0x7e00 0xfe00 0x7c00 0x3e00 0xbc00 0xbc00 0x3c00 0x3c00) ;; 42 -nan inf 1.5 0 1 0 1 (v128.const i16x8 0x5140 0xfe00 0x7c00 0x3e00 0 0x3c00 0 0x3c00)) ;; nan nan inf 1.5 -1 -1 0 1 (v128.const i16x8 0x7e00 0x7e00 0x7c00 0x3e00 0xbc00 0xbc00 0 0x3c00)) (assert_return (invoke "f16x8.max" ;; nan -nan inf 1.5 -1 -1 1 1 (v128.const i16x8 0x7e00 0xfe00 0x7c00 0x3e00 0xbc00 0xbc00 0x3c00 0x3c00) ;; 42 -nan inf 1.5 0 1 0 1 (v128.const i16x8 0x5140 0xfe00 0x7c00 0x3e00 0 0x3c00 0 0x3c00)) ;; nan nan inf 1.5 0 1 1 1 (v128.const i16x8 0x7e00 0x7e00 0x7c00 0x3e00 0 0x3c00 0x3c00 0x3c00)) (assert_return (invoke "f16x8.pmin" ;; nan -nan inf 1.5 -1 -1 1 1 (v128.const i16x8 0x7e00 0xfe00 0x7c00 0x3e00 0xbc00 0xbc00 0x3c00 0x3c00) ;; 42 -nan inf 1.5 0 1 0 1 (v128.const i16x8 0x5140 0xfe00 0x7c00 0x3e00 0 0x3c00 0 0x3c00)) ;; nan -nan inf 1.5 -1 -1 0 1 (v128.const i16x8 0x7e00 0xfe00 0x7c00 0x3e00 0xbc00 0xbc00 0 0x3c00)) (assert_return (invoke "f16x8.pmax" ;; nan -nan inf 1.5 -1 -1 1 1 (v128.const i16x8 0x7e00 0xfe00 0x7c00 0x3e00 0xbc00 0xbc00 0x3c00 0x3c00) ;; 42 -nan inf 1.5 0 1 0 1 (v128.const i16x8 0x5140 0xfe00 0x7c00 0x3e00 0 0x3c00 0 0x3c00)) ;; nan -nan inf 1.5 0 1 1 1 (v128.const i16x8 0x7e00 0xfe00 0x7c00 0x3e00 0 0x3c00 0x3c00 0x3c00)) ;; unary arithmetic (assert_return (invoke "f16x8.abs" ;; nan -nan inf -inf -1 1 1.5 1.2... (v128.const i16x8 0x7e00 0xfe00 0x7c00 0xfc00 0xbc00 0x3c00 0x3e00 0x3ccd)) ;; nan nan inf inf 1 1 1.5 1.2... (v128.const i16x8 0x7e00 0x7e00 0x7c00 0x7c00 0x3c00 0x3c00 0x3e00 0x3ccd)) (assert_return (invoke "f16x8.neg" ;; nan -nan inf -inf -1 1 1.5 1.2... (v128.const i16x8 0x7e00 0xfe00 0x7c00 0xfc00 0xbc00 0x3c00 0x3e00 0x3ccd)) ;; -nan nan -inf inf 1 -1 -1.5 -1.2... (v128.const i16x8 0xfe00 0x7e00 0xfc00 0x7c00 0x3c00 0xbc00 0xbe00 0xbccd)) ;; XXX Avoid tests that return -nan since it's non-deterministic. (assert_return (invoke "f16x8.sqrt" ;; nan 0 inf 4 16 1 1.5 1.2... (v128.const i16x8 0x7e00 0 0x7c00 0x4400 0x4c00 0x3c00 0x3e00 0x3ccd)) ;; nan 0 inf 2 4 1 1.22.. 1.09... (v128.const i16x8 0x7e00 0 0x7c00 0x4000 0x4400 0x3c00 0x3ce6 0x3c62)) (assert_return (invoke "f16x8.ceil" ;; nan 0 inf -inf -1 1 1.5 1.2... (v128.const i16x8 0x7e00 0 0x7c00 0xfc00 0xbc00 0x3c00 0x3e00 0x3ccd)) ;; nan 0 inf -inf -1 1 2 2 (v128.const i16x8 0x7e00 0 0x7c00 0xfc00 0xbc00 0x3c00 0x4000 0x4000)) (assert_return (invoke "f16x8.floor" ;; nan 0 inf -inf -1 1 1.5 1.2... (v128.const i16x8 0x7e00 0 0x7c00 0xfc00 0xbc00 0x3c00 0x3e00 0x3ccd)) ;; nan 0 inf -inf -1 1 1 1 (v128.const i16x8 0x7e00 0 0x7c00 0xfc00 0xbc00 0x3c00 0x3c00 0x3c00)) (assert_return (invoke "f16x8.nearest" ;; nan 0 inf -inf -1 1 1.5 1.2... (v128.const i16x8 0x7e00 0 0x7c00 0xfc00 0xbc00 0x3c00 0x3e00 0x3ccd)) ;; nan 0 inf -inf -1 1 2 1 (v128.const i16x8 0x7e00 0 0x7c00 0xfc00 0xbc00 0x3c00 0x4000 0x3c00))