From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45557) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gEjMy-00057v-TT for qemu-devel@nongnu.org; Mon, 22 Oct 2018 19:12:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gEj9E-0001M8-KG for qemu-devel@nongnu.org; Mon, 22 Oct 2018 18:58:12 -0400 Received: from out3-smtp.messagingengine.com ([66.111.4.27]:36159) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gEj9D-0001Kq-Ub for qemu-devel@nongnu.org; Mon, 22 Oct 2018 18:58:08 -0400 Date: Mon, 22 Oct 2018 18:58:04 -0400 From: "Emilio G. Cota" Message-ID: <20181022225804.GA29980@flamenco> References: <20181019010625.25294-1-cota@braap.org> <20181019010625.25294-8-cota@braap.org> <38c8c109-c231-696e-2fb8-4fae6f3fb641@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Subject: Re: [Qemu-devel] [RFC v3 07/56] target/m68k: rename cpu_halted to cpu_halt List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Richard Henderson Cc: qemu-devel@nongnu.org, Paolo Bonzini , Laurent Vivier On Sun, Oct 21, 2018 at 14:38:38 +0100, Richard Henderson wrote: > On 10/21/18 1:53 PM, Richard Henderson wrote: > > On 10/19/18 2:05 AM, Emilio G. Cota wrote: > >> To avoid a name clash with the soon-to-be-defined cpu_halted() helper. > >> > >> Cc: Laurent Vivier > >> Signed-off-by: Emilio G. Cota > >> --- > >> target/m68k/translate.c | 6 +++--- > >> 1 file changed, 3 insertions(+), 3 deletions(-) > > > > Although for this usage it's probably better to avoid the > > tcg_global_mem_new_i32 and just use tcg_gen_st_i32. > > And, as I read further, you need to convert this use to a helper call. > Otherwise you've still got an unlocked direct modification to cpu->halted > from within the TCG generated code. > > There are several other targets that do the same thing: alpha, cris, hppa, > mips, microblaze, ppc. And typically they will do exactly the same thing: set > the flag and then raise the halt exception. Ouch -- I entirely missed these! For v4, I defined helper_cpu_halted_set in tcg-runtime, and converted all direct setters to it. Thanks, Emilio