mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
tcg: Introduce TCG_COND_TST{EQ,NE}
Add the enumerators, adjust the helpers to match, and dump. Not supported anywhere else just yet. Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
This commit is contained in:
parent
39a6e4f87e
commit
d48097d027
3 changed files with 58 additions and 22 deletions
|
@ -2482,7 +2482,9 @@ static const char * const cond_name[] =
|
|||
[TCG_COND_LTU] = "ltu",
|
||||
[TCG_COND_GEU] = "geu",
|
||||
[TCG_COND_LEU] = "leu",
|
||||
[TCG_COND_GTU] = "gtu"
|
||||
[TCG_COND_GTU] = "gtu",
|
||||
[TCG_COND_TSTEQ] = "tsteq",
|
||||
[TCG_COND_TSTNE] = "tstne",
|
||||
};
|
||||
|
||||
static const char * const ldst_name[(MO_BSWAP | MO_SSIZE) + 1] =
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue