]> git.proxmox.com Git - mirror_qemu.git/commitdiff
tcg-i386: Tidy setcc.
authorRichard Henderson <rth@twiddle.net>
Fri, 21 May 2010 15:30:29 +0000 (08:30 -0700)
committerAurelien Jarno <aurelien@aurel32.net>
Fri, 21 May 2010 16:20:22 +0000 (16:20 +0000)
Define and use OPC_SETCC.

Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
tcg/i386/tcg-target.c

index 59f88f32851f478d1c824faaf17b59c71f5c3f32..1499c81807700772f8a6ad761ab41208a0da283e 100644 (file)
@@ -184,6 +184,7 @@ static inline int tcg_target_const_match(tcg_target_long val,
 #define OPC_PUSH_Iv    (0x68)
 #define OPC_PUSH_Ib    (0x6a)
 #define OPC_RET                (0xc3)
+#define OPC_SETCC      (0x90 | P_EXT)  /* ... plus condition code */
 #define OPC_SHIFT_1    (0xd1)
 #define OPC_SHIFT_Ib   (0xc1)
 #define OPC_SHIFT_cl   (0xd3)
@@ -577,8 +578,7 @@ static void tcg_out_setcond(TCGContext *s, TCGCond cond, TCGArg dest,
                             TCGArg arg1, TCGArg arg2, int const_arg2)
 {
     tcg_out_cmp(s, arg1, arg2, const_arg2);
-    /* setcc */
-    tcg_out_modrm(s, 0x90 | tcg_cond_to_jcc[cond] | P_EXT, 0, dest);
+    tcg_out_modrm(s, OPC_SETCC | tcg_cond_to_jcc[cond], 0, dest);
     tcg_out_ext8u(s, dest, dest);
 }