Lines Matching refs:t
48 uint32_t t = 0; in cpu_alpha_store_fpcr() local
68 t |= CONVERT_BIT(soft_fpcr, FPCR_INVD, FPCR_IOV); in cpu_alpha_store_fpcr()
71 t |= CONVERT_BIT(fpcr, FPCR_INED, FPCR_INE); in cpu_alpha_store_fpcr()
72 t |= CONVERT_BIT(fpcr, FPCR_UNFD, FPCR_UNF); in cpu_alpha_store_fpcr()
73 t |= CONVERT_BIT(fpcr, FPCR_OVFD, FPCR_OVF); in cpu_alpha_store_fpcr()
74 t |= CONVERT_BIT(fpcr, FPCR_DZED, FPCR_DZE); in cpu_alpha_store_fpcr()
75 t |= CONVERT_BIT(fpcr, FPCR_INVD, FPCR_INV); in cpu_alpha_store_fpcr()
77 env->fpcr_exc_enable = ~t & FPCR_STATUS_MASK; in cpu_alpha_store_fpcr()
82 t = (fpcr & FPCR_UNFD) && (fpcr & FPCR_UNDZ); in cpu_alpha_store_fpcr()
84 t |= (env->swcr & SWCR_MAP_UMZ) != 0; in cpu_alpha_store_fpcr()
86 env->fpcr_flush_to_zero = t; in cpu_alpha_store_fpcr()