qemu with hax to log dma reads & writes jcs.org/2018/11/12/vfio

tests/fp: add wrapping for f128_to_ui32

Needed to test: softfloat: Implement float128_to_uint32

Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>

+3 -1
+2 -1
tests/fp/fp-test.c
··· 622 622 test_ab_extF80_z_bool(true_ab_extF80M_z_bool, subj_ab_extF80M_z_bool); 623 623 break; 624 624 case F128_TO_UI32: 625 - not_implemented(); 625 + test_a_f128_z_ui32_rx(slow_f128M_to_ui32, qemu_f128M_to_ui32, rmode, 626 + exact); 626 627 break; 627 628 case F128_TO_UI64: 628 629 test_a_f128_z_ui64_rx(slow_f128M_to_ui64, qemu_f128M_to_ui64, rmode,
+1
tests/fp/wrap.inc.c
··· 367 367 WRAP_128_TO_INT(qemu_f128M_to_i32, float128_to_int32, int_fast32_t) 368 368 WRAP_128_TO_INT(qemu_f128M_to_i64, float128_to_int64, int_fast64_t) 369 369 370 + WRAP_128_TO_INT(qemu_f128M_to_ui32, float128_to_uint32, uint_fast32_t) 370 371 WRAP_128_TO_INT(qemu_f128M_to_ui64, float128_to_uint64, uint_fast64_t) 371 372 #undef WRAP_128_TO_INT 372 373