mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
Hexagon (target/hexagon) Short-circuit packet register writes
In certain cases, we can avoid the overhead of writing to hex_new_value and write directly to hex_gpr. We add need_commit field to DisasContext indicating if the end-of-packet commit is needed. If it is not needed, get_result_gpr() and get_result_gpr_pair() can return hex_gpr. We pass the ctx->need_commit to helpers when needed. Finally, we can early-exit from gen_reg_writes during packet commit. There are a few instructions whose semantics write to the result before reading all the inputs. Therefore, the idef-parser generated code is incompatible with short-circuit. We tell idef-parser to skip them. For debugging purposes, we add a cpu property to turn off short-circuit. When the short-circuit property is false, we skip the analysis and force the end-of-packet commit. Here's a simple example of the TCG generated for 0x004000b4: 0x7800c020 { R0 = #0x1 } BEFORE: ---- 004000b4 movi_i32 new_r0,$0x1 mov_i32 r0,new_r0 AFTER: ---- 004000b4 movi_i32 r0,$0x1 This patch reintroduces a use of check_for_attrib, so we remove the G_GNUC_UNUSED added earlier in this series. Signed-off-by: Taylor Simpson <tsimpson@quicinc.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Brian Cain <bcain@quicinc.com> Message-Id: <20230427230012.3800327-12-tsimpson@quicinc.com>
This commit is contained in:
parent
b9f0326bf7
commit
d54c56156f
16 changed files with 128 additions and 30 deletions
|
@ -220,7 +220,7 @@ void HELPER(debug_commit_end)(CPUHexagonState *env, int has_st0, int has_st1)
|
|||
reg_printed = true;
|
||||
}
|
||||
HEX_DEBUG_LOG("\tr%d = " TARGET_FMT_ld " (0x" TARGET_FMT_lx ")\n",
|
||||
i, env->new_value[i], env->new_value[i]);
|
||||
i, env->gpr[i], env->gpr[i]);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -352,7 +352,8 @@ uint64_t HELPER(sfinvsqrta)(CPUHexagonState *env, float32 RsV)
|
|||
}
|
||||
|
||||
int64_t HELPER(vacsh_val)(CPUHexagonState *env,
|
||||
int64_t RxxV, int64_t RssV, int64_t RttV)
|
||||
int64_t RxxV, int64_t RssV, int64_t RttV,
|
||||
uint32_t pkt_need_commit)
|
||||
{
|
||||
for (int i = 0; i < 4; i++) {
|
||||
int xv = sextract64(RxxV, i * 16, 16);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue