diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2021-02-24 16:58:09 +0000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-03-06 11:52:06 -0800 |
commit | bf253ac606de4a934e41ba178bf4f1338c554cec (patch) | |
tree | 1bfd3bd5ed5f7f474e52fccfcfd24692b3165e7e /accel/tcg/tcg-runtime.c | |
parent | c0ae396a81e13e5a09846f86a702bc61733a8885 (diff) | |
download | qemu-bf253ac606de4a934e41ba178bf4f1338c554cec.zip qemu-bf253ac606de4a934e41ba178bf4f1338c554cec.tar.gz qemu-bf253ac606de4a934e41ba178bf4f1338c554cec.tar.bz2 |
accel/tcg: drop the use of CF_HASH_MASK and rename params
We don't really deal in cf_mask most of the time. The one time it's
relevant is when we want to remove an invalidated TB from the QHT
lookup. Everywhere else we should be looking up things without
CF_INVALID set.
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20210224165811.11567-4-alex.bennee@linaro.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel/tcg/tcg-runtime.c')
-rw-r--r-- | accel/tcg/tcg-runtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel/tcg/tcg-runtime.c b/accel/tcg/tcg-runtime.c index 99403e3..49f5de3 100644 --- a/accel/tcg/tcg-runtime.c +++ b/accel/tcg/tcg-runtime.c @@ -27,10 +27,10 @@ #include "exec/helper-proto.h" #include "exec/cpu_ldst.h" #include "exec/exec-all.h" -#include "exec/tb-lookup.h" #include "disas/disas.h" #include "exec/log.h" #include "tcg/tcg.h" +#include "exec/tb-lookup.h" /* 32-bit helpers */ |