Home
last modified time | relevance | path

Searched refs:float_muladd_negate_c (Results 1 – 11 of 11) sorted by relevance

/openbmc/qemu/target/loongarch/tcg/insn_trans/
H A Dtrans_farith.c.inc200 TRANS(fmsub_s, FP_SP, gen_muladd, gen_helper_fmuladd_s, float_muladd_negate_c)
201 TRANS(fmsub_d, FP_DP, gen_muladd, gen_helper_fmuladd_d, float_muladd_negate_c)
205 float_muladd_negate_c | float_muladd_negate_result)
207 float_muladd_negate_c | float_muladd_negate_result)
/openbmc/qemu/target/riscv/
H A Dfpu_helper.c161 return do_fmadd_s(env, frs1, frs2, frs3, float_muladd_negate_c); in helper_fmsub_s()
167 return float64_muladd(frs1, frs2, frs3, float_muladd_negate_c, in helper_fmsub_d()
174 return do_fmadd_h(env, frs1, frs2, frs3, float_muladd_negate_c); in helper_fmsub_h()
200 float_muladd_negate_c | float_muladd_negate_product); in helper_fnmadd_s()
206 return float64_muladd(frs1, frs2, frs3, float_muladd_negate_c | in helper_fnmadd_d()
214 float_muladd_negate_c | float_muladd_negate_product); in helper_fnmadd_h()
/openbmc/qemu/target/s390x/tcg/
H A Dfpu_helper.c800 float32 ret = float32_muladd(f3, f2, f1, float_muladd_negate_c, in HELPER()
810 float64 ret = float64_muladd(f3, f2, f1, float_muladd_negate_c, in HELPER()
H A Dvec_fpu_helper.c694 DEF_GVEC_VFMA(vfms, float_muladd_negate_c) in DEF_GVEC_VFMA() argument
696 DEF_GVEC_VFMA(vfnms, float_muladd_negate_c | float_muladd_negate_result) in DEF_GVEC_VFMA()
/openbmc/qemu/target/i386/tcg/
H A Demit.c.inc648 FMA_SSE(VFMSUB231, OP_PTR1, OP_PTR2, OP_PTR0, float_muladd_negate_c)
649 FMA_SSE(VFMSUB213, OP_PTR1, OP_PTR0, OP_PTR2, float_muladd_negate_c)
650 FMA_SSE(VFMSUB132, OP_PTR0, OP_PTR2, OP_PTR1, float_muladd_negate_c)
652 FMA_SSE(VFNMSUB231, OP_PTR1, OP_PTR2, OP_PTR0, float_muladd_negate_c|float_muladd_negate_product)
653 FMA_SSE(VFNMSUB213, OP_PTR1, OP_PTR0, OP_PTR2, float_muladd_negate_c|float_muladd_negate_product)
654 FMA_SSE(VFNMSUB132, OP_PTR0, OP_PTR2, OP_PTR1, float_muladd_negate_c|float_muladd_negate_product)
656 FMA_SSE_PACKED(VFMADDSUB231, OP_PTR1, OP_PTR2, OP_PTR0, float_muladd_negate_c, 0)
657 FMA_SSE_PACKED(VFMADDSUB213, OP_PTR1, OP_PTR0, OP_PTR2, float_muladd_negate_c, 0)
658 FMA_SSE_PACKED(VFMADDSUB132, OP_PTR0, OP_PTR2, OP_PTR1, float_muladd_negate_c, 0)
660 FMA_SSE_PACKED(VFMSUBADD231, OP_PTR1, OP_PTR2, OP_PTR0, 0, float_muladd_negate_c)
[all...]
/openbmc/qemu/target/loongarch/tcg/
H A Dvec_helper.c2458 DO_4OP_F(vfmsub_s, 32, UW, float32_muladd, float_muladd_negate_c)
2459 DO_4OP_F(vfmsub_d, 64, UD, float64_muladd, float_muladd_negate_c)
2463 float_muladd_negate_c | float_muladd_negate_result)
2465 float_muladd_negate_c | float_muladd_negate_result)
/openbmc/qemu/fpu/
H A Dsoftfloat.c2338 if (flags & float_muladd_negate_c) { in float32_muladd()
2349 if (flags & float_muladd_negate_c) { in float32_muladd()
2406 if (flags & float_muladd_negate_c) { in float64_muladd()
2417 if (flags & float_muladd_negate_c) { in float64_muladd()
H A Dsoftfloat-parts.c.inc636 if (flags & float_muladd_negate_c) {
/openbmc/qemu/target/arm/tcg/
H A Dsve_helper.c5166 float_muladd_negate_product | float_muladd_negate_c); in HELPER()
5173 float_muladd_negate_c); in HELPER()
5235 float_muladd_negate_product | float_muladd_negate_c); in HELPER()
5242 float_muladd_negate_c); in HELPER()
5304 float_muladd_negate_product | float_muladd_negate_c); in HELPER()
5311 float_muladd_negate_c); in HELPER()
5373 float_muladd_negate_product | float_muladd_negate_c); in HELPER()
5380 float_muladd_negate_c); in HELPER()
/openbmc/qemu/include/fpu/
H A Dsoftfloat.h129 float_muladd_negate_c = 1, enumerator
/openbmc/qemu/target/ppc/
H A Dint_helper.c534 VARITHFPFMA(nmsubfp, float_muladd_negate_result | float_muladd_negate_c);