Home
last modified time | relevance | path

Searched refs:FPSCR_VX (Results 1 – 7 of 7) sorted by relevance

/openbmc/linux/arch/powerpc/math-emu/
H A Dmtfsf.c31 ~(FPSCR_VX | FPSCR_FEX | 0x800); in mtfsf()
36 fpscr |= FPSCR_VX; in mtfsf()
H A Dmath.c185 fpscr |= FPSCR_VX; in record_exception()
210 fpscr |= FPSCR_VX; in record_exception()
213 if (((fpscr & FPSCR_VX) && (fpscr & FPSCR_VE)) || in record_exception()
/openbmc/qemu/target/ppc/translate/
H A Dfp-impl.c.inc633 if (likely(crb != FPSCR_FEX && crb != FPSCR_VX)) {
653 if (likely(crb != FPSCR_FEX && crb != FPSCR_VX && crb != FPSCR_NI)) {
/openbmc/u-boot/arch/powerpc/include/asm/
H A Dprocessor.h64 #define FPSCR_VX 0x20000000 /* Invalid operation summary */ macro
/openbmc/linux/arch/powerpc/include/asm/
H A Dreg.h178 #define FPSCR_VX 0x20000000 /* Invalid operation summary */ macro
/openbmc/qemu/target/ppc/
H A Dcpu.h826 #define FPSCR_VX PPC_BIT_NR(34) /* Floating-point invalid op. excp. summ.*/ macro
872 #define FP_VX (1ull << FPSCR_VX)
/openbmc/linux/arch/powerpc/kernel/
H A Dtraps.c1173 if ((fpscr & FPSCR_VE) && (fpscr & FPSCR_VX)) in __parse_fpscr()