From nobody Tue Feb 10 04:14:19 2026 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 1498041473090911.4383735081836; Wed, 21 Jun 2017 03:37:53 -0700 (PDT) Received: from localhost ([::1]:52967 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dNd1D-0001UK-QI for importer@patchew.org; Wed, 21 Jun 2017 06:37:51 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55923) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dNckb-0002ge-DN for qemu-devel@nongnu.org; Wed, 21 Jun 2017 06:20:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dNckX-0005CN-Vj for qemu-devel@nongnu.org; Wed, 21 Jun 2017 06:20:41 -0400 Received: from mga14.intel.com ([192.55.52.115]:6553) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dNckX-0004zB-LN for qemu-devel@nongnu.org; Wed, 21 Jun 2017 06:20:37 -0400 Received: from orsmga003.jf.intel.com ([10.7.209.27]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Jun 2017 03:20:37 -0700 Received: from yangzhon-virtual.bj.intel.com ([10.238.145.52]) by orsmga003.jf.intel.com with ESMTP; 21 Jun 2017 03:20:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,368,1493708400"; d="scan'208";a="983451192" From: Yang Zhong To: pbonzini@redhat.com Date: Wed, 21 Jun 2017 18:19:58 +0800 Message-Id: <1498040401-16361-13-git-send-email-yang.zhong@intel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1498040401-16361-1-git-send-email-yang.zhong@intel.com> References: <1498040401-16361-1-git-send-email-yang.zhong@intel.com> X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 192.55.52.115 Subject: [Qemu-devel] [PATCH 12/15] tcg: remove inline definition of flush_icache_range() 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: Yang Zhong , anthony.xu@intel.com, qemu-devel@nongnu.org, a.rigo@virtualopensystems.com 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" Remove the inline defintion of flush_icache_range() in tcg/i386/tcg-target.= h. add the flush_icache_range() implementation in tcg-target.inc.c for kvm/tcg and flush_icache_range() implementation in tcg-stub.c for disable-tcg. Signed-off-by: Yang Zhong --- accel/stubs/tcg-stub.c | 4 ++++ tcg/i386/tcg-target.h | 5 ++--- tcg/i386/tcg-target.inc.c | 4 ++++ 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/accel/stubs/tcg-stub.c b/accel/stubs/tcg-stub.c index 91625a8..85b0239 100644 --- a/accel/stubs/tcg-stub.c +++ b/accel/stubs/tcg-stub.c @@ -83,6 +83,10 @@ void tcg_set_fpuc(CPUX86State *env) { } =20 +void flush_icache_range(uintptr_t start, uintptr_t stop) +{ +} + void cpu_loop_exit(CPUState *cpu) { abort(); diff --git a/tcg/i386/tcg-target.h b/tcg/i386/tcg-target.h index 73a15f7..7559cb8 100644 --- a/tcg/i386/tcg-target.h +++ b/tcg/i386/tcg-target.h @@ -162,9 +162,8 @@ extern bool have_popcnt; # define TCG_AREG0 TCG_REG_EBP #endif =20 -static inline void flush_icache_range(uintptr_t start, uintptr_t stop) -{ -} +void flush_icache_range(uintptr_t start, uintptr_t stop); + =20 /* This defines the natural memory order supported by this * architecture before guarantees made by various barrier diff --git a/tcg/i386/tcg-target.inc.c b/tcg/i386/tcg-target.inc.c index 01e3b4e..6572efc 100644 --- a/tcg/i386/tcg-target.inc.c +++ b/tcg/i386/tcg-target.inc.c @@ -2751,3 +2751,7 @@ void tcg_register_jit(void *buf, size_t buf_size) tcg_register_jit_int(buf, buf_size, &debug_frame, sizeof(debug_frame)); } #endif + +void flush_icache_range(uintptr_t start, uintptr_t stop) +{ +} --=20 1.9.1