Home
last modified time | relevance | path

Searched refs:fpstatus_ptr (Results 1 – 6 of 6) sorted by relevance

/openbmc/qemu/target/arm/tcg/
H A Dtranslate-vfp.c463 fpst = fpstatus_ptr(FPST_FPCR_F16); in trans_VRINT()
465 fpst = fpstatus_ptr(FPST_FPCR); in trans_VRINT()
530 fpst = fpstatus_ptr(FPST_FPCR_F16); in trans_VCVT()
532 fpst = fpstatus_ptr(FPST_FPCR); in trans_VCVT()
1401 fpst = fpstatus_ptr(FPST_FPCR); in do_vfp_3op_sp()
1459 fpst = fpstatus_ptr(FPST_FPCR_F16); in do_vfp_3op_hp()
1520 fpst = fpstatus_ptr(FPST_FPCR); in do_vfp_3op_dp()
2125 fpst = fpstatus_ptr(FPST_FPCR_F16); in do_vfm_hp()
2184 fpst = fpstatus_ptr(FPST_FPCR); in do_vfm_sp()
2249 fpst = fpstatus_ptr(FPST_FPCR); in do_vfm_dp()
[all …]
H A Dtranslate-a64.c720 TCGv_ptr fpst = fpstatus_ptr(is_fp16 ? FPST_FPCR_F16 : FPST_FPCR); in gen_gvec_op3_fpst()
762 TCGv_ptr fpst = fpstatus_ptr(is_fp16 ? FPST_FPCR_F16 : FPST_FPCR); in gen_gvec_op4_fpst()
5014 f->gen_d(t0, t0, t1, fpstatus_ptr(FPST_FPCR)); in do_fp3_scalar()
5022 f->gen_s(t0, t0, t1, fpstatus_ptr(FPST_FPCR)); in do_fp3_scalar()
5033 f->gen_h(t0, t0, t1, fpstatus_ptr(FPST_FPCR_F16)); in do_fp3_scalar()
6146 f->gen_d(t0, t0, t1, fpstatus_ptr(FPST_FPCR)); in TRANS()
6156 f->gen_s(t0, t0, t1, fpstatus_ptr(FPST_FPCR)); in TRANS()
6169 f->gen_h(t0, t0, t1, fpstatus_ptr(FPST_FPCR_F16)); in TRANS()
6195 gen_helper_vfp_muladdd(t0, t1, t2, t0, fpstatus_ptr(FPST_FPCR)); in do_fmla_scalar_idx()
6209 gen_helper_vfp_muladds(t0, t1, t2, t0, fpstatus_ptr(FPST_FPCR)); in do_fmla_scalar_idx()
[all …]
H A Dtranslate-neon.c205 TCGv_ptr fpst = fpstatus_ptr(fp_flavour); in do_neon_ddda_fpst()
257 fpst = fpstatus_ptr(a->size == MO_16 ? FPST_STD_F16 : FPST_STD); in trans_VCADD()
982 TCGv_ptr fpst = fpstatus_ptr(FPST); \
1399 fpst = fpstatus_ptr(a->size == MO_16 ? FPST_STD_F16 : FPST_STD); in do_fp_2sh()
2151 fpstatus = fpstatus_ptr(a->size == 1 ? FPST_STD_F16 : FPST_STD); in do_2scalar_fp_vec()
2969 fpst = fpstatus_ptr(FPST_STD); in trans_VCVT_B16_F32()
3009 fpst = fpstatus_ptr(FPST_STD); in trans_VCVT_F16_F32()
3055 fpst = fpstatus_ptr(FPST_STD); in trans_VCVT_F32_F16()
3365 fpst = fpstatus_ptr(vece == MO_16 ? FPST_STD_F16 : FPST_STD); \
3415 fpst = fpstatus_ptr(vece == 1 ? FPST_STD_F16 : FPST_STD); \
H A Dtranslate-sme.c331 fpst = fpstatus_ptr(e_fpst); in do_outprod_fpst()
H A Dtranslate-sve.c131 TCGv_ptr status = fpstatus_ptr(flavour); in gen_gvec_fpst_zz()
180 TCGv_ptr status = fpstatus_ptr(flavour); in gen_gvec_fpst_zzz()
250 TCGv_ptr status = fpstatus_ptr(flavour); in gen_gvec_fpst_zzzz()
284 TCGv_ptr status = fpstatus_ptr(flavour); in gen_gvec_fpst_zzzzp()
334 TCGv_ptr status = fpstatus_ptr(flavour); in gen_gvec_fpst_zzp()
385 TCGv_ptr status = fpstatus_ptr(flavour); in gen_gvec_fpst_zzzp()
3581 status = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR); in do_reduce()
3633 fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR); in do_ppz_fp()
3702 t_fpst = fpstatus_ptr(a->esz == MO_16 ? FPST_FPCR_F16 : FPST_FPCR); in trans_FADDA()
3777 status = fpstatus_ptr(is_fp16 ? FPST_FPCR_F16 : FPST_FPCR); in do_fp_scalar()
[all …]
H A Dtranslate.h664 static inline TCGv_ptr fpstatus_ptr(ARMFPStatusFlavour flavour) in fpstatus_ptr() function