Revision | 9fd9b7de61b24c70a8a82d9627a20ed95433e1b5 (tree) |
---|---|
Zeit | 2019-02-06 12:39:24 |
Autor | Peter Maydell <peter.maydell@lina...> |
Commiter | Richard Henderson |
accel/tcg: Consider cluster index in tb_lookupcpu_state()
In commit f7b78602fdc6c6e4be we added the CPU cluster number to the
cflags field of the TB hash; this included adding it to the value
kept in tb->cflags, since we pass that field directly into the hash
calculation in some places. Unfortunately we forgot to check whether
other parts of the code were doing comparisons against tb->cflags
that would need to be updated.
It turns out that there is exactly one such place: the
tb_lookupcpu_state() function checks whether the TB it has
found in the tb_jmp_cache has a tb->cflags matching the cf_mask
that is passed in. The tb->cflags has the cluster_index in it
but the cf_mask does not.
Hoist the "add cluster index to the cf_mask" code up from
tb_htable_lookup() to tb_lookupcpu_state() so it can be considered
in the "did this TB match in the jmp cache" condition, as well as
when we do the full hash lookup by physical PC, flags, etc.
(tb_htable_lookup() is only called from tb_lookupcpu_state(),
so this change doesn't require any further knock-on changes.)
Fixes: f7b78602fdc6c6e4be ("accel/tcg: Add cluster number to TCG TB hash")
Tested-by: Cleber Rosa <crosa@redhat.com>
Tested-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reported-by: Howard Spoelstra <hsp.cat7@gmail.com>
Reported-by: Cleber Rosa <crosa@redhat.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20190205151810.571-1-peter.maydell@linaro.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
@@ -325,9 +325,6 @@ TranslationBlock *tb_htable_lookup(CPUState *cpu, target_ulong pc, | ||
325 | 325 | struct tb_desc desc; |
326 | 326 | uint32_t h; |
327 | 327 | |
328 | - cf_mask &= ~CF_CLUSTER_MASK; | |
329 | - cf_mask |= cpu->cluster_index << CF_CLUSTER_SHIFT; | |
330 | - | |
331 | 328 | desc.env = (CPUArchState *)cpu->env_ptr; |
332 | 329 | desc.cs_base = cs_base; |
333 | 330 | desc.flags = flags; |
@@ -28,6 +28,10 @@ tb_lookup__cpu_state(CPUState *cpu, target_ulong *pc, target_ulong *cs_base, | ||
28 | 28 | cpu_get_tb_cpu_state(env, pc, cs_base, flags); |
29 | 29 | hash = tb_jmp_cache_hash_func(*pc); |
30 | 30 | tb = atomic_rcu_read(&cpu->tb_jmp_cache[hash]); |
31 | + | |
32 | + cf_mask &= ~CF_CLUSTER_MASK; | |
33 | + cf_mask |= cpu->cluster_index << CF_CLUSTER_SHIFT; | |
34 | + | |
31 | 35 | if (likely(tb && |
32 | 36 | tb->pc == *pc && |
33 | 37 | tb->cs_base == *cs_base && |