]> Git Repo - qemu.git/commitdiff
tcg: Add CF_LAST_IO + CF_USE_ICOUNT to CF_HASH_MASK
authorRichard Henderson <[email protected]>
Fri, 13 Oct 2017 19:15:06 +0000 (12:15 -0700)
committerRichard Henderson <[email protected]>
Tue, 24 Oct 2017 20:53:42 +0000 (13:53 -0700)
These flags are used by target/*/translate.c,
and affect code generation.

Reviewed-by: Emilio G. Cota <[email protected]>
Signed-off-by: Richard Henderson <[email protected]>
include/exec/exec-all.h

index 0fdb72bb220e209b1ba085de4faefaab2840ca18..a3bd3e7abd3d52f2bb408a84dad5268723d17ed5 100644 (file)
@@ -327,7 +327,8 @@ struct TranslationBlock {
 #define CF_INVALID     0x80000 /* TB is stale. Setters must acquire tb_lock */
 #define CF_PARALLEL    0x100000 /* Generate code for a parallel context */
 /* cflags' mask for hashing/comparison */
-#define CF_HASH_MASK   (CF_COUNT_MASK | CF_PARALLEL)
+#define CF_HASH_MASK   \
+    (CF_COUNT_MASK | CF_LAST_IO | CF_USE_ICOUNT | CF_PARALLEL)
 
     /* Per-vCPU dynamic tracing state used to generate this TB */
     uint32_t trace_vcpu_dstate;
This page took 0.027144 seconds and 4 git commands to generate.