From nobody Tue Nov 4 18:50:17 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.zohomail.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 1530808542552124.21812480042342; Thu, 5 Jul 2018 09:35:42 -0700 (PDT) Received: from localhost ([::1]:53731 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fb7EL-0008M8-RU for importer@patchew.org; Thu, 05 Jul 2018 12:35:41 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55976) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fb6mx-00032n-OW for qemu-devel@nongnu.org; Thu, 05 Jul 2018 12:07:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fb6ms-0001z5-Rm for qemu-devel@nongnu.org; Thu, 05 Jul 2018 12:07:23 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:52497) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fb6ms-0001yi-KH for qemu-devel@nongnu.org; Thu, 05 Jul 2018 12:07:18 -0400 Received: from compute4.internal (compute4.nyi.internal [10.202.2.44]) by mailout.nyi.internal (Postfix) with ESMTP id 3EDC820CE1; Thu, 5 Jul 2018 12:07:18 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute4.internal (MEProxy); Thu, 05 Jul 2018 12:07:18 -0400 Received: from localhost (flamenco.cs.columbia.edu [128.59.20.216]) by mail.messagingengine.com (Postfix) with ESMTPA id 4642910260; Thu, 5 Jul 2018 12:07:17 -0400 (EDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=braap.org; h=cc :date:from:message-id:subject:to:x-me-sender:x-me-sender :x-sasl-enc; s=mesmtp; bh=uC47nYxaE7SLqoTLdEBfWk1rg4zXT4aTFzRl8W tbv2g=; b=NfnRFjGHF/aM9pEUscJbFEMECF+mpbyFOIsVjIJ+3Ho0rA2mX4D8Y/ pRFE7CRFodQOEVo1sVYt3BxGQpxmLXEcWCjzw6K2jio07VRbqcQ0rorYveG7+59v H5YY/ZtdV51pGs3myQDb+dbOqNHzD/ow3ifHRVk7FqGAPoyxJG1VI= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:date:from:message-id:subject:to :x-me-sender:x-me-sender:x-sasl-enc; s=fm3; bh=uC47nYxaE7SLqoTLd EBfWk1rg4zXT4aTFzRl8Wtbv2g=; b=q+SOJavgm3mKWEGSK27mQ1I/orHe83BA9 UsOjDo/OkChzo+h9UjZ/hOG2uXxTQNEsWAvpxBmmxJtwAS05QlmErFMvK0Ph1ayP TV7DBP5Yfy9+SPjI35ygOIBEutfg9b+nEXc33zTkGLagHAl7+9RJTJhYRT1xGGoO lFlgFYHND1r7deYXUp6rYEiLF00xeM72y8MP7RjZqkaAtYSaouh4IJmfKoylTkg/ MM2cj+lboLqWSIFib30wUOzShN6wuWTs1ilk8ViCaOqAW+2KViCFGMKXw5ZgFXEx zC5E4JmJV5FkUDqVaibYRWMHIWrQQjrL23Hh01tXXzUFoH7ARVo9Q== X-ME-Proxy: X-ME-Sender: From: "Emilio G. Cota" To: qemu-devel@nongnu.org Date: Thu, 5 Jul 2018 12:07:17 -0400 Message-Id: <1530806837-5416-1-git-send-email-cota@braap.org> X-Mailer: git-send-email 2.7.4 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] [fuzzy] X-Received-From: 66.111.4.25 Subject: [Qemu-devel] [PATCH] translate-all: honour CF_NOCACHE in tb_gen_code 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: Pavel Dovgalyuk , Richard Henderson Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" X-ZohoMail: RSF_0 Z_629925259 SPT_0 Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" This fixes a record-replay regression introduced by 95590e2 ("translate-all: discard TB when tb_link_page returns an existing matching TB", 2018-06-15). The problem is that code using CF_NOCACHE assumes that the TB returned from tb_gen_code is always a newly-generated one. This assumption, however, was broken in the aforementioned commit. Fix it by honouring CF_NOCACHE, so that tb_gen_code always returns a newly-generated TB when CF_NOCACHE is passed to it. Do this by avoiding the TB hash table if CF_NOCACHE is set. Reported-by: Pavel Dovgalyuk Tested-by: Pavel Dovgalyuk Signed-off-by: Emilio G. Cota Reviewed-by: Richard Henderson Tested-by: Alistair Francis --- accel/tcg/translate-all.c | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/accel/tcg/translate-all.c b/accel/tcg/translate-all.c index 170b957..49d77fa 100644 --- a/accel/tcg/translate-all.c +++ b/accel/tcg/translate-all.c @@ -1446,7 +1446,8 @@ static void do_tb_phys_invalidate(TranslationBlock *t= b, bool rm_from_page_list) phys_pc =3D tb->page_addr[0] + (tb->pc & ~TARGET_PAGE_MASK); h =3D tb_hash_func(phys_pc, tb->pc, tb->flags, tb_cflags(tb) & CF_HASH= _MASK, tb->trace_vcpu_dstate); - if (!qht_remove(&tb_ctx.htable, tb, h)) { + if (!(tb->cflags & CF_NOCACHE) && + !qht_remove(&tb_ctx.htable, tb, h)) { return; } =20 @@ -1604,8 +1605,6 @@ tb_link_page(TranslationBlock *tb, tb_page_addr_t phy= s_pc, { PageDesc *p; PageDesc *p2 =3D NULL; - void *existing_tb =3D NULL; - uint32_t h; =20 assert_memory_lock(); =20 @@ -1625,20 +1624,25 @@ tb_link_page(TranslationBlock *tb, tb_page_addr_t p= hys_pc, tb->page_addr[1] =3D -1; } =20 - /* add in the hash table */ - h =3D tb_hash_func(phys_pc, tb->pc, tb->flags, tb->cflags & CF_HASH_MA= SK, - tb->trace_vcpu_dstate); - qht_insert(&tb_ctx.htable, tb, h, &existing_tb); + if (!(tb->cflags & CF_NOCACHE)) { + void *existing_tb =3D NULL; + uint32_t h; =20 - /* remove TB from the page(s) if we couldn't insert it */ - if (unlikely(existing_tb)) { - tb_page_remove(p, tb); - invalidate_page_bitmap(p); - if (p2) { - tb_page_remove(p2, tb); - invalidate_page_bitmap(p2); + /* add in the hash table */ + h =3D tb_hash_func(phys_pc, tb->pc, tb->flags, tb->cflags & CF_HAS= H_MASK, + tb->trace_vcpu_dstate); + qht_insert(&tb_ctx.htable, tb, h, &existing_tb); + + /* remove TB from the page(s) if we couldn't insert it */ + if (unlikely(existing_tb)) { + tb_page_remove(p, tb); + invalidate_page_bitmap(p); + if (p2) { + tb_page_remove(p2, tb); + invalidate_page_bitmap(p2); + } + tb =3D existing_tb; } - tb =3D existing_tb; } =20 if (p2 && p2 !=3D p) { --=20 2.7.4