device: 0.438 peripherals: 0.305 kernel: 0.304 architecture: 0.283 mistranslation: 0.260 PID: 0.260 semantic: 0.252 network: 0.224 ppc: 0.213 hypervisor: 0.189 permissions: 0.178 performance: 0.175 vnc: 0.173 assembly: 0.170 x86: 0.170 virtual: 0.155 user-level: 0.154 graphic: 0.147 register: 0.130 socket: 0.129 arm: 0.120 files: 0.098 debug: 0.087 risc-v: 0.084 VMM: 0.071 TCG: 0.064 boot: 0.063 i386: 0.061 KVM: 0.055 'mtfsf' instruction can clear FI incorrectly Using mtfsf instruction can clear the FPSCR FI bit incorrectly. This code snippet exhibits the issue: -- fpscr.ll = 0x1fffffff; __builtin_mtfsf (0b11111111, fpscr.d); fpscr.d = __builtin_mffs (); -- On POWER9 hardware: mffs : FPSCR = 0x000000007ffff7ff On qemu (git master; "-cpu POWER9"): -- $ ./mtfsf mffs : FPSCR = 0x000000007ffdffff -- Two differences: bit 52: "reserved", so maybe a "don't care" case bit 46: "FI" $ git log -1 master commit 89ea03a7dc83ca36b670ba7f787802791fcb04b1 Merge: 019217c 2531164 Author: Peter Maydell