From nobody Wed Nov 5 13:44:22 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) client-ip=208.118.235.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zoho.com; spf=pass (zoho.com: domain of gnu.org designates 208.118.235.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; Return-Path: Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) by mx.zohomail.com with SMTPS id 1498153880262716.3777841848733; Thu, 22 Jun 2017 10:51:20 -0700 (PDT) Received: from localhost ([::1]:60301 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dO6GF-0005Ec-1c for importer@patchew.org; Thu, 22 Jun 2017 13:51:19 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40100) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dO6DA-0002BP-9i for qemu-devel@nongnu.org; Thu, 22 Jun 2017 13:48:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dO6D5-00016A-Cx for qemu-devel@nongnu.org; Thu, 22 Jun 2017 13:48:08 -0400 Received: from roura.ac.upc.edu ([147.83.33.10]:44890 helo=roura.ac.upc.es) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dO6D5-00015W-26 for qemu-devel@nongnu.org; Thu, 22 Jun 2017 13:48:03 -0400 Received: from correu-1.ac.upc.es (correu-1.ac.upc.es [147.83.30.91]) by roura.ac.upc.es (8.13.8/8.13.8) with ESMTP id v5MHm1kP009955; Thu, 22 Jun 2017 19:48:01 +0200 Received: from localhost (unknown [31.210.182.235]) by correu-1.ac.upc.es (Postfix) with ESMTPSA id CC52C10EA; Thu, 22 Jun 2017 19:47:55 +0200 (CEST) From: =?utf-8?b?TGx1w61z?= Vilanova To: qemu-devel@nongnu.org Date: Thu, 22 Jun 2017 20:47:54 +0300 Message-Id: <149815367439.1830.16623723669117970171.stgit@frigg.lan> X-Mailer: git-send-email 2.11.0 In-Reply-To: <149815338558.1830.8107719559183631163.stgit@frigg.lan> References: <149815338558.1830.8107719559183631163.stgit@frigg.lan> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable X-MIME-Autoconverted: from 8bit to quoted-printable by roura.ac.upc.es id v5MHm1kP009955 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x [fuzzy] X-Received-From: 147.83.33.10 Subject: [Qemu-devel] [PATCH v7 09/26] target: [tcg, i386] Refactor insn_start X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Paolo Bonzini , Peter Crosthwaite , =?UTF-8?q?Alex=20Benn=C3=A9e?= , Eduardo Habkost , Richard Henderson Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Incrementally paves the way towards using the generic instruction translati= on loop. Signed-off-by: Llu=C3=ADs Vilanova --- target/i386/translate.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/target/i386/translate.c b/target/i386/translate.c index f0d12a3d13..3c7ef4af67 100644 --- a/target/i386/translate.c +++ b/target/i386/translate.c @@ -8468,6 +8468,12 @@ static void i386_trblock_init_globals(DisasContextBa= se *db, CPUState *cpu) cpu_cc_srcT =3D tcg_temp_local_new(); } =20 +static void i386_trblock_insn_start(DisasContextBase *db, CPUState *cpu) +{ + DisasContext *dc =3D container_of(db, DisasContext, base); + tcg_gen_insn_start(db->pc_next, dc->cc_op); +} + /* generate intermediate code for basic block 'tb'. */ void gen_intermediate_code(CPUState *cpu, TranslationBlock *tb) { @@ -8498,7 +8504,7 @@ void gen_intermediate_code(CPUState *cpu, Translation= Block *tb) =20 gen_tb_start(tb, cpu_env); for(;;) { - tcg_gen_insn_start(db->pc_next, dc->cc_op); + i386_trblock_insn_start(db, cpu); num_insns++; =20 /* If RF is set, suppress an internally generated breakpoint. */