unicorn/qemu/target
Richard Henderson 533a3f6a6c
tcg: Fix helper function vs host abi for float16
Depending on the host abi, float16, aka uint16_t, values are
passed and returned either zero-extended in the host register
or with garbage at the top of the host register.

The tcg code generator has so far been assuming garbage, as that
matches the x86 abi, but this is incorrect for other host abis.
Further, target/arm has so far been assuming zero-extended results,
so that it may store the 16-bit value into a 32-bit slot with the
high 16-bits already clear.

Rectify both problems by mapping "f16" in the helper definition
to uint32_t instead of (a typedef for) uint16_t. This forces
the host compiler to assume garbage in the upper 16 bits on input
and to zero-extend the result on output.

Backports commit 6c2be133a7478e443c99757b833d0f265c48e0a6 from qemu
2018-06-02 10:10:12 -04:00
..
arm tcg: Fix helper function vs host abi for float16 2018-06-02 10:10:12 -04:00
i386 i386: define the AMD 'virt-ssbd' CPUID feature bit (CVE-2018-3639) 2018-05-22 16:58:25 -04:00
m68k tcg: fix s/compliment/complement/ typos 2018-05-22 00:29:51 -04:00
mips target/mips: Remove floatX_maybe_silence_nan from conversions 2018-05-19 23:25:04 -04:00
sparc