5544c1b
From a2c90b264762d3ddcc9a830653315a6fe9107055 Mon Sep 17 00:00:00 2001
5544c1b
From: Richard Henderson <rth@twiddle.net>
5544c1b
Date: Fri, 21 Sep 2012 17:18:09 -0700
5544c1b
Subject: [PATCH] tcg: Adjust descriptions of *cond opcodes
5544c1b
5544c1b
The README file documented the operand ordering of the tcg_gen_*
5544c1b
functions.  Since we're documenting opcodes here, use the true
5544c1b
operand ordering.
5544c1b
5544c1b
Signed-off-by: Richard Henderson <rth@twiddle.net>
5544c1b
Cc: malc <av1474@comtv.ru>
5544c1b
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
5544c1b
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
5544c1b
---
5544c1b
 tcg/README | 10 +++++-----
5544c1b
 1 file changed, 5 insertions(+), 5 deletions(-)
5544c1b
5544c1b
diff --git a/tcg/README b/tcg/README
5544c1b
index 33783ee..27846f1 100644
5544c1b
--- a/tcg/README
5544c1b
+++ b/tcg/README
5544c1b
@@ -141,7 +141,7 @@ Define label 'label' at the current program point.
5544c1b
 
5544c1b
 Jump to label.
5544c1b
 
5544c1b
-* brcond_i32/i64 cond, t0, t1, label
5544c1b
+* brcond_i32/i64 t0, t1, cond, label
5544c1b
 
5544c1b
 Conditional jump if t0 cond t1 is true. cond can be:
5544c1b
     TCG_COND_EQ
5544c1b
@@ -301,13 +301,13 @@ This operation would be equivalent to
5544c1b
 
5544c1b
 ********* Conditional moves
5544c1b
 
5544c1b
-* setcond_i32/i64 cond, dest, t1, t2
5544c1b
+* setcond_i32/i64 dest, t1, t2, cond
5544c1b
 
5544c1b
 dest = (t1 cond t2)
5544c1b
 
5544c1b
 Set DEST to 1 if (T1 cond T2) is true, otherwise set to 0.
5544c1b
 
5544c1b
-* movcond_i32/i64 cond, dest, c1, c2, v1, v2
5544c1b
+* movcond_i32/i64 dest, c1, c2, v1, v2, cond
5544c1b
 
5544c1b
 dest = (c1 cond c2 ? v1 : v2)
5544c1b
 
5544c1b
@@ -360,7 +360,7 @@ The following opcodes are internal to TCG.  Thus they are to be implemented by
5544c1b
 32-bit host code generators, but are not to be emitted by guest translators.
5544c1b
 They are emitted as needed by inline functions within "tcg-op.h".
5544c1b
 
5544c1b
-* brcond2_i32 cond, t0_low, t0_high, t1_low, t1_high, label
5544c1b
+* brcond2_i32 t0_low, t0_high, t1_low, t1_high, cond, label
5544c1b
 
5544c1b
 Similar to brcond, except that the 64-bit values T0 and T1
5544c1b
 are formed from two 32-bit arguments.
5544c1b
@@ -377,7 +377,7 @@ is returned in two 32-bit outputs.
5544c1b
 Similar to mul, except two 32-bit (unsigned) inputs T1 and T2 yielding
5544c1b
 the full 64-bit product T0.  The later is returned in two 32-bit outputs.
5544c1b
 
5544c1b
-* setcond2_i32 cond, dest, t1_low, t1_high, t2_low, t2_high
5544c1b
+* setcond2_i32 dest, t1_low, t1_high, t2_low, t2_high, cond
5544c1b
 
5544c1b
 Similar to setcond, except that the 64-bit values T1 and T2 are
5544c1b
 formed from two 32-bit arguments.  The result is a 32-bit value.
5544c1b
-- 
5544c1b
1.7.12.1
5544c1b