diff options
author | Taylor Simpson <tsimpson@quicinc.com> | 2023-04-27 15:59:58 -0700 |
---|---|---|
committer | Taylor Simpson <tsimpson@quicinc.com> | 2023-05-18 12:40:52 -0700 |
commit | d24f0b2b89d0f4f595a1b62c00c4c951d1d5fce9 (patch) | |
tree | 3cd3c2fb129ca99d108873a317e5f575d0825246 /target/hexagon/helper.h | |
parent | 9942f6a8b66a9fc320fadc52c0f72fcfaebf5b50 (diff) | |
download | qemu-d24f0b2b89d0f4f595a1b62c00c4c951d1d5fce9.zip qemu-d24f0b2b89d0f4f595a1b62c00c4c951d1d5fce9.tar.gz qemu-d24f0b2b89d0f4f595a1b62c00c4c951d1d5fce9.tar.bz2 |
Hexagon (target/hexagon) Eliminate uses of log_pred_write function
These instructions have implicit writes to registers, so we don't
want them to be helpers when idef-parser is off.
The following instructions are overriden
S2_cabacdecbin
SA1_cmpeqi
Remove the log_pred_write function from op_helper.c
Remove references in macros.h
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
Acked-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230427230012.3800327-8-tsimpson@quicinc.com>
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 ed7f984..73849e3 100644 --- a/target/hexagon/helper.h +++ b/target/hexagon/helper.h @@ -31,6 +31,8 @@ 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) +DEF_HELPER_FLAGS_2(cabacdecbin_val, TCG_CALL_NO_RWG_SE, s64, s64, s64) +DEF_HELPER_FLAGS_2(cabacdecbin_pred, TCG_CALL_NO_RWG_SE, s32, s64, s64) /* Floating point */ DEF_HELPER_2(conv_sf2df, f64, env, f32) |