diff options
author | Taylor Simpson <tsimpson@quicinc.com> | 2021-04-08 20:07:47 -0500 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-05-01 08:31:43 -0700 |
commit | da74cd2dced1ca36ffa864e70cf5ee8d3a8c1fab (patch) | |
tree | 0779332fe8e62134865a4a91dd0e79d9e541409a /target/hexagon/helper.h | |
parent | dd8705bdf529d2c694ec3a4d4a2c18bb770d5c6c (diff) | |
download | qemu-da74cd2dced1ca36ffa864e70cf5ee8d3a8c1fab.zip qemu-da74cd2dced1ca36ffa864e70cf5ee8d3a8c1fab.tar.gz qemu-da74cd2dced1ca36ffa864e70cf5ee8d3a8c1fab.tar.bz2 |
Hexagon (target/hexagon) add A5_ACS (vacsh)
Rxx32,Pe4 = vacsh(Rss32, Rtt32)
Add compare and select elements of two vectors
Test cases in tests/tcg/hexagon/multi_result.c
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <1617930474-31979-20-git-send-email-tsimpson@quicinc.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/hexagon/helper.h')
-rw-r--r-- | target/hexagon/helper.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/hexagon/helper.h b/target/hexagon/helper.h index cb7508f..3824ae0 100644 --- a/target/hexagon/helper.h +++ b/target/hexagon/helper.h @@ -26,6 +26,8 @@ DEF_HELPER_2(commit_store, void, env, int) DEF_HELPER_FLAGS_4(fcircadd, TCG_CALL_NO_RWG_SE, s32, s32, s32, s32, s32) DEF_HELPER_3(sfrecipa, i64, env, f32, f32) DEF_HELPER_2(sfinvsqrta, i64, env, f32) +DEF_HELPER_4(vacsh_val, s64, env, s64, s64, s64) +DEF_HELPER_FLAGS_4(vacsh_pred, TCG_CALL_NO_RWG_SE, s32, env, s64, s64, s64) /* Floating point */ DEF_HELPER_2(conv_sf2df, f64, env, f32) |