From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56759) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1dQjSL-0008MB-0o for qemu-devel@nongnu.org; Thu, 29 Jun 2017 20:06:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1dQjSG-0004jn-8e for qemu-devel@nongnu.org; Thu, 29 Jun 2017 20:06:40 -0400 Received: from out5-smtp.messagingengine.com ([66.111.4.29]:59953) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1dQjSG-0004jE-3g for qemu-devel@nongnu.org; Thu, 29 Jun 2017 20:06:36 -0400 Date: Thu, 29 Jun 2017 20:06:34 -0400 From: "Emilio G. Cota" Message-ID: <20170630000634.GG13979@flamenco> References: <149865219962.17063.10630533069463266646.stgit@frigg.lan> <149865389443.17063.5223786571159875501.stgit@frigg.lan> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <149865389443.17063.5223786571159875501.stgit@frigg.lan> Subject: Re: [Qemu-devel] [PATCH v11 07/29] target/i386: [tcg] Refactor init_globals List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?iso-8859-1?Q?Llu=EDs?= Vilanova Cc: qemu-devel@nongnu.org, Alex =?iso-8859-1?Q?Benn=E9e?= , Richard Henderson , Peter Crosthwaite , Paolo Bonzini , Eduardo Habkost On Wed, Jun 28, 2017 at 15:44:54 +0300, Lluís Vilanova wrote: > Incrementally paves the way towards using the generic instruction translation > loop. > > Signed-off-by: Lluís Vilanova > --- > target/i386/translate.c | 29 +++++++++++++++++------------ > 1 file changed, 17 insertions(+), 12 deletions(-) > > diff --git a/target/i386/translate.c b/target/i386/translate.c > index 04453ce48a..d015ea73fa 100644 > --- a/target/i386/translate.c > +++ b/target/i386/translate.c > @@ -8435,6 +8435,22 @@ static void i386_trblock_init_disas_context(DisasContextBase *dcbase, CPUState * > #endif > } > > +static void i386_trblock_init_globals(DisasContextBase *dcbase, CPUState *cpu) I'd do the s/trblock/tr/ conversion to all other patches. But I won't mention it again :) Reviewed-by: Emilio G. Cota E.