Home
last modified time | relevance | path

Searched refs:float32_lt (Results 1 – 12 of 12) sorted by relevance

/openbmc/qemu/target/microblaze/
H A Dop_helper.c246 r = float32_lt(fb.f, fa.f, &env->fp_status); in helper_fcmp_lt()
294 r = float32_lt(fa.f, fb.f, &env->fp_status); in helper_fcmp_gt()
323 r = !float32_lt(fa.f, fb.f, &env->fp_status); in helper_fcmp_ge()
/openbmc/qemu/target/mips/tcg/
H A Dfpu_helper.c1909 FOP_COND_S(lt, float32_lt(fst0, fst1,
1913 || float32_lt(fst0, fst1,
2038 FOP_COND_PS(lt, float32_lt(fst0, fst1,
2040 float32_lt(fsth0, fsth1,
2044 || float32_lt(fst0, fst1,
2048 || float32_lt(fsth0, fsth1,
2213 FOP_CONDN_S(slt, (float32_lt(fst0, fst1,
2217 || float32_lt(fst0, fst1,
2245 || float32_lt(fst1, fst0,
2247 || float32_lt(fst0, fst1,
[all …]
/openbmc/qemu/target/hexagon/
H A Darch.c347 } else if (float32_lt(RsV, float32_zero, fp_status)) { in arch_sf_invsqrt_common()
/openbmc/qemu/target/xtensa/
H A Dfpu_helper.c414 return float32_lt(a, b, &env->fp_status); in HELPER()
/openbmc/qemu/target/i386/
H A Dops_sse.h1361 d->MMX_L(0) = float32_lt(s->MMX_S(0), d->MMX_S(0), in helper_pfcmpgt()
1363 d->MMX_L(1) = float32_lt(s->MMX_S(1), d->MMX_S(1), in helper_pfcmpgt()
1369 if (float32_lt(d->MMX_S(0), s->MMX_S(0), &env->mmx_status)) { in helper_pfmax()
1372 if (float32_lt(d->MMX_S(1), s->MMX_S(1), &env->mmx_status)) { in helper_pfmax()
1379 if (float32_lt(s->MMX_S(0), d->MMX_S(0), &env->mmx_status)) { in helper_pfmin()
1382 if (float32_lt(s->MMX_S(1), d->MMX_S(1), &env->mmx_status)) { in helper_pfmin()
/openbmc/qemu/target/arm/tcg/
H A Dneon_helper.c1225 return -float32_lt(make_float32(b), make_float32(a), fpst); in HELPER()
1239 return -float32_lt(f1, f0, fpst); in HELPER()
H A Dvec_helper.c1221 return -float32_lt(op2, op1, stat); in float32_cgt()
1251 return -float32_lt(float32_abs(op2), float32_abs(op1), stat); in float32_acgt()
H A Dmve_helper.c3245 #define DO_GT32(X, Y, S) float32_lt(Y, X, S)
/openbmc/qemu/target/riscv/
H A Dfpu_helper.c303 return float32_lt(frs1, frs2, &env->fp_status); in helper_flt_s()
H A Dvector_helper.c4387 GEN_VEXT_CMP_VV_ENV(vmflt_vv_w, uint32_t, H4, float32_lt) in GEN_VEXT_CMP_VV_ENV()
4390 GEN_VEXT_CMP_VF(vmflt_vf_w, uint32_t, H4, float32_lt) in GEN_VEXT_CMP_VV_ENV()
/openbmc/qemu/include/fpu/
H A Dsoftfloat.h695 static inline bool float32_lt(float32 a, float32 b, float_status *s) in float32_lt() function
/openbmc/qemu/target/ppc/
H A Dfpu_helper.c1195 return float32_lt(u1.f, u2.f, &env->vec_status) ? 4 : 0; in efscmplt()