Searched refs:do_uqrshl_bhs (Results 1 – 4 of 4) sorted by relevance
/openbmc/qemu/target/arm/tcg/ |
H A D | vec_internal.h | 114 static inline uint32_t do_uqrshl_bhs(uint32_t src, int32_t shift, int bits, in do_uqrshl_bhs() function 152 return do_uqrshl_bhs(src, shift, bits, round, sat); in do_suqrshl_bhs()
|
H A D | neon_helper.c | 210 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 16, false, NULL)) 252 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 8, true, NULL)) 258 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 16, true, NULL)) in NEON_GVEC_VOP2() 264 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 32, true, NULL)) in NEON_GVEC_VOP2() 275 return do_uqrshl_bhs(val, (int8_t)shift, 32, true, NULL); in NEON_GVEC_VOP2() 284 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 8, false, env->vfp.qc)) 291 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 16, false, env->vfp.qc)) in NEON_GVEC_VOP2_ENV() 298 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 32, false, env->vfp.qc)) in NEON_GVEC_VOP2_ENV() 311 return do_uqrshl_bhs(val, (int8_t)shift, 32, false, env->vfp.qc); in NEON_GVEC_VOP2_ENV() 388 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 8, true, env->vfp.qc)) in NEON_GVEC_VOP2i_ENV() [all …]
|
H A D | mve_helper.c | 1080 #define DO_VSHLU(N, M) do_uqrshl_bhs(N, (int8_t)(M), sizeof(N) * 8, false, NULL) in DO_2OP_S() 1082 #define DO_VRSHLU(N, M) do_uqrshl_bhs(N, (int8_t)(M), sizeof(N) * 8, true, NULL) in DO_2OP_S() 1263 WRAP_QRSHL_HELPER(do_uqrshl_bhs, N, M, false, satp) 1267 WRAP_QRSHL_HELPER(do_uqrshl_bhs, N, M, true, satp) 2513 return do_uqrshl_bhs(n, (int8_t)shift, 32, false, &env->QF); in HELPER() 2523 return do_uqrshl_bhs(n, (int8_t)shift, 32, true, &env->QF); in HELPER()
|
H A D | sve_helper.c | 408 #define do_urshl_b(n, m) do_uqrshl_bhs(n, (int8_t)m, 8, true, NULL) in DO_ZPZZ() 409 #define do_urshl_h(n, m) do_uqrshl_bhs(n, (int16_t)m, 16, true, NULL) in DO_ZPZZ() 410 #define do_urshl_s(n, m) do_uqrshl_bhs(n, m, 32, true, NULL) in DO_ZPZZ() 439 ({ uint32_t discard; do_uqrshl_bhs(n, (int8_t)m, 8, false, &discard); }) 441 ({ uint32_t discard; do_uqrshl_bhs(n, (int16_t)m, 16, false, &discard); }) 443 ({ uint32_t discard; do_uqrshl_bhs(n, m, 32, false, &discard); }) 469 ({ uint32_t discard; do_uqrshl_bhs(n, (int8_t)m, 8, true, &discard); }) 471 ({ uint32_t discard; do_uqrshl_bhs(n, (int16_t)m, 16, true, &discard); }) 473 ({ uint32_t discard; do_uqrshl_bhs(n, m, 32, true, &discard); })
|