Searched refs:DO_2OP (Results 1 – 4 of 4) sorted by relevance
/openbmc/qemu/target/arm/tcg/ |
H A D | translate-mve.c | 845 #define DO_2OP(INSN, FN) DO_2OP_VEC(INSN, FN, NULL) macro 850 DO_2OP(VMULH_S, vmulhs) in DO_2OP_VEC() 851 DO_2OP(VMULH_U, vmulhu) in DO_2OP_VEC() 852 DO_2OP(VRMULH_S, vrmulhs) in DO_2OP_VEC() 853 DO_2OP(VRMULH_U, vrmulhu) in DO_2OP_VEC() 858 DO_2OP(VABD_S, vabds) in DO_2OP_VEC() 859 DO_2OP(VABD_U, vabdu) in DO_2OP_VEC() 860 DO_2OP(VHADD_S, vhadds) in DO_2OP_VEC() 861 DO_2OP(VHADD_U, vhaddu) in DO_2OP_VEC() 862 DO_2OP(VHSUB_S, vhsubs) in DO_2OP_VEC() [all …]
|
H A D | mve_helper.c | 873 #define DO_2OP(OP, ESIZE, TYPE, FN) \ in DO_1OP_IMM() macro 889 DO_2OP(OP##b, 1, uint8_t, FN) \ 890 DO_2OP(OP##h, 2, uint16_t, FN) \ 891 DO_2OP(OP##w, 4, uint32_t, FN) 895 DO_2OP(OP##b, 1, int8_t, FN) \ 896 DO_2OP(OP##h, 2, int16_t, FN) \ 897 DO_2OP(OP##w, 4, int32_t, FN) 956 DO_2OP(vand, 8, uint64_t, DO_AND) 957 DO_2OP(vbic, 8, uint64_t, DO_BIC) 958 DO_2OP(vorr, 8, uint64_t, DO_ORR) [all …]
|
H A D | vec_helper.c | 1210 #define DO_2OP(NAME, FUNC, TYPE) \ macro 1221 DO_2OP(gvec_frecpe_h, helper_recpe_f16, float16) in DO_2OP() function 1222 DO_2OP(gvec_frecpe_s, helper_recpe_f32, float32) in DO_2OP() 1223 DO_2OP(gvec_frecpe_d, helper_recpe_f64, float64) in DO_2OP() 1225 DO_2OP(gvec_frsqrte_h, helper_rsqrte_f16, float16) in DO_2OP() 1226 DO_2OP(gvec_frsqrte_s, helper_rsqrte_f32, float32) in DO_2OP() 1227 DO_2OP(gvec_frsqrte_d, helper_rsqrte_f64, float64) in DO_2OP() 1229 DO_2OP(gvec_vrintx_h, float16_round_to_int, float16) in DO_2OP() 1230 DO_2OP(gvec_vrintx_s, float32_round_to_int, float32) in DO_2OP() 1232 DO_2OP(gvec_sitos, helper_vfp_sitos, int32_t) in DO_2OP() [all …]
|
/openbmc/qemu/target/loongarch/tcg/ |
H A D | vec_helper.c | 2232 #define DO_2OP(NAME, BIT, E, DO_OP) \ macro 2246 DO_2OP(vclo_b, 8, UB, DO_CLO_B) 2247 DO_2OP(vclo_h, 16, UH, DO_CLO_H) 2248 DO_2OP(vclo_w, 32, UW, DO_CLO_W) 2249 DO_2OP(vclo_d, 64, UD, DO_CLO_D) 2250 DO_2OP(vclz_b, 8, UB, DO_CLZ_B) 2251 DO_2OP(vclz_h, 16, UH, DO_CLZ_H) 2252 DO_2OP(vclz_w, 32, UW, DO_CLZ_W) 2253 DO_2OP(vclz_d, 64, UD, DO_CLZ_D)
|