mirror of https://gitee.com/openkylin/qemu.git
tcg: Handle MO_AMASK in tcg_dump_ops
Reviewed-by: Yongbok Kim <yongbok.kim@imgtec.com> Tested-by: Yongbok Kim <yongbok.kim@imgtec.com> Signed-off-by: Richard Henderson <rth@twiddle.net>
This commit is contained in:
parent
2b7ec66f02
commit
59c4b7e8df
15
tcg/tcg.c
15
tcg/tcg.c
|
@ -1076,10 +1076,19 @@ void tcg_dump_ops(TCGContext *s)
|
|||
TCGMemOp op = get_memop(oi);
|
||||
unsigned ix = get_mmuidx(oi);
|
||||
|
||||
if (op < ARRAY_SIZE(ldst_name) && ldst_name[op]) {
|
||||
qemu_log(",%s,%u", ldst_name[op], ix);
|
||||
} else {
|
||||
if (op & ~(MO_AMASK | MO_BSWAP | MO_SSIZE)) {
|
||||
qemu_log(",$0x%x,%u", op, ix);
|
||||
} else {
|
||||
const char *s_al = "", *s_op;
|
||||
if (op & MO_AMASK) {
|
||||
if ((op & MO_AMASK) == MO_ALIGN) {
|
||||
s_al = "al+";
|
||||
} else {
|
||||
s_al = "un+";
|
||||
}
|
||||
}
|
||||
s_op = ldst_name[op & (MO_BSWAP | MO_SSIZE)];
|
||||
qemu_log(",%s%s,%u", s_al, s_op, ix);
|
||||
}
|
||||
i = 1;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue