mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 08:13:54 -06:00
Hexagon (target/hexagon) Remove log_reg_write from op_helper.[ch]
With the overrides added in prior commits, this function is not used Remove references in macros.h Signed-off-by: Taylor Simpson <tsimpson@quicinc.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20230427230012.3800327-7-tsimpson@quicinc.com>
This commit is contained in:
parent
5c4b11e827
commit
9942f6a8b6
3 changed files with 0 additions and 35 deletions
|
@ -52,23 +52,6 @@ G_NORETURN void HELPER(raise_exception)(CPUHexagonState *env, uint32_t excp)
|
|||
do_raise_exception_err(env, excp, 0);
|
||||
}
|
||||
|
||||
void log_reg_write(CPUHexagonState *env, int rnum,
|
||||
target_ulong val)
|
||||
{
|
||||
HEX_DEBUG_LOG("log_reg_write[%d] = " TARGET_FMT_ld " (0x" TARGET_FMT_lx ")",
|
||||
rnum, val, val);
|
||||
if (val == env->gpr[rnum]) {
|
||||
HEX_DEBUG_LOG(" NO CHANGE");
|
||||
}
|
||||
HEX_DEBUG_LOG("\n");
|
||||
|
||||
env->new_value[rnum] = val;
|
||||
if (HEX_DEBUG) {
|
||||
/* Do this so HELPER(debug_commit_end) will know */
|
||||
env->reg_written[rnum] = 1;
|
||||
}
|
||||
}
|
||||
|
||||
static void log_pred_write(CPUHexagonState *env, int pnum, target_ulong val)
|
||||
{
|
||||
HEX_DEBUG_LOG("log_pred_write[%d] = " TARGET_FMT_ld
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue