Home
last modified time | relevance | path

Searched refs:do_uqrshl_bhs (Results 1 – 4 of 4) sorted by relevance

/openbmc/qemu/target/arm/tcg/
H A Dvec_internal.h114 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 Dneon_helper.c197 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 16, false, NULL))
239 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 8, true, NULL))
245 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 16, true, NULL)) in NEON_GVEC_VOP2()
251 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 32, true, NULL)) in NEON_GVEC_VOP2()
262 return do_uqrshl_bhs(val, (int8_t)shift, 32, true, NULL); in NEON_GVEC_VOP2()
271 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 8, false, env->vfp.qc))
294 return do_uqrshl_bhs(val, (int8_t)shift, 32, false, env->vfp.qc); in NEON_GVEC_VOP2_ENV()
355 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 8, true, env->vfp.qc))
361 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 16, true, env->vfp.qc)) in NEON_GVEC_VOP2_ENV()
367 (dest = do_uqrshl_bhs(src1, (int8_t)src2, 32, true, env->vfp.qc)) in NEON_GVEC_VOP2_ENV()
[all …]
H A Dmve_helper.c1080 #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 Dsve_helper.c408 #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); })