Home
last modified time | relevance | path

Searched refs:S390_IEEE_MASK_INEXACT (Results 1 – 3 of 3) sorted by relevance

/openbmc/qemu/target/s390x/tcg/
H A Dfpu_helper.c55 S390_IEEE_MASK_INEXACT : 0; in s390_softfloat_exc_to_ieee()
82 if (!(s390_exc & S390_IEEE_MASK_INEXACT) && in handle_exceptions()
102 if (s390_exc & ~S390_IEEE_MASK_INEXACT) { in handle_exceptions()
103 if (s390_exc & ~S390_IEEE_MASK_INEXACT & env->fpc >> 24) { in handle_exceptions()
108 env->fpc |= (s390_exc & ~S390_IEEE_MASK_INEXACT) << 16; in handle_exceptions()
112 if (s390_exc & S390_IEEE_MASK_INEXACT && !XxC) { in handle_exceptions()
114 if (s390_exc & S390_IEEE_MASK_INEXACT & env->fpc >> 24) { in handle_exceptions()
115 tcg_s390_data_exception(env, s390_exc & S390_IEEE_MASK_INEXACT, in handle_exceptions()
119 env->fpc |= (s390_exc & S390_IEEE_MASK_INEXACT) << 16; in handle_exceptions()
947 } else if (s390_exc & S390_IEEE_MASK_INEXACT) { in HELPER()
[all …]
H A Dvec_fpu_helper.c59 g_assert(trap_exc & S390_IEEE_MASK_INEXACT); in check_ieee_exc()
/openbmc/qemu/target/s390x/
H A Ds390x-internal.h298 #define S390_IEEE_MASK_INEXACT 0x08 macro