Lines Matching refs:ovf
275 int64_t ovf; in helper_add64_ssov() local
278 ovf = (result ^ r1) & ~(r1 ^ r2); in helper_add64_ssov()
281 if (ovf < 0) { in helper_add64_ssov()
431 int64_t ovf; in helper_sub64_ssov() local
434 ovf = (result ^ r1) & (r1 ^ r2); in helper_sub64_ssov()
437 if (ovf < 0) { in helper_sub64_ssov()
696 uint64_t ret, ovf; in helper_madd64_ssov() local
703 ovf = (ret ^ mul) & ~(mul ^ r2); in helper_madd64_ssov()
709 if ((int64_t)ovf < 0) { in helper_madd64_ssov()
774 int64_t ovf; in helper_madd64_q_ssov() local
782 ovf = (result ^ mul) & ~(mul ^ t1); in helper_madd64_q_ssov()
787 if (ovf >= 0) { in helper_madd64_q_ssov()
801 if (ovf < 0) { in helper_madd64_q_ssov()
918 uint64_t ret, ovf; in helper_msub64_ssov() local
925 ovf = (ret ^ r2) & (mul ^ r2); in helper_msub64_ssov()
931 if ((int64_t)ovf < 0) { in helper_msub64_ssov()
1022 int64_t ovf; in helper_msub64_q_ssov() local
1030 ovf = (result ^ t1) & (t1 ^ mul); in helper_msub64_q_ssov()
1035 if (ovf >= 0) { in helper_msub64_q_ssov()
1049 if (ovf < 0) { in helper_msub64_q_ssov()
1103 int32_t ovf = 0; in helper_abs_b() local
1110 ovf |= (b > 0x7F) || (b < -0x80); in helper_abs_b()
1115 env->PSW_USB_V = ovf << 31; in helper_abs_b()
1126 int32_t ovf = 0; in helper_abs_h() local
1133 ovf |= (h > 0x7FFF) || (h < -0x8000); in helper_abs_h()
1138 env->PSW_USB_V = ovf << 31; in helper_abs_h()
1150 int32_t ovf = 0; in helper_absdif_b() local
1158 ovf |= (b > 0x7F) || (b < -0x80); in helper_absdif_b()
1163 env->PSW_USB_V = ovf << 31; in helper_absdif_b()
1174 int32_t ovf = 0; in helper_absdif_h() local
1182 ovf |= (h > 0x7FFF) || (h < -0x8000); in helper_absdif_h()
1187 env->PSW_USB_V = ovf << 31; in helper_absdif_h()
1303 int32_t ovf = 0; in helper_add_b() local
1312 ovf |= ((b > 0x7f) || (b < -0x80)); in helper_add_b()
1317 env->PSW_USB_V = (ovf << 31); in helper_add_b()
1329 int32_t ovf = 0; in helper_add_h() local
1337 ovf |= ((h > 0x7fff) || (h < -0x8000)); in helper_add_h()
1342 env->PSW_USB_V = (ovf << 31); in helper_add_h()
1458 int32_t ovf = 0; in helper_sub_b() local
1467 ovf |= ((b > 0x7f) || (b < -0x80)); in helper_sub_b()
1472 env->PSW_USB_V = (ovf << 31); in helper_sub_b()
1484 int32_t ovf = 0; in helper_sub_h() local
1492 ovf |= ((h > 0x7fff) || (h < -0x8000)); in helper_sub_h()
1497 env->PSW_USB_V = (ovf << 31); in helper_sub_h()