summary refs log tree commit diff stats
path: root/docs
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2023-10-23 18:53:27 -0700
committerRichard Henderson <richard.henderson@linaro.org>2024-02-03 23:43:47 +0000
commitd48097d0270e702e4de88f6e36a256ebff33ad6c (patch)
tree425d2eaad348ccdf7b4f4cc13b7564e17c64f183 /docs
parent39a6e4f87e7b75a45b08d6dc8b8b7c2954c87440 (diff)
downloadfocaccia-qemu-d48097d0270e702e4de88f6e36a256ebff33ad6c.tar.gz
focaccia-qemu-d48097d0270e702e4de88f6e36a256ebff33ad6c.zip
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>
Diffstat (limited to 'docs')
-rw-r--r--docs/devel/tcg-ops.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/devel/tcg-ops.rst b/docs/devel/tcg-ops.rst
index 8ae59ea02b..d46b625e0e 100644
--- a/docs/devel/tcg-ops.rst
+++ b/docs/devel/tcg-ops.rst
@@ -253,6 +253,8 @@ Jumps/Labels
        |   ``TCG_COND_GEU /* unsigned */``
        |   ``TCG_COND_LEU /* unsigned */``
        |   ``TCG_COND_GTU /* unsigned */``
+       |   ``TCG_COND_TSTEQ /* t1 & t2 == 0 */``
+       |   ``TCG_COND_TSTNE /* t1 & t2 != 0 */``
 
 Arithmetic
 ----------