diff options
author | Taylor Simpson <tsimpson@quicinc.com> | 2023-04-27 16:00:10 -0700 |
---|---|---|
committer | Taylor Simpson <tsimpson@quicinc.com> | 2023-05-18 12:40:52 -0700 |
commit | 842b206f268a69d7def87b990f272a514c49837b (patch) | |
tree | 6abadb7251aadb539dd6bf726e9d69e902e0bd70 /target/hexagon/helper.h | |
parent | e22edc7c1df59607dea3cf3d8529097ae38e3ae0 (diff) | |
download | qemu-842b206f268a69d7def87b990f272a514c49837b.zip qemu-842b206f268a69d7def87b990f272a514c49837b.tar.gz qemu-842b206f268a69d7def87b990f272a514c49837b.tar.bz2 |
Hexagon (target/hexagon) Move pred_written to DisasContext
The pred_written variable in the CPUHexagonState is only used for
bookkeeping within the translation of a packet. With recent changes
that eliminate the need to free TCGv variables, these make more sense
to be transient and kept in DisasContext.
Suggested-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20230427230012.3800327-20-tsimpson@quicinc.com>
Diffstat (limited to 'target/hexagon/helper.h')
-rw-r--r-- | target/hexagon/helper.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/hexagon/helper.h b/target/hexagon/helper.h index 4b750d0..f3b298b 100644 --- a/target/hexagon/helper.h +++ b/target/hexagon/helper.h @@ -21,7 +21,7 @@ DEF_HELPER_FLAGS_2(raise_exception, TCG_CALL_NO_RETURN, noreturn, env, i32) DEF_HELPER_1(debug_start_packet, void, env) DEF_HELPER_FLAGS_3(debug_check_store_width, TCG_CALL_NO_WG, void, env, int, int) -DEF_HELPER_FLAGS_3(debug_commit_end, TCG_CALL_NO_WG, void, env, int, int) +DEF_HELPER_FLAGS_4(debug_commit_end, TCG_CALL_NO_WG, void, env, int, int, int) DEF_HELPER_2(commit_store, void, env, int) DEF_HELPER_3(gather_store, void, env, i32, int) DEF_HELPER_1(commit_hvx_stores, void, env) |