diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2022-01-10 18:47:53 +0200 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2022-02-09 08:55:02 +1100 |
commit | cfc2a2d69d59f02b32df3098ce17e10ab86d43c6 (patch) | |
tree | 04bfc4cb798c32cdd8572cdfb55c0bea57c3303a /accel | |
parent | 4f152ef27e26d82905244b7cbe344929630d8fae (diff) | |
download | qemu-cfc2a2d69d59f02b32df3098ce17e10ab86d43c6.zip qemu-cfc2a2d69d59f02b32df3098ce17e10ab86d43c6.tar.gz qemu-cfc2a2d69d59f02b32df3098ce17e10ab86d43c6.tar.bz2 |
accel/tcg: Optimize jump cache flush during tlb range flush
When the length of the range is large enough, clearing the whole cache is
faster than iterating over the (possibly extremely large) set of pages
contained in the range.
This mimics the pre-existing similar optimization done on the flush of the
tlb itself.
Signed-off-by: Idan Horowitz <idan.horowitz@gmail.com>
Message-Id: <20220110164754.1066025-1-idan.horowitz@gmail.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel')
-rw-r--r-- | accel/tcg/cputlb.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/accel/tcg/cputlb.c b/accel/tcg/cputlb.c index 5e0d0ee..926d9a9 100644 --- a/accel/tcg/cputlb.c +++ b/accel/tcg/cputlb.c @@ -783,6 +783,15 @@ static void tlb_flush_range_by_mmuidx_async_0(CPUState *cpu, } qemu_spin_unlock(&env_tlb(env)->c.lock); + /* + * If the length is larger than the jump cache size, then it will take + * longer to clear each entry individually than it will to clear it all. + */ + if (d.len >= (TARGET_PAGE_SIZE * TB_JMP_CACHE_SIZE)) { + cpu_tb_jmp_cache_clear(cpu); + return; + } + for (target_ulong i = 0; i < d.len; i += TARGET_PAGE_SIZE) { tb_flush_jmp_cache(cpu, d.addr + i); } |