mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 02:03:56 -06:00
Hexagon (target/hexagon) Move pkt_has_store_s1 to DisasContext
The pkt_has_store_s1 field is only used for bookkeeping helpers with a load. With recent changes that eliminate the need to free TCGv variables, it makes more sense to make this transient. These helpers already take the instruction slot as an argument. We combine the slot and pkt_has_store_s1 into a single argument called slotval. 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-21-tsimpson@quicinc.com>
This commit is contained in:
parent
842b206f26
commit
e5d0d78db4
11 changed files with 51 additions and 40 deletions
|
@ -66,7 +66,6 @@ typedef struct DisasContext {
|
|||
TCGCond branch_cond;
|
||||
target_ulong branch_dest;
|
||||
bool is_tight_loop;
|
||||
bool need_pkt_has_store_s1;
|
||||
bool short_circuit;
|
||||
bool has_hvx_helper;
|
||||
TCGv new_value[TOTAL_PER_THREAD_REGS];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue