2003-06-15 21:58:51 +02:00
|
|
|
/*
|
|
|
|
* Host code generation
|
2007-09-16 23:08:06 +02:00
|
|
|
*
|
2003-06-15 21:58:51 +02:00
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2019-01-23 15:08:56 +01:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2003-06-15 21:58:51 +02:00
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2009-07-16 22:47:01 +02:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
2003-06-15 21:58:51 +02:00
|
|
|
*/
|
2019-05-23 16:35:05 +02:00
|
|
|
|
2016-01-26 19:16:56 +01:00
|
|
|
#include "qemu/osdep.h"
|
2003-06-15 21:58:51 +02:00
|
|
|
|
2017-06-02 08:06:45 +02:00
|
|
|
#include "trace.h"
|
2012-10-24 11:12:21 +02:00
|
|
|
#include "disas/disas.h"
|
2016-03-15 13:18:37 +01:00
|
|
|
#include "exec/exec-all.h"
|
2020-01-01 12:23:00 +01:00
|
|
|
#include "tcg/tcg.h"
|
2012-12-02 17:04:43 +01:00
|
|
|
#if defined(CONFIG_USER_ONLY)
|
|
|
|
#include "qemu.h"
|
|
|
|
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
|
|
|
#include <sys/param.h>
|
|
|
|
#if __FreeBSD_version >= 700104
|
|
|
|
#define HAVE_KINFO_GETVMMAP
|
|
|
|
#define sigqueue sigqueue_freebsd /* avoid redefinition */
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <machine/profile.h>
|
|
|
|
#define _KERNEL
|
|
|
|
#include <sys/user.h>
|
|
|
|
#undef _KERNEL
|
|
|
|
#undef sigqueue
|
|
|
|
#include <libutil.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
2013-04-08 17:29:59 +02:00
|
|
|
#else
|
2018-05-30 11:58:36 +02:00
|
|
|
#include "exec/ram_addr.h"
|
2012-12-02 17:04:43 +01:00
|
|
|
#endif
|
|
|
|
|
2012-12-17 18:19:49 +01:00
|
|
|
#include "exec/cputlb.h"
|
2020-12-16 13:27:58 +01:00
|
|
|
#include "exec/translate-all.h"
|
2022-08-11 22:48:03 +02:00
|
|
|
#include "exec/translator.h"
|
2023-03-03 03:57:43 +01:00
|
|
|
#include "exec/tb-flush.h"
|
2015-04-22 23:50:52 +02:00
|
|
|
#include "qemu/bitmap.h"
|
2019-04-17 21:17:52 +02:00
|
|
|
#include "qemu/qemu-print.h"
|
tcg: drop global lock during TCG code execution
This finally allows TCG to benefit from the iothread introduction: Drop
the global mutex while running pure TCG CPU code. Reacquire the lock
when entering MMIO or PIO emulation, or when leaving the TCG loop.
We have to revert a few optimization for the current TCG threading
model, namely kicking the TCG thread in qemu_mutex_lock_iothread and not
kicking it in qemu_cpu_kick. We also need to disable RAM block
reordering until we have a more efficient locking mechanism at hand.
Still, a Linux x86 UP guest and my Musicpal ARM model boot fine here.
These numbers demonstrate where we gain something:
20338 jan 20 0 331m 75m 6904 R 99 0.9 0:50.95 qemu-system-arm
20337 jan 20 0 331m 75m 6904 S 20 0.9 0:26.50 qemu-system-arm
The guest CPU was fully loaded, but the iothread could still run mostly
independent on a second core. Without the patch we don't get beyond
32206 jan 20 0 330m 73m 7036 R 82 0.9 1:06.00 qemu-system-arm
32204 jan 20 0 330m 73m 7036 S 21 0.9 0:17.03 qemu-system-arm
We don't benefit significantly, though, when the guest is not fully
loading a host CPU.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Message-Id: <1439220437-23957-10-git-send-email-fred.konrad@greensocs.com>
[FK: Rebase, fix qemu_devices_reset deadlock, rm address_space_* mutex]
Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com>
[EGC: fixed iothread lock for cpu-exec IRQ handling]
Signed-off-by: Emilio G. Cota <cota@braap.org>
[AJB: -smp single-threaded fix, clean commit msg, BQL fixes]
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Reviewed-by: Pranith Kumar <bobby.prani@gmail.com>
[PM: target-arm changes]
Acked-by: Peter Maydell <peter.maydell@linaro.org>
2017-02-23 19:29:11 +01:00
|
|
|
#include "qemu/main-loop.h"
|
2022-02-08 21:08:55 +01:00
|
|
|
#include "qemu/cacheinfo.h"
|
2023-03-03 09:49:48 +01:00
|
|
|
#include "qemu/timer.h"
|
2016-01-07 14:55:28 +01:00
|
|
|
#include "exec/log.h"
|
2017-03-03 12:01:16 +01:00
|
|
|
#include "sysemu/cpus.h"
|
2020-08-19 13:17:19 +02:00
|
|
|
#include "sysemu/cpu-timers.h"
|
2019-05-23 16:35:05 +02:00
|
|
|
#include "sysemu/tcg.h"
|
2020-10-29 04:14:54 +01:00
|
|
|
#include "qapi/error.h"
|
2021-02-13 14:03:13 +01:00
|
|
|
#include "hw/core/tcg-cpu-ops.h"
|
2022-08-15 22:13:05 +02:00
|
|
|
#include "tb-jmp-cache.h"
|
2021-05-24 19:04:53 +02:00
|
|
|
#include "tb-hash.h"
|
|
|
|
#include "tb-context.h"
|
2023-09-14 20:57:15 +02:00
|
|
|
#include "internal-common.h"
|
2023-09-14 20:57:14 +02:00
|
|
|
#include "internal-target.h"
|
2023-01-12 16:20:13 +01:00
|
|
|
#include "perf.h"
|
2023-04-01 06:30:31 +02:00
|
|
|
#include "tcg/insn-start-words.h"
|
2012-12-02 17:04:43 +01:00
|
|
|
|
2017-06-24 02:04:43 +02:00
|
|
|
TBContext tb_ctx;
|
2003-06-15 21:58:51 +02:00
|
|
|
|
2023-03-08 21:24:41 +01:00
|
|
|
/*
|
|
|
|
* Encode VAL as a signed leb128 sequence at P.
|
|
|
|
* Return P incremented past the encoded value.
|
|
|
|
*/
|
|
|
|
static uint8_t *encode_sleb128(uint8_t *p, int64_t val)
|
2015-09-02 04:11:45 +02:00
|
|
|
{
|
|
|
|
int more, byte;
|
|
|
|
|
|
|
|
do {
|
|
|
|
byte = val & 0x7f;
|
|
|
|
val >>= 7;
|
|
|
|
more = !((val == 0 && (byte & 0x40) == 0)
|
|
|
|
|| (val == -1 && (byte & 0x40) != 0));
|
|
|
|
if (more) {
|
|
|
|
byte |= 0x80;
|
|
|
|
}
|
|
|
|
*p++ = byte;
|
|
|
|
} while (more);
|
|
|
|
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2023-03-08 21:24:41 +01:00
|
|
|
/*
|
|
|
|
* Decode a signed leb128 sequence at *PP; increment *PP past the
|
|
|
|
* decoded value. Return the decoded value.
|
|
|
|
*/
|
|
|
|
static int64_t decode_sleb128(const uint8_t **pp)
|
2015-09-02 04:11:45 +02:00
|
|
|
{
|
2020-10-28 20:05:44 +01:00
|
|
|
const uint8_t *p = *pp;
|
2023-03-08 21:24:41 +01:00
|
|
|
int64_t val = 0;
|
2015-09-02 04:11:45 +02:00
|
|
|
int byte, shift = 0;
|
|
|
|
|
|
|
|
do {
|
|
|
|
byte = *p++;
|
2023-03-08 21:24:41 +01:00
|
|
|
val |= (int64_t)(byte & 0x7f) << shift;
|
2015-09-02 04:11:45 +02:00
|
|
|
shift += 7;
|
|
|
|
} while (byte & 0x80);
|
|
|
|
if (shift < TARGET_LONG_BITS && (byte & 0x40)) {
|
2023-03-08 21:24:41 +01:00
|
|
|
val |= -(int64_t)1 << shift;
|
2015-09-02 04:11:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
*pp = p;
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Encode the data collected about the instructions while compiling TB.
|
|
|
|
Place the data at BLOCK, and return the number of bytes consumed.
|
|
|
|
|
2017-10-19 00:01:42 +02:00
|
|
|
The logical table consists of TARGET_INSN_START_WORDS target_ulong's,
|
2015-09-02 04:11:45 +02:00
|
|
|
which come from the target's insn_start data, followed by a uintptr_t
|
|
|
|
which comes from the host pc of the end of the code implementing the insn.
|
|
|
|
|
|
|
|
Each line of the table is encoded as sleb128 deltas from the previous
|
2017-07-12 06:08:21 +02:00
|
|
|
line. The seed for the first line is { tb->pc, 0..., tb->tc.ptr }.
|
2015-09-02 04:11:45 +02:00
|
|
|
That is, the first column is seeded with the guest pc, the last column
|
|
|
|
with the host pc, and the middle columns with zeros. */
|
|
|
|
|
|
|
|
static int encode_search(TranslationBlock *tb, uint8_t *block)
|
|
|
|
{
|
2017-07-12 23:15:52 +02:00
|
|
|
uint8_t *highwater = tcg_ctx->code_gen_highwater;
|
2023-04-01 06:30:31 +02:00
|
|
|
uint64_t *insn_data = tcg_ctx->gen_insn_data;
|
|
|
|
uint16_t *insn_end_off = tcg_ctx->gen_insn_end_off;
|
2015-09-02 04:11:45 +02:00
|
|
|
uint8_t *p = block;
|
|
|
|
int i, j, n;
|
|
|
|
|
|
|
|
for (i = 0, n = tb->icount; i < n; ++i) {
|
2023-04-01 06:30:31 +02:00
|
|
|
uint64_t prev, curr;
|
2015-09-02 04:11:45 +02:00
|
|
|
|
|
|
|
for (j = 0; j < TARGET_INSN_START_WORDS; ++j) {
|
|
|
|
if (i == 0) {
|
2023-02-27 14:51:47 +01:00
|
|
|
prev = (!(tb_cflags(tb) & CF_PCREL) && j == 0 ? tb->pc : 0);
|
2015-09-02 04:11:45 +02:00
|
|
|
} else {
|
2023-04-01 06:30:31 +02:00
|
|
|
prev = insn_data[(i - 1) * TARGET_INSN_START_WORDS + j];
|
2015-09-02 04:11:45 +02:00
|
|
|
}
|
2023-04-01 06:30:31 +02:00
|
|
|
curr = insn_data[i * TARGET_INSN_START_WORDS + j];
|
|
|
|
p = encode_sleb128(p, curr - prev);
|
2015-09-02 04:11:45 +02:00
|
|
|
}
|
2023-04-01 06:30:31 +02:00
|
|
|
prev = (i == 0 ? 0 : insn_end_off[i - 1]);
|
|
|
|
curr = insn_end_off[i];
|
|
|
|
p = encode_sleb128(p, curr - prev);
|
2015-09-22 22:01:15 +02:00
|
|
|
|
|
|
|
/* Test for (pending) buffer overflow. The assumption is that any
|
|
|
|
one row beginning below the high water mark cannot overrun
|
|
|
|
the buffer completely. Thus we can test for overflow after
|
|
|
|
encoding a row without having to check during encoding. */
|
|
|
|
if (unlikely(p > highwater)) {
|
|
|
|
return -1;
|
|
|
|
}
|
2015-09-02 04:11:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return p - block;
|
|
|
|
}
|
|
|
|
|
2022-10-24 14:15:04 +02:00
|
|
|
static int cpu_unwind_data_from_tb(TranslationBlock *tb, uintptr_t host_pc,
|
|
|
|
uint64_t *data)
|
2003-06-15 21:58:51 +02:00
|
|
|
{
|
2022-10-24 14:15:04 +02:00
|
|
|
uintptr_t iter_pc = (uintptr_t)tb->tc.ptr;
|
2020-10-28 20:05:44 +01:00
|
|
|
const uint8_t *p = tb->tc.ptr + tb->tc.size;
|
2015-09-02 04:11:45 +02:00
|
|
|
int i, j, num_insns = tb->icount;
|
2008-02-01 11:50:11 +01:00
|
|
|
|
2022-10-24 14:15:04 +02:00
|
|
|
host_pc -= GETPC_ADJ;
|
2016-07-26 02:39:16 +02:00
|
|
|
|
2022-10-24 14:15:04 +02:00
|
|
|
if (host_pc < iter_pc) {
|
2015-09-02 04:11:45 +02:00
|
|
|
return -1;
|
|
|
|
}
|
2003-06-15 21:58:51 +02:00
|
|
|
|
2022-10-24 14:15:04 +02:00
|
|
|
memset(data, 0, sizeof(uint64_t) * TARGET_INSN_START_WORDS);
|
2023-02-27 14:51:39 +01:00
|
|
|
if (!(tb_cflags(tb) & CF_PCREL)) {
|
2023-02-27 14:51:47 +01:00
|
|
|
data[0] = tb->pc;
|
2022-08-12 18:53:53 +02:00
|
|
|
}
|
|
|
|
|
2022-10-24 14:15:04 +02:00
|
|
|
/*
|
|
|
|
* Reconstruct the stored insn data while looking for the point
|
|
|
|
* at which the end of the insn exceeds host_pc.
|
|
|
|
*/
|
2015-09-02 04:11:45 +02:00
|
|
|
for (i = 0; i < num_insns; ++i) {
|
|
|
|
for (j = 0; j < TARGET_INSN_START_WORDS; ++j) {
|
|
|
|
data[j] += decode_sleb128(&p);
|
|
|
|
}
|
2022-10-24 14:15:04 +02:00
|
|
|
iter_pc += decode_sleb128(&p);
|
|
|
|
if (iter_pc > host_pc) {
|
|
|
|
return num_insns - i;
|
2015-09-02 04:11:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1;
|
2022-10-24 14:15:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2022-10-24 15:12:56 +02:00
|
|
|
* The cpu state corresponding to 'host_pc' is restored in
|
|
|
|
* preparation for exiting the TB.
|
2022-10-24 14:15:04 +02:00
|
|
|
*/
|
|
|
|
void cpu_restore_state_from_tb(CPUState *cpu, TranslationBlock *tb,
|
2022-10-24 15:12:56 +02:00
|
|
|
uintptr_t host_pc)
|
2022-10-24 14:15:04 +02:00
|
|
|
{
|
|
|
|
uint64_t data[TARGET_INSN_START_WORDS];
|
|
|
|
int insns_left = cpu_unwind_data_from_tb(tb, host_pc, data);
|
|
|
|
|
|
|
|
if (insns_left < 0) {
|
|
|
|
return;
|
|
|
|
}
|
2007-09-17 10:09:54 +02:00
|
|
|
|
2022-10-24 15:12:56 +02:00
|
|
|
if (tb_cflags(tb) & CF_USE_ICOUNT) {
|
2020-08-19 13:17:19 +02:00
|
|
|
assert(icount_enabled());
|
2022-10-24 14:15:04 +02:00
|
|
|
/*
|
|
|
|
* Reset the cycle counter to the start of the block and
|
|
|
|
* shift if to the number of actually executed instructions.
|
|
|
|
*/
|
2023-09-14 00:46:45 +02:00
|
|
|
cpu->neg.icount_decr.u16.low += insns_left;
|
2008-06-29 03:03:05 +02:00
|
|
|
}
|
2022-10-24 11:43:40 +02:00
|
|
|
|
2022-10-24 13:17:39 +02:00
|
|
|
cpu->cc->tcg_ops->restore_state_to_opc(cpu, tb, data);
|
2003-06-15 21:58:51 +02:00
|
|
|
}
|
2012-12-02 17:04:43 +01:00
|
|
|
|
2022-10-24 15:09:57 +02:00
|
|
|
bool cpu_restore_state(CPUState *cpu, uintptr_t host_pc)
|
2012-12-04 21:16:07 +01:00
|
|
|
{
|
2020-10-31 02:59:09 +01:00
|
|
|
/*
|
2020-10-28 20:05:44 +01:00
|
|
|
* The host_pc has to be in the rx region of the code buffer.
|
2020-10-31 02:59:09 +01:00
|
|
|
* If it is not we will not be able to resolve it here.
|
|
|
|
* The two cases where host_pc will not be correct are:
|
2017-11-13 14:55:27 +01:00
|
|
|
*
|
|
|
|
* - fault during translation (instruction fetch)
|
|
|
|
* - fault from helper (not using GETPC() macro)
|
|
|
|
*
|
2017-08-05 05:46:31 +02:00
|
|
|
* Either way we need return early as we can't resolve it here.
|
2017-03-02 11:31:32 +01:00
|
|
|
*/
|
2020-10-28 20:05:44 +01:00
|
|
|
if (in_code_gen_buffer((const void *)(host_pc - tcg_splitwx_diff))) {
|
2020-10-31 02:59:09 +01:00
|
|
|
TranslationBlock *tb = tcg_tb_lookup(host_pc);
|
2017-11-13 14:55:27 +01:00
|
|
|
if (tb) {
|
2022-10-24 15:12:56 +02:00
|
|
|
cpu_restore_state_from_tb(cpu, tb, host_pc);
|
2020-10-31 02:59:09 +01:00
|
|
|
return true;
|
2014-11-26 11:40:16 +01:00
|
|
|
}
|
2012-12-04 21:16:07 +01:00
|
|
|
}
|
2020-10-31 02:59:09 +01:00
|
|
|
return false;
|
2012-12-04 21:16:07 +01:00
|
|
|
}
|
|
|
|
|
2022-10-24 14:15:04 +02:00
|
|
|
bool cpu_unwind_state_data(CPUState *cpu, uintptr_t host_pc, uint64_t *data)
|
|
|
|
{
|
|
|
|
if (in_code_gen_buffer((const void *)(host_pc - tcg_splitwx_diff))) {
|
|
|
|
TranslationBlock *tb = tcg_tb_lookup(host_pc);
|
|
|
|
if (tb) {
|
|
|
|
return cpu_unwind_data_from_tb(tb, host_pc, data) >= 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2021-03-10 00:42:16 +01:00
|
|
|
void page_init(void)
|
2014-01-17 19:12:07 +01:00
|
|
|
{
|
|
|
|
page_size_init();
|
2016-10-24 17:26:49 +02:00
|
|
|
page_table_config_init();
|
2012-12-02 17:04:43 +01:00
|
|
|
}
|
|
|
|
|
2022-11-06 01:12:33 +01:00
|
|
|
/*
|
|
|
|
* Isolate the portion of code gen which can setjmp/longjmp.
|
|
|
|
* Return the size of the generated code, or negative on error.
|
|
|
|
*/
|
|
|
|
static int setjmp_gen_code(CPUArchState *env, TranslationBlock *tb,
|
2023-06-21 15:56:23 +02:00
|
|
|
vaddr pc, void *host_pc,
|
2022-11-06 01:12:33 +01:00
|
|
|
int *max_insns, int64_t *ti)
|
|
|
|
{
|
|
|
|
int ret = sigsetjmp(tcg_ctx->jmp_trans, 0);
|
|
|
|
if (unlikely(ret != 0)) {
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
tcg_func_start(tcg_ctx);
|
|
|
|
|
|
|
|
tcg_ctx->cpu = env_cpu(env);
|
2023-01-29 02:19:22 +01:00
|
|
|
gen_intermediate_code(env_cpu(env), tb, max_insns, pc, host_pc);
|
2022-11-06 01:12:33 +01:00
|
|
|
assert(tb->size != 0);
|
|
|
|
tcg_ctx->cpu = NULL;
|
|
|
|
*max_insns = tb->icount;
|
|
|
|
|
|
|
|
return tcg_gen_code(tcg_ctx, tb, pc);
|
|
|
|
}
|
|
|
|
|
2015-08-11 10:59:50 +02:00
|
|
|
/* Called with mmap_lock held for user mode emulation. */
|
2013-09-01 17:43:17 +02:00
|
|
|
TranslationBlock *tb_gen_code(CPUState *cpu,
|
2023-06-21 15:56:23 +02:00
|
|
|
vaddr pc, uint64_t cs_base,
|
2016-04-07 19:19:22 +02:00
|
|
|
uint32_t flags, int cflags)
|
2012-12-02 17:04:43 +01:00
|
|
|
{
|
2023-09-14 02:22:49 +02:00
|
|
|
CPUArchState *env = cpu_env(cpu);
|
2017-08-01 21:40:16 +02:00
|
|
|
TranslationBlock *tb, *existing_tb;
|
2023-07-06 18:55:48 +02:00
|
|
|
tb_page_addr_t phys_pc, phys_p2;
|
2015-08-28 03:17:40 +02:00
|
|
|
tcg_insn_unit *gen_code_buf;
|
2019-04-16 08:54:54 +02:00
|
|
|
int gen_code_size, search_size, max_insns;
|
2022-11-06 01:12:33 +01:00
|
|
|
int64_t ti;
|
2022-08-11 22:48:03 +02:00
|
|
|
void *host_pc;
|
2019-10-23 18:20:47 +02:00
|
|
|
|
2016-10-27 17:10:05 +02:00
|
|
|
assert_memory_lock();
|
2021-01-13 04:28:07 +01:00
|
|
|
qemu_thread_jit_write();
|
2012-12-02 17:04:43 +01:00
|
|
|
|
2022-08-11 22:48:03 +02:00
|
|
|
phys_pc = get_page_addr_code_hostp(env, pc, &host_pc);
|
2015-09-22 22:01:15 +02:00
|
|
|
|
2018-08-14 18:17:19 +02:00
|
|
|
if (phys_pc == -1) {
|
2021-02-13 14:03:20 +01:00
|
|
|
/* Generate a one-shot TB with 1 insn in it */
|
2021-04-15 18:24:53 +02:00
|
|
|
cflags = (cflags & ~CF_COUNT_MASK) | CF_LAST_IO | 1;
|
2018-08-14 18:17:19 +02:00
|
|
|
}
|
|
|
|
|
2019-04-16 08:54:54 +02:00
|
|
|
max_insns = cflags & CF_COUNT_MASK;
|
|
|
|
if (max_insns == 0) {
|
|
|
|
max_insns = TCG_MAX_INSNS;
|
|
|
|
}
|
2021-07-18 00:18:39 +02:00
|
|
|
QEMU_BUILD_BUG_ON(CF_COUNT_MASK + 1 != TCG_MAX_INSNS);
|
|
|
|
|
tcg: introduce regions to split code_gen_buffer
This is groundwork for supporting multiple TCG contexts.
The naive solution here is to split code_gen_buffer statically
among the TCG threads; this however results in poor utilization
if translation needs are different across TCG threads.
What we do here is to add an extra layer of indirection, assigning
regions that act just like pages do in virtual memory allocation.
(BTW if you are wondering about the chosen naming, I did not want
to use blocks or pages because those are already heavily used in QEMU).
We use a global lock to serialize allocations as well as statistics
reporting (we now export the size of the used code_gen_buffer with
tcg_code_size()). Note that for the allocator we could just use
a counter and atomic_inc; however, that would complicate the gathering
of tcg_code_size()-like stats. So given that the region operations are
not a fast path, a lock seems the most reasonable choice.
The effectiveness of this approach is clear after seeing some numbers.
I used the bootup+shutdown of debian-arm with '-tb-size 80' as a benchmark.
Note that I'm evaluating this after enabling per-thread TCG (which
is done by a subsequent commit).
* -smp 1, 1 region (entire buffer):
qemu: flush code_size=83885014 nb_tbs=154739 avg_tb_size=357
qemu: flush code_size=83884902 nb_tbs=153136 avg_tb_size=363
qemu: flush code_size=83885014 nb_tbs=152777 avg_tb_size=364
qemu: flush code_size=83884950 nb_tbs=150057 avg_tb_size=373
qemu: flush code_size=83884998 nb_tbs=150234 avg_tb_size=373
qemu: flush code_size=83885014 nb_tbs=154009 avg_tb_size=360
qemu: flush code_size=83885014 nb_tbs=151007 avg_tb_size=370
qemu: flush code_size=83885014 nb_tbs=151816 avg_tb_size=367
That is, 8 flushes.
* -smp 8, 32 regions (80/32 MB per region) [i.e. this patch]:
qemu: flush code_size=76328008 nb_tbs=141040 avg_tb_size=356
qemu: flush code_size=75366534 nb_tbs=138000 avg_tb_size=361
qemu: flush code_size=76864546 nb_tbs=140653 avg_tb_size=361
qemu: flush code_size=76309084 nb_tbs=135945 avg_tb_size=375
qemu: flush code_size=74581856 nb_tbs=132909 avg_tb_size=375
qemu: flush code_size=73927256 nb_tbs=135616 avg_tb_size=360
qemu: flush code_size=78629426 nb_tbs=142896 avg_tb_size=365
qemu: flush code_size=76667052 nb_tbs=138508 avg_tb_size=368
Again, 8 flushes. Note how buffer utilization is not 100%, but it
is close. Smaller region sizes would yield higher utilization,
but we want region allocation to be rare (it acquires a lock), so
we do not want to go too small.
* -smp 8, static partitioning of 8 regions (10 MB per region):
qemu: flush code_size=21936504 nb_tbs=40570 avg_tb_size=354
qemu: flush code_size=11472174 nb_tbs=20633 avg_tb_size=370
qemu: flush code_size=11603976 nb_tbs=21059 avg_tb_size=365
qemu: flush code_size=23254872 nb_tbs=41243 avg_tb_size=377
qemu: flush code_size=28289496 nb_tbs=52057 avg_tb_size=358
qemu: flush code_size=43605160 nb_tbs=78896 avg_tb_size=367
qemu: flush code_size=45166552 nb_tbs=82158 avg_tb_size=364
qemu: flush code_size=63289640 nb_tbs=116494 avg_tb_size=358
qemu: flush code_size=51389960 nb_tbs=93937 avg_tb_size=362
qemu: flush code_size=59665928 nb_tbs=107063 avg_tb_size=372
qemu: flush code_size=38380824 nb_tbs=68597 avg_tb_size=374
qemu: flush code_size=44884568 nb_tbs=79901 avg_tb_size=376
qemu: flush code_size=50782632 nb_tbs=90681 avg_tb_size=374
qemu: flush code_size=39848888 nb_tbs=71433 avg_tb_size=372
qemu: flush code_size=64708840 nb_tbs=119052 avg_tb_size=359
qemu: flush code_size=49830008 nb_tbs=90992 avg_tb_size=362
qemu: flush code_size=68372408 nb_tbs=123442 avg_tb_size=368
qemu: flush code_size=33555560 nb_tbs=59514 avg_tb_size=378
qemu: flush code_size=44748344 nb_tbs=80974 avg_tb_size=367
qemu: flush code_size=37104248 nb_tbs=67609 avg_tb_size=364
That is, 20 flushes. Note how a static partitioning approach uses
the code buffer poorly, leading to many unnecessary flushes.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
2017-07-08 01:24:20 +02:00
|
|
|
buffer_overflow:
|
2023-07-06 18:55:48 +02:00
|
|
|
assert_no_pages_locked();
|
2019-10-23 18:20:47 +02:00
|
|
|
tb = tcg_tb_alloc(tcg_ctx);
|
2015-09-22 22:01:15 +02:00
|
|
|
if (unlikely(!tb)) {
|
2012-12-02 17:04:43 +01:00
|
|
|
/* flush must be done */
|
2015-06-24 04:31:15 +02:00
|
|
|
tb_flush(cpu);
|
2016-08-02 19:27:43 +02:00
|
|
|
mmap_unlock();
|
2017-01-26 13:34:18 +01:00
|
|
|
/* Make the execution loop process the flush as soon as possible. */
|
|
|
|
cpu->exception_index = EXCP_INTERRUPT;
|
2016-08-02 19:27:43 +02:00
|
|
|
cpu_loop_exit(cpu);
|
2012-12-02 17:04:43 +01:00
|
|
|
}
|
2015-08-28 03:17:40 +02:00
|
|
|
|
2017-07-12 23:15:52 +02:00
|
|
|
gen_code_buf = tcg_ctx->code_gen_ptr;
|
2020-10-28 20:05:44 +01:00
|
|
|
tb->tc.ptr = tcg_splitwx_to_rx(gen_code_buf);
|
2023-02-27 14:51:39 +01:00
|
|
|
if (!(cflags & CF_PCREL)) {
|
|
|
|
tb->pc = pc;
|
|
|
|
}
|
2012-12-02 17:04:43 +01:00
|
|
|
tb->cs_base = cs_base;
|
|
|
|
tb->flags = flags;
|
|
|
|
tb->cflags = cflags;
|
2022-09-20 13:21:40 +02:00
|
|
|
tb_set_page_addr0(tb, phys_pc);
|
|
|
|
tb_set_page_addr1(tb, -1);
|
2023-07-06 18:55:48 +02:00
|
|
|
if (phys_pc != -1) {
|
|
|
|
tb_lock_page0(phys_pc);
|
|
|
|
}
|
|
|
|
|
2022-11-27 03:39:55 +01:00
|
|
|
tcg_ctx->gen_tb = tb;
|
2023-04-28 10:16:01 +02:00
|
|
|
tcg_ctx->addr_type = TARGET_LONG_BITS == 32 ? TCG_TYPE_I32 : TCG_TYPE_I64;
|
2023-03-24 05:06:22 +01:00
|
|
|
#ifdef CONFIG_SOFTMMU
|
|
|
|
tcg_ctx->page_bits = TARGET_PAGE_BITS;
|
|
|
|
tcg_ctx->page_mask = TARGET_PAGE_MASK;
|
2023-04-02 19:07:57 +02:00
|
|
|
tcg_ctx->tlb_dyn_max_bits = CPU_TLB_DYN_MAX_BITS;
|
2023-03-24 05:06:22 +01:00
|
|
|
#endif
|
2023-04-01 06:30:31 +02:00
|
|
|
tcg_ctx->insn_start_words = TARGET_INSN_START_WORDS;
|
2023-04-01 07:56:55 +02:00
|
|
|
#ifdef TCG_GUEST_DEFAULT_MO
|
|
|
|
tcg_ctx->guest_mo = TCG_GUEST_DEFAULT_MO;
|
|
|
|
#else
|
|
|
|
tcg_ctx->guest_mo = TCG_MO_ALL;
|
|
|
|
#endif
|
2023-03-10 02:46:16 +01:00
|
|
|
|
2023-07-06 18:55:48 +02:00
|
|
|
restart_translate:
|
2022-08-15 22:16:06 +02:00
|
|
|
trace_translate_block(tb, pc, tb->tc.ptr);
|
2015-08-28 03:17:40 +02:00
|
|
|
|
2022-11-06 01:12:33 +01:00
|
|
|
gen_code_size = setjmp_gen_code(env, tb, pc, host_pc, &max_insns, &ti);
|
2015-09-22 22:01:15 +02:00
|
|
|
if (unlikely(gen_code_size < 0)) {
|
2019-04-16 10:06:39 +02:00
|
|
|
switch (gen_code_size) {
|
|
|
|
case -1:
|
|
|
|
/*
|
|
|
|
* Overflow of code_gen_buffer, or the current slice of it.
|
|
|
|
*
|
|
|
|
* TODO: We don't need to re-do gen_intermediate_code, nor
|
|
|
|
* should we re-do the tcg optimization currently hidden
|
|
|
|
* inside tcg_gen_code. All that should be required is to
|
|
|
|
* flush the TBs, allocate a new TB, re-initialize it per
|
|
|
|
* above, and re-do the actual code generation.
|
|
|
|
*/
|
2021-01-23 23:11:17 +01:00
|
|
|
qemu_log_mask(CPU_LOG_TB_OP | CPU_LOG_TB_OP_OPT,
|
|
|
|
"Restarting code generation for "
|
|
|
|
"code_gen_buffer overflow\n");
|
2023-07-06 18:55:48 +02:00
|
|
|
tb_unlock_pages(tb);
|
2023-07-26 21:58:08 +02:00
|
|
|
tcg_ctx->gen_tb = NULL;
|
2019-04-16 10:06:39 +02:00
|
|
|
goto buffer_overflow;
|
|
|
|
|
|
|
|
case -2:
|
|
|
|
/*
|
|
|
|
* The code generated for the TranslationBlock is too large.
|
|
|
|
* The maximum size allowed by the unwind info is 64k.
|
|
|
|
* There may be stricter constraints from relocations
|
|
|
|
* in the tcg backend.
|
|
|
|
*
|
|
|
|
* Try again with half as many insns as we attempted this time.
|
|
|
|
* If a single insn overflows, there's a bug somewhere...
|
|
|
|
*/
|
|
|
|
assert(max_insns > 1);
|
|
|
|
max_insns /= 2;
|
2021-01-23 23:11:17 +01:00
|
|
|
qemu_log_mask(CPU_LOG_TB_OP | CPU_LOG_TB_OP_OPT,
|
|
|
|
"Restarting code generation with "
|
|
|
|
"smaller translation block (max %d insns)\n",
|
|
|
|
max_insns);
|
2023-07-06 18:55:48 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The half-sized TB may not cross pages.
|
|
|
|
* TODO: Fix all targets that cross pages except with
|
|
|
|
* the first insn, at which point this can't be reached.
|
|
|
|
*/
|
|
|
|
phys_p2 = tb_page_addr1(tb);
|
|
|
|
if (unlikely(phys_p2 != -1)) {
|
|
|
|
tb_unlock_page1(phys_pc, phys_p2);
|
|
|
|
tb_set_page_addr1(tb, -1);
|
|
|
|
}
|
|
|
|
goto restart_translate;
|
|
|
|
|
|
|
|
case -3:
|
|
|
|
/*
|
|
|
|
* We had a page lock ordering problem. In order to avoid
|
|
|
|
* deadlock we had to drop the lock on page0, which means
|
|
|
|
* that everything we translated so far is compromised.
|
|
|
|
* Restart with locks held on both pages.
|
|
|
|
*/
|
|
|
|
qemu_log_mask(CPU_LOG_TB_OP | CPU_LOG_TB_OP_OPT,
|
|
|
|
"Restarting code generation with re-locked pages");
|
|
|
|
goto restart_translate;
|
2019-04-16 10:06:39 +02:00
|
|
|
|
|
|
|
default:
|
|
|
|
g_assert_not_reached();
|
|
|
|
}
|
2015-09-22 22:01:15 +02:00
|
|
|
}
|
2023-07-06 18:55:48 +02:00
|
|
|
tcg_ctx->gen_tb = NULL;
|
|
|
|
|
2015-09-02 04:11:45 +02:00
|
|
|
search_size = encode_search(tb, (void *)gen_code_buf + gen_code_size);
|
2015-09-22 22:01:15 +02:00
|
|
|
if (unlikely(search_size < 0)) {
|
2023-07-06 18:55:48 +02:00
|
|
|
tb_unlock_pages(tb);
|
2015-09-22 22:01:15 +02:00
|
|
|
goto buffer_overflow;
|
|
|
|
}
|
translate-all: use a binary search tree to track TBs in TBContext
This is a prerequisite for supporting multiple TCG contexts, since
we will have threads generating code in separate regions of
code_gen_buffer.
For this we need a new field (.size) in struct tb_tc to keep
track of the size of the translated code. This field uses a size_t
to avoid adding a hole to the struct, although really an unsigned
int would have been enough.
The comparison function we use is optimized for the common case:
insertions. Profiling shows that upon booting debian-arm, 98%
of comparisons are between existing tb's (i.e. a->size and b->size
are both !0), which happens during insertions (and removals, but
those are rare). The remaining cases are lookups. From reading the glib
sources we see that the first key is always the lookup key. However,
the code does not assume this to always be the case because this
behaviour is not guaranteed in the glib docs. However, we embed
this knowledge in the code as a branch hint for the compiler.
Note that tb_free does not free space in the code_gen_buffer anymore,
since we cannot easily know whether the tb is the last one inserted
in code_gen_buffer. The next patch in this series renames tb_free
to tb_remove to reflect this.
Performance-wise, lookups in tb_find_pc are the same as before:
O(log n). However, insertions are O(log n) instead of O(1), which
results in a small slowdown when booting debian-arm:
Performance counter stats for 'build/arm-softmmu/qemu-system-arm \
-machine type=virt -nographic -smp 1 -m 4096 \
-netdev user,id=unet,hostfwd=tcp::2222-:22 \
-device virtio-net-device,netdev=unet \
-drive file=img/arm/jessie-arm32.qcow2,id=myblock,index=0,if=none \
-device virtio-blk-device,drive=myblock \
-kernel img/arm/aarch32-current-linux-kernel-only.img \
-append console=ttyAMA0 root=/dev/vda1 \
-name arm,debug-threads=on -smp 1' (10 runs):
- Before:
8048.598422 task-clock (msec) # 0.931 CPUs utilized ( +- 0.28% )
16,974 context-switches # 0.002 M/sec ( +- 0.12% )
0 cpu-migrations # 0.000 K/sec
10,125 page-faults # 0.001 M/sec ( +- 1.23% )
35,144,901,879 cycles # 4.367 GHz ( +- 0.14% )
<not supported> stalled-cycles-frontend
<not supported> stalled-cycles-backend
65,758,252,643 instructions # 1.87 insns per cycle ( +- 0.33% )
10,871,298,668 branches # 1350.707 M/sec ( +- 0.41% )
192,322,212 branch-misses # 1.77% of all branches ( +- 0.32% )
8.640869419 seconds time elapsed ( +- 0.57% )
- After:
8146.242027 task-clock (msec) # 0.923 CPUs utilized ( +- 1.23% )
17,016 context-switches # 0.002 M/sec ( +- 0.40% )
0 cpu-migrations # 0.000 K/sec
18,769 page-faults # 0.002 M/sec ( +- 0.45% )
35,660,956,120 cycles # 4.378 GHz ( +- 1.22% )
<not supported> stalled-cycles-frontend
<not supported> stalled-cycles-backend
65,095,366,607 instructions # 1.83 insns per cycle ( +- 1.73% )
10,803,480,261 branches # 1326.192 M/sec ( +- 1.95% )
195,601,289 branch-misses # 1.81% of all branches ( +- 0.39% )
8.828660235 seconds time elapsed ( +- 0.38% )
Reviewed-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
2017-06-24 01:00:11 +02:00
|
|
|
tb->tc.size = gen_code_size;
|
2015-08-28 03:17:40 +02:00
|
|
|
|
2023-01-12 16:20:13 +01:00
|
|
|
/*
|
2023-02-27 14:51:39 +01:00
|
|
|
* For CF_PCREL, attribute all executions of the generated code
|
|
|
|
* to its first mapping.
|
2023-01-12 16:20:13 +01:00
|
|
|
*/
|
|
|
|
perf_report_code(pc, tb, tcg_splitwx_to_rx(gen_code_buf));
|
|
|
|
|
2016-03-15 15:30:21 +01:00
|
|
|
if (qemu_loglevel_mask(CPU_LOG_TB_OUT_ASM) &&
|
2022-08-15 22:16:06 +02:00
|
|
|
qemu_log_in_addr_range(pc)) {
|
2022-04-17 20:29:47 +02:00
|
|
|
FILE *logfile = qemu_log_trylock();
|
2022-04-17 20:29:49 +02:00
|
|
|
if (logfile) {
|
|
|
|
int code_size, data_size;
|
|
|
|
const tcg_target_ulong *rx_data_gen_ptr;
|
|
|
|
size_t chunk_start;
|
|
|
|
int insn = 0;
|
|
|
|
|
|
|
|
if (tcg_ctx->data_gen_ptr) {
|
|
|
|
rx_data_gen_ptr = tcg_splitwx_to_rx(tcg_ctx->data_gen_ptr);
|
|
|
|
code_size = (const void *)rx_data_gen_ptr - tb->tc.ptr;
|
|
|
|
data_size = gen_code_size - code_size;
|
|
|
|
} else {
|
|
|
|
rx_data_gen_ptr = 0;
|
|
|
|
code_size = gen_code_size;
|
|
|
|
data_size = 0;
|
|
|
|
}
|
2017-07-30 22:13:21 +02:00
|
|
|
|
2022-04-17 20:29:49 +02:00
|
|
|
/* Dump header and the first instruction */
|
|
|
|
fprintf(logfile, "OUT: [size=%d]\n", gen_code_size);
|
|
|
|
fprintf(logfile,
|
2023-03-08 21:24:41 +01:00
|
|
|
" -- guest addr 0x%016" PRIx64 " + tb prologue\n",
|
2023-04-01 06:30:31 +02:00
|
|
|
tcg_ctx->gen_insn_data[insn * TARGET_INSN_START_WORDS]);
|
2022-04-17 20:29:49 +02:00
|
|
|
chunk_start = tcg_ctx->gen_insn_end_off[insn];
|
|
|
|
disas(logfile, tb->tc.ptr, chunk_start);
|
2017-07-30 22:13:21 +02:00
|
|
|
|
2022-04-17 20:29:49 +02:00
|
|
|
/*
|
|
|
|
* Dump each instruction chunk, wrapping up empty chunks into
|
|
|
|
* the next instruction. The whole array is offset so the
|
|
|
|
* first entry is the beginning of the 2nd instruction.
|
|
|
|
*/
|
|
|
|
while (insn < tb->icount) {
|
|
|
|
size_t chunk_end = tcg_ctx->gen_insn_end_off[insn];
|
|
|
|
if (chunk_end > chunk_start) {
|
2023-03-08 21:24:41 +01:00
|
|
|
fprintf(logfile, " -- guest addr 0x%016" PRIx64 "\n",
|
2023-04-01 06:30:31 +02:00
|
|
|
tcg_ctx->gen_insn_data[insn * TARGET_INSN_START_WORDS]);
|
2022-04-17 20:29:49 +02:00
|
|
|
disas(logfile, tb->tc.ptr + chunk_start,
|
|
|
|
chunk_end - chunk_start);
|
|
|
|
chunk_start = chunk_end;
|
|
|
|
}
|
|
|
|
insn++;
|
2020-05-13 19:51:34 +02:00
|
|
|
}
|
|
|
|
|
2022-04-17 20:29:49 +02:00
|
|
|
if (chunk_start < code_size) {
|
|
|
|
fprintf(logfile, " -- tb slow paths + alignment\n");
|
|
|
|
disas(logfile, tb->tc.ptr + chunk_start,
|
|
|
|
code_size - chunk_start);
|
|
|
|
}
|
2020-09-10 21:15:04 +02:00
|
|
|
|
2022-04-17 20:29:49 +02:00
|
|
|
/* Finally dump any data we may have after the block */
|
|
|
|
if (data_size) {
|
|
|
|
int i;
|
|
|
|
fprintf(logfile, " data: [size=%d]\n", data_size);
|
|
|
|
for (i = 0; i < data_size / sizeof(tcg_target_ulong); i++) {
|
|
|
|
if (sizeof(tcg_target_ulong) == 8) {
|
|
|
|
fprintf(logfile,
|
|
|
|
"0x%08" PRIxPTR ": .quad 0x%016" TCG_PRIlx "\n",
|
|
|
|
(uintptr_t)&rx_data_gen_ptr[i], rx_data_gen_ptr[i]);
|
|
|
|
} else if (sizeof(tcg_target_ulong) == 4) {
|
|
|
|
fprintf(logfile,
|
|
|
|
"0x%08" PRIxPTR ": .long 0x%08" TCG_PRIlx "\n",
|
|
|
|
(uintptr_t)&rx_data_gen_ptr[i], rx_data_gen_ptr[i]);
|
|
|
|
} else {
|
|
|
|
qemu_build_not_reached();
|
|
|
|
}
|
2021-05-15 12:42:02 +02:00
|
|
|
}
|
2017-07-30 22:13:21 +02:00
|
|
|
}
|
2022-04-17 20:29:49 +02:00
|
|
|
fprintf(logfile, "\n");
|
|
|
|
qemu_log_unlock(logfile);
|
2017-07-30 22:13:21 +02:00
|
|
|
}
|
2015-08-28 03:17:40 +02:00
|
|
|
}
|
|
|
|
|
2020-09-23 12:56:46 +02:00
|
|
|
qatomic_set(&tcg_ctx->code_gen_ptr, (void *)
|
2015-09-02 04:11:45 +02:00
|
|
|
ROUND_UP((uintptr_t)gen_code_buf + gen_code_size + search_size,
|
tcg: introduce regions to split code_gen_buffer
This is groundwork for supporting multiple TCG contexts.
The naive solution here is to split code_gen_buffer statically
among the TCG threads; this however results in poor utilization
if translation needs are different across TCG threads.
What we do here is to add an extra layer of indirection, assigning
regions that act just like pages do in virtual memory allocation.
(BTW if you are wondering about the chosen naming, I did not want
to use blocks or pages because those are already heavily used in QEMU).
We use a global lock to serialize allocations as well as statistics
reporting (we now export the size of the used code_gen_buffer with
tcg_code_size()). Note that for the allocator we could just use
a counter and atomic_inc; however, that would complicate the gathering
of tcg_code_size()-like stats. So given that the region operations are
not a fast path, a lock seems the most reasonable choice.
The effectiveness of this approach is clear after seeing some numbers.
I used the bootup+shutdown of debian-arm with '-tb-size 80' as a benchmark.
Note that I'm evaluating this after enabling per-thread TCG (which
is done by a subsequent commit).
* -smp 1, 1 region (entire buffer):
qemu: flush code_size=83885014 nb_tbs=154739 avg_tb_size=357
qemu: flush code_size=83884902 nb_tbs=153136 avg_tb_size=363
qemu: flush code_size=83885014 nb_tbs=152777 avg_tb_size=364
qemu: flush code_size=83884950 nb_tbs=150057 avg_tb_size=373
qemu: flush code_size=83884998 nb_tbs=150234 avg_tb_size=373
qemu: flush code_size=83885014 nb_tbs=154009 avg_tb_size=360
qemu: flush code_size=83885014 nb_tbs=151007 avg_tb_size=370
qemu: flush code_size=83885014 nb_tbs=151816 avg_tb_size=367
That is, 8 flushes.
* -smp 8, 32 regions (80/32 MB per region) [i.e. this patch]:
qemu: flush code_size=76328008 nb_tbs=141040 avg_tb_size=356
qemu: flush code_size=75366534 nb_tbs=138000 avg_tb_size=361
qemu: flush code_size=76864546 nb_tbs=140653 avg_tb_size=361
qemu: flush code_size=76309084 nb_tbs=135945 avg_tb_size=375
qemu: flush code_size=74581856 nb_tbs=132909 avg_tb_size=375
qemu: flush code_size=73927256 nb_tbs=135616 avg_tb_size=360
qemu: flush code_size=78629426 nb_tbs=142896 avg_tb_size=365
qemu: flush code_size=76667052 nb_tbs=138508 avg_tb_size=368
Again, 8 flushes. Note how buffer utilization is not 100%, but it
is close. Smaller region sizes would yield higher utilization,
but we want region allocation to be rare (it acquires a lock), so
we do not want to go too small.
* -smp 8, static partitioning of 8 regions (10 MB per region):
qemu: flush code_size=21936504 nb_tbs=40570 avg_tb_size=354
qemu: flush code_size=11472174 nb_tbs=20633 avg_tb_size=370
qemu: flush code_size=11603976 nb_tbs=21059 avg_tb_size=365
qemu: flush code_size=23254872 nb_tbs=41243 avg_tb_size=377
qemu: flush code_size=28289496 nb_tbs=52057 avg_tb_size=358
qemu: flush code_size=43605160 nb_tbs=78896 avg_tb_size=367
qemu: flush code_size=45166552 nb_tbs=82158 avg_tb_size=364
qemu: flush code_size=63289640 nb_tbs=116494 avg_tb_size=358
qemu: flush code_size=51389960 nb_tbs=93937 avg_tb_size=362
qemu: flush code_size=59665928 nb_tbs=107063 avg_tb_size=372
qemu: flush code_size=38380824 nb_tbs=68597 avg_tb_size=374
qemu: flush code_size=44884568 nb_tbs=79901 avg_tb_size=376
qemu: flush code_size=50782632 nb_tbs=90681 avg_tb_size=374
qemu: flush code_size=39848888 nb_tbs=71433 avg_tb_size=372
qemu: flush code_size=64708840 nb_tbs=119052 avg_tb_size=359
qemu: flush code_size=49830008 nb_tbs=90992 avg_tb_size=362
qemu: flush code_size=68372408 nb_tbs=123442 avg_tb_size=368
qemu: flush code_size=33555560 nb_tbs=59514 avg_tb_size=378
qemu: flush code_size=44748344 nb_tbs=80974 avg_tb_size=367
qemu: flush code_size=37104248 nb_tbs=67609 avg_tb_size=364
That is, 20 flushes. Note how a static partitioning approach uses
the code buffer poorly, leading to many unnecessary flushes.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
2017-07-08 01:24:20 +02:00
|
|
|
CODE_GEN_ALIGN));
|
2012-12-02 17:04:43 +01:00
|
|
|
|
2016-03-22 17:00:12 +01:00
|
|
|
/* init jump list */
|
translate-all: protect TB jumps with a per-destination-TB lock
This applies to both user-mode and !user-mode emulation.
Instead of relying on a global lock, protect the list of incoming
jumps with tb->jmp_lock. This lock also protects tb->cflags,
so update all tb->cflags readers outside tb->jmp_lock to use
atomic reads via tb_cflags().
In order to find the destination TB (and therefore its jmp_lock)
from the origin TB, we introduce tb->jmp_dest[].
I considered not using a linked list of jumps, which simplifies
code and makes the struct smaller. However, it unnecessarily increases
memory usage, which results in a performance decrease. See for
instance these numbers booting+shutting down debian-arm:
Time (s) Rel. err (%) Abs. err (s) Rel. slowdown (%)
------------------------------------------------------------------------------
before 20.88 0.74 0.154512 0.
after 20.81 0.38 0.079078 -0.33524904
GTree 21.02 0.28 0.058856 0.67049808
GHashTable + xxhash 21.63 1.08 0.233604 3.5919540
Using a hash table or a binary tree to keep track of the jumps
doesn't really pay off, not only due to the increased memory usage,
but also because most TBs have only 0 or 1 jumps to them. The maximum
number of jumps when booting debian-arm that I measured is 35, but
as we can see in the histogram below a TB with that many incoming jumps
is extremely rare; the average TB has 0.80 incoming jumps.
n_jumps: 379208; avg jumps/tb: 0.801099
dist: [0.0,1.0)|▄█▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁ ▁▁▁ ▁▁▁ ▁|[34.0,35.0]
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
2017-08-03 02:34:06 +02:00
|
|
|
qemu_spin_init(&tb->jmp_lock);
|
|
|
|
tb->jmp_list_head = (uintptr_t)NULL;
|
2016-03-22 17:00:12 +01:00
|
|
|
tb->jmp_list_next[0] = (uintptr_t)NULL;
|
|
|
|
tb->jmp_list_next[1] = (uintptr_t)NULL;
|
translate-all: protect TB jumps with a per-destination-TB lock
This applies to both user-mode and !user-mode emulation.
Instead of relying on a global lock, protect the list of incoming
jumps with tb->jmp_lock. This lock also protects tb->cflags,
so update all tb->cflags readers outside tb->jmp_lock to use
atomic reads via tb_cflags().
In order to find the destination TB (and therefore its jmp_lock)
from the origin TB, we introduce tb->jmp_dest[].
I considered not using a linked list of jumps, which simplifies
code and makes the struct smaller. However, it unnecessarily increases
memory usage, which results in a performance decrease. See for
instance these numbers booting+shutting down debian-arm:
Time (s) Rel. err (%) Abs. err (s) Rel. slowdown (%)
------------------------------------------------------------------------------
before 20.88 0.74 0.154512 0.
after 20.81 0.38 0.079078 -0.33524904
GTree 21.02 0.28 0.058856 0.67049808
GHashTable + xxhash 21.63 1.08 0.233604 3.5919540
Using a hash table or a binary tree to keep track of the jumps
doesn't really pay off, not only due to the increased memory usage,
but also because most TBs have only 0 or 1 jumps to them. The maximum
number of jumps when booting debian-arm that I measured is 35, but
as we can see in the histogram below a TB with that many incoming jumps
is extremely rare; the average TB has 0.80 incoming jumps.
n_jumps: 379208; avg jumps/tb: 0.801099
dist: [0.0,1.0)|▄█▁▁▁▁▁▁▁▁▁▁▁ ▁▁▁▁▁▁ ▁▁▁ ▁▁▁ ▁|[34.0,35.0]
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
2017-08-03 02:34:06 +02:00
|
|
|
tb->jmp_dest[0] = (uintptr_t)NULL;
|
|
|
|
tb->jmp_dest[1] = (uintptr_t)NULL;
|
2016-03-22 17:00:12 +01:00
|
|
|
|
2018-07-12 21:44:54 +02:00
|
|
|
/* init original jump addresses which have been set during tcg_gen_code() */
|
2022-11-27 03:20:57 +01:00
|
|
|
if (tb->jmp_reset_offset[0] != TB_JMP_OFFSET_INVALID) {
|
2016-03-22 17:00:12 +01:00
|
|
|
tb_reset_jump(tb, 0);
|
|
|
|
}
|
2022-11-27 03:20:57 +01:00
|
|
|
if (tb->jmp_reset_offset[1] != TB_JMP_OFFSET_INVALID) {
|
2016-03-22 17:00:12 +01:00
|
|
|
tb_reset_jump(tb, 1);
|
|
|
|
}
|
|
|
|
|
2021-02-13 14:03:20 +01:00
|
|
|
/*
|
2022-08-11 06:39:29 +02:00
|
|
|
* If the TB is not associated with a physical RAM page then it must be
|
|
|
|
* a temporary one-insn TB, and we have nothing left to do. Return early
|
|
|
|
* before attempting to link to other TBs or add to the lookup table.
|
2021-02-13 14:03:20 +01:00
|
|
|
*/
|
2022-09-20 13:21:40 +02:00
|
|
|
if (tb_page_addr0(tb) == -1) {
|
2023-07-06 18:55:48 +02:00
|
|
|
assert_no_pages_locked();
|
2021-02-13 14:03:20 +01:00
|
|
|
return tb;
|
|
|
|
}
|
|
|
|
|
2021-07-04 16:31:26 +02:00
|
|
|
/*
|
|
|
|
* Insert TB into the corresponding region tree before publishing it
|
|
|
|
* through QHT. Otherwise rewinding happened in the TB might fail to
|
|
|
|
* lookup itself using host PC.
|
|
|
|
*/
|
|
|
|
tcg_tb_insert(tb);
|
|
|
|
|
2017-08-05 05:46:31 +02:00
|
|
|
/*
|
|
|
|
* No explicit memory barrier is required -- tb_link_page() makes the
|
|
|
|
* TB visible in a consistent state.
|
2016-03-22 17:00:12 +01:00
|
|
|
*/
|
2023-07-06 18:55:48 +02:00
|
|
|
existing_tb = tb_link_page(tb);
|
|
|
|
assert_no_pages_locked();
|
|
|
|
|
2017-08-01 21:40:16 +02:00
|
|
|
/* if the TB already exists, discard what we just translated */
|
|
|
|
if (unlikely(existing_tb != tb)) {
|
|
|
|
uintptr_t orig_aligned = (uintptr_t)gen_code_buf;
|
|
|
|
|
|
|
|
orig_aligned -= ROUND_UP(sizeof(*tb), qemu_icache_linesize);
|
2020-09-23 12:56:46 +02:00
|
|
|
qatomic_set(&tcg_ctx->code_gen_ptr, (void *)orig_aligned);
|
2021-07-04 16:31:26 +02:00
|
|
|
tcg_tb_remove(tb);
|
2017-08-01 21:40:16 +02:00
|
|
|
return existing_tb;
|
|
|
|
}
|
2012-12-02 17:04:43 +01:00
|
|
|
return tb;
|
|
|
|
}
|
|
|
|
|
2017-08-05 05:46:31 +02:00
|
|
|
/* user-mode: call with mmap_lock held */
|
2019-09-22 05:24:12 +02:00
|
|
|
void tb_check_watchpoint(CPUState *cpu, uintptr_t retaddr)
|
2012-12-02 17:04:43 +01:00
|
|
|
{
|
|
|
|
TranslationBlock *tb;
|
|
|
|
|
2017-08-05 05:46:31 +02:00
|
|
|
assert_memory_lock();
|
|
|
|
|
2019-09-22 05:24:12 +02:00
|
|
|
tb = tcg_tb_lookup(retaddr);
|
2015-06-13 00:45:59 +02:00
|
|
|
if (tb) {
|
|
|
|
/* We can use retranslation to find the PC. */
|
2022-10-24 15:12:56 +02:00
|
|
|
cpu_restore_state_from_tb(cpu, tb, retaddr);
|
2015-06-13 00:45:59 +02:00
|
|
|
tb_phys_invalidate(tb, -1);
|
|
|
|
} else {
|
|
|
|
/* The exception probably happened in a helper. The CPU state should
|
|
|
|
have been saved before calling it. Fetch the PC from there. */
|
2023-09-14 02:22:49 +02:00
|
|
|
CPUArchState *env = cpu_env(cpu);
|
2023-06-21 15:56:24 +02:00
|
|
|
vaddr pc;
|
|
|
|
uint64_t cs_base;
|
2015-06-13 00:45:59 +02:00
|
|
|
tb_page_addr_t addr;
|
2016-04-07 19:19:22 +02:00
|
|
|
uint32_t flags;
|
2015-06-13 00:45:59 +02:00
|
|
|
|
|
|
|
cpu_get_tb_cpu_state(env, &pc, &cs_base, &flags);
|
|
|
|
addr = get_page_addr_code(env, pc);
|
2018-08-14 18:17:19 +02:00
|
|
|
if (addr != -1) {
|
2023-03-06 02:30:11 +01:00
|
|
|
tb_invalidate_phys_range(addr, addr);
|
2018-08-14 18:17:19 +02:00
|
|
|
}
|
2012-12-02 17:04:43 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
2021-02-13 14:03:22 +01:00
|
|
|
/*
|
|
|
|
* In deterministic execution mode, instructions doing device I/Os
|
tcg: drop global lock during TCG code execution
This finally allows TCG to benefit from the iothread introduction: Drop
the global mutex while running pure TCG CPU code. Reacquire the lock
when entering MMIO or PIO emulation, or when leaving the TCG loop.
We have to revert a few optimization for the current TCG threading
model, namely kicking the TCG thread in qemu_mutex_lock_iothread and not
kicking it in qemu_cpu_kick. We also need to disable RAM block
reordering until we have a more efficient locking mechanism at hand.
Still, a Linux x86 UP guest and my Musicpal ARM model boot fine here.
These numbers demonstrate where we gain something:
20338 jan 20 0 331m 75m 6904 R 99 0.9 0:50.95 qemu-system-arm
20337 jan 20 0 331m 75m 6904 S 20 0.9 0:26.50 qemu-system-arm
The guest CPU was fully loaded, but the iothread could still run mostly
independent on a second core. Without the patch we don't get beyond
32206 jan 20 0 330m 73m 7036 R 82 0.9 1:06.00 qemu-system-arm
32204 jan 20 0 330m 73m 7036 S 21 0.9 0:17.03 qemu-system-arm
We don't benefit significantly, though, when the guest is not fully
loading a host CPU.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Message-Id: <1439220437-23957-10-git-send-email-fred.konrad@greensocs.com>
[FK: Rebase, fix qemu_devices_reset deadlock, rm address_space_* mutex]
Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com>
[EGC: fixed iothread lock for cpu-exec IRQ handling]
Signed-off-by: Emilio G. Cota <cota@braap.org>
[AJB: -smp single-threaded fix, clean commit msg, BQL fixes]
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Reviewed-by: Pranith Kumar <bobby.prani@gmail.com>
[PM: target-arm changes]
Acked-by: Peter Maydell <peter.maydell@linaro.org>
2017-02-23 19:29:11 +01:00
|
|
|
* must be at the end of the TB.
|
|
|
|
*
|
|
|
|
* Called by softmmu_template.h, with iothread mutex not held.
|
|
|
|
*/
|
2013-09-01 17:21:47 +02:00
|
|
|
void cpu_io_recompile(CPUState *cpu, uintptr_t retaddr)
|
2012-12-02 17:04:43 +01:00
|
|
|
{
|
|
|
|
TranslationBlock *tb;
|
2021-02-13 14:03:13 +01:00
|
|
|
CPUClass *cc;
|
2018-03-19 04:15:45 +01:00
|
|
|
uint32_t n;
|
2012-12-02 17:04:43 +01:00
|
|
|
|
tcg: track TBs with per-region BST's
This paves the way for enabling scalable parallel generation of TCG code.
Instead of tracking TBs with a single binary search tree (BST), use a
BST for each TCG region, protecting it with a lock. This is as scalable
as it gets, since each TCG thread operates on a separate region.
The core of this change is the introduction of struct tcg_region_tree,
which contains a pointer to a GTree and an associated lock to serialize
accesses to it. We then allocate an array of tcg_region_tree's, adding
the appropriate padding to avoid false sharing based on
qemu_dcache_linesize.
Given a tc_ptr, we first find the corresponding region_tree. This
is done by special-casing the first and last regions first, since they
might be of size != region.size; otherwise we just divide the offset
by region.stride. I was worried about this division (several dozen
cycles of latency), but profiling shows that this is not a fast path.
Note that region.stride is not required to be a power of two; it
is only required to be a multiple of the host's page size.
Note that with this design we can also provide consistent snapshots
about all region trees at once; for instance, tcg_tb_foreach
acquires/releases all region_tree locks before/after iterating over them.
For this reason we now drop tb_lock in dump_exec_info().
As an alternative I considered implementing a concurrent BST, but this
can be tricky to get right, offers no consistent snapshots of the BST,
and performance and scalability-wise I don't think it could ever beat
having separate GTrees, given that our workload is insert-mostly (all
concurrent BST designs I've seen focus, understandably, on making
lookups fast, which comes at the expense of convoluted, non-wait-free
insertions/removals).
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Emilio G. Cota <cota@braap.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
2017-07-26 22:58:05 +02:00
|
|
|
tb = tcg_tb_lookup(retaddr);
|
2012-12-02 17:04:43 +01:00
|
|
|
if (!tb) {
|
2013-09-03 17:38:47 +02:00
|
|
|
cpu_abort(cpu, "cpu_io_recompile: could not find TB for pc=%p",
|
2012-12-02 17:04:43 +01:00
|
|
|
(void *)retaddr);
|
|
|
|
}
|
2022-10-24 15:12:56 +02:00
|
|
|
cpu_restore_state_from_tb(cpu, tb, retaddr);
|
2018-03-19 04:15:45 +01:00
|
|
|
|
2021-02-13 14:03:13 +01:00
|
|
|
/*
|
|
|
|
* Some guests must re-execute the branch when re-executing a delay
|
|
|
|
* slot instruction. When this is the case, adjust icount and N
|
|
|
|
* to account for the re-execution of the branch.
|
|
|
|
*/
|
2018-03-19 04:15:45 +01:00
|
|
|
n = 1;
|
2021-02-13 14:03:13 +01:00
|
|
|
cc = CPU_GET_CLASS(cpu);
|
|
|
|
if (cc->tcg_ops->io_recompile_replay_branch &&
|
|
|
|
cc->tcg_ops->io_recompile_replay_branch(cpu, tb)) {
|
2023-09-14 00:46:45 +02:00
|
|
|
cpu->neg.icount_decr.u16.low++;
|
2021-02-13 14:03:13 +01:00
|
|
|
n = 2;
|
|
|
|
}
|
2012-12-02 17:04:43 +01:00
|
|
|
|
2021-02-13 14:03:22 +01:00
|
|
|
/*
|
|
|
|
* Exit the loop and potentially generate a new TB executing the
|
|
|
|
* just the I/O insns. We also limit instrumentation to memory
|
|
|
|
* operations only (which execute after completion) so we don't
|
|
|
|
* double instrument the instruction.
|
|
|
|
*/
|
2021-02-24 17:58:08 +01:00
|
|
|
cpu->cflags_next_tb = curr_cflags(cpu) | CF_MEMI_ONLY | CF_LAST_IO | n;
|
2017-10-13 19:50:02 +02:00
|
|
|
|
2022-08-15 22:16:06 +02:00
|
|
|
if (qemu_loglevel_mask(CPU_LOG_EXEC)) {
|
2023-06-21 15:56:23 +02:00
|
|
|
vaddr pc = log_pc(cpu, tb);
|
2022-08-15 22:16:06 +02:00
|
|
|
if (qemu_log_in_addr_range(pc)) {
|
2023-07-17 12:05:08 +02:00
|
|
|
qemu_log("cpu_io_recompile: rewound execution of TB to %016"
|
2023-06-21 15:56:23 +02:00
|
|
|
VADDR_PRIx "\n", pc);
|
2022-08-15 22:16:06 +02:00
|
|
|
}
|
|
|
|
}
|
2020-10-13 14:26:58 +02:00
|
|
|
|
2016-05-17 16:18:04 +02:00
|
|
|
cpu_loop_exit_noexc(cpu);
|
2012-12-02 17:04:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#else /* CONFIG_USER_ONLY */
|
|
|
|
|
2013-01-18 15:03:43 +01:00
|
|
|
void cpu_interrupt(CPUState *cpu, int mask)
|
2012-12-02 17:04:43 +01:00
|
|
|
{
|
tcg: drop global lock during TCG code execution
This finally allows TCG to benefit from the iothread introduction: Drop
the global mutex while running pure TCG CPU code. Reacquire the lock
when entering MMIO or PIO emulation, or when leaving the TCG loop.
We have to revert a few optimization for the current TCG threading
model, namely kicking the TCG thread in qemu_mutex_lock_iothread and not
kicking it in qemu_cpu_kick. We also need to disable RAM block
reordering until we have a more efficient locking mechanism at hand.
Still, a Linux x86 UP guest and my Musicpal ARM model boot fine here.
These numbers demonstrate where we gain something:
20338 jan 20 0 331m 75m 6904 R 99 0.9 0:50.95 qemu-system-arm
20337 jan 20 0 331m 75m 6904 S 20 0.9 0:26.50 qemu-system-arm
The guest CPU was fully loaded, but the iothread could still run mostly
independent on a second core. Without the patch we don't get beyond
32206 jan 20 0 330m 73m 7036 R 82 0.9 1:06.00 qemu-system-arm
32204 jan 20 0 330m 73m 7036 S 21 0.9 0:17.03 qemu-system-arm
We don't benefit significantly, though, when the guest is not fully
loading a host CPU.
Signed-off-by: Jan Kiszka <jan.kiszka@siemens.com>
Message-Id: <1439220437-23957-10-git-send-email-fred.konrad@greensocs.com>
[FK: Rebase, fix qemu_devices_reset deadlock, rm address_space_* mutex]
Signed-off-by: KONRAD Frederic <fred.konrad@greensocs.com>
[EGC: fixed iothread lock for cpu-exec IRQ handling]
Signed-off-by: Emilio G. Cota <cota@braap.org>
[AJB: -smp single-threaded fix, clean commit msg, BQL fixes]
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Richard Henderson <rth@twiddle.net>
Reviewed-by: Pranith Kumar <bobby.prani@gmail.com>
[PM: target-arm changes]
Acked-by: Peter Maydell <peter.maydell@linaro.org>
2017-02-23 19:29:11 +01:00
|
|
|
g_assert(qemu_mutex_iothread_locked());
|
2013-01-17 18:51:17 +01:00
|
|
|
cpu->interrupt_request |= mask;
|
2023-09-14 00:46:45 +02:00
|
|
|
qatomic_set(&cpu->neg.icount_decr.u16.high, -1);
|
2012-12-02 17:04:43 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_USER_ONLY */
|
2017-06-26 07:22:55 +02:00
|
|
|
|
2022-08-15 22:13:05 +02:00
|
|
|
/*
|
|
|
|
* Called by generic code at e.g. cpu reset after cpu creation,
|
|
|
|
* therefore we must be prepared to allocate the jump cache.
|
|
|
|
*/
|
|
|
|
void tcg_flush_jmp_cache(CPUState *cpu)
|
|
|
|
{
|
|
|
|
CPUJumpCache *jc = cpu->tb_jmp_cache;
|
|
|
|
|
2022-10-31 03:26:36 +01:00
|
|
|
/* During early initialization, the cache may not yet be allocated. */
|
|
|
|
if (unlikely(jc == NULL)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (int i = 0; i < TB_JMP_CACHE_SIZE; i++) {
|
|
|
|
qatomic_set(&jc->array[i].tb, NULL);
|
2022-08-15 22:13:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-26 07:22:55 +02:00
|
|
|
/* This is a wrapper for common code that can not use CONFIG_SOFTMMU */
|
|
|
|
void tcg_flush_softmmu_tlb(CPUState *cs)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_SOFTMMU
|
|
|
|
tlb_flush(cs);
|
|
|
|
#endif
|
|
|
|
}
|