From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48519) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bNgUj-0000kC-Fm for qemu-devel@nongnu.org; Thu, 14 Jul 2016 09:16:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bNgUe-0003E9-DN for qemu-devel@nongnu.org; Thu, 14 Jul 2016 09:16:00 -0400 Received: from mail-wm0-x233.google.com ([2a00:1450:400c:c09::233]:38545) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bNgUe-0003Dv-2T for qemu-devel@nongnu.org; Thu, 14 Jul 2016 09:15:56 -0400 Received: by mail-wm0-x233.google.com with SMTP id o80so112850376wme.1 for ; Thu, 14 Jul 2016 06:15:56 -0700 (PDT) References: <1468354426-837-1-git-send-email-sergey.fedorov@linaro.org> <1468354426-837-7-git-send-email-sergey.fedorov@linaro.org> <87oa604bzf.fsf@linaro.org> <57878CFA.4060604@gmail.com> From: Alex =?utf-8?Q?Benn=C3=A9e?= In-reply-to: <57878CFA.4060604@gmail.com> Date: Thu, 14 Jul 2016 14:15:57 +0100 Message-ID: <87furc4aya.fsf@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH v3 06/11] tcg: Introduce tb_mark_invalid() and tb_is_invalid() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Sergey Fedorov Cc: Sergey Fedorov , qemu-devel@nongnu.org, mttcg@listserver.greensocs.com, fred.konrad@greensocs.com, a.rigo@virtualopensystems.com, cota@braap.org, bobby.prani@gmail.com, rth@twiddle.net, patches@linaro.org, mark.burton@greensocs.com, pbonzini@redhat.com, jan.kiszka@siemens.com, peter.maydell@linaro.org, claudio.fontana@huawei.com, Peter Crosthwaite , "Edgar E. Iglesias" , Eduardo Habkost , Michael Walle , Aurelien Jarno , Leon Alrae , Anthony Green , Jia Liu , David Gibson , Alexander Graf , Mark Cave-Ayland , Artyom Tarasenko , Bastian Koppelmann , Guan Xuetao , Max Filippov , qemu-arm@nongnu.org, "u.org" Sergey Fedorov writes: > On 14/07/16 15:53, Alex Bennée wrote: >> Sergey Fedorov writes: >> >>> From: Sergey Fedorov >>> >>> These functions will be used to make translation block invalidation safe >>> with concurrent lockless lookup in the global hash table. >>> >>> Most targets don't use 'cs_base'; so marking TB as invalid is as simple >>> as assigning -1 to 'cs_base'. SPARC target stores the next program >>> counter into 'cs_base', and -1 is a fine invalid value since PC must bet >>> a multiple of 4 in SPARC. The only odd target is i386, for which a >>> special flag is introduced in place of removed 'HF_SOFTMMU_MASK'. >>> >>> Suggested-by: Paolo Bonzini >>> Signed-off-by: Sergey Fedorov >>> Signed-off-by: Sergey Fedorov >>> --- >>> include/exec/exec-all.h | 10 ++++++++++ >>> target-alpha/cpu.h | 14 ++++++++++++++ >>> target-arm/cpu.h | 14 ++++++++++++++ >>> target-cris/cpu.h | 14 ++++++++++++++ >>> target-i386/cpu.h | 17 +++++++++++++++++ >>> target-lm32/cpu.h | 14 ++++++++++++++ >>> target-m68k/cpu.h | 14 ++++++++++++++ >>> target-microblaze/cpu.h | 14 ++++++++++++++ >>> target-mips/cpu.h | 14 ++++++++++++++ >>> target-moxie/cpu.h | 14 ++++++++++++++ >>> target-openrisc/cpu.h | 14 ++++++++++++++ >>> target-ppc/cpu.h | 14 ++++++++++++++ >>> target-s390x/cpu.h | 14 ++++++++++++++ >>> target-sh4/cpu.h | 14 ++++++++++++++ >>> target-sparc/cpu.h | 14 ++++++++++++++ >>> target-sparc/translate.c | 1 + >>> target-tilegx/cpu.h | 14 ++++++++++++++ >>> target-tricore/cpu.h | 14 ++++++++++++++ >>> target-unicore32/cpu.h | 14 ++++++++++++++ >>> target-xtensa/cpu.h | 14 ++++++++++++++ >>> 20 files changed, 266 insertions(+) >>> >>> diff --git a/include/exec/exec-all.h b/include/exec/exec-all.h >>> index db79ab65cebe..61cc3a1fb8f7 100644 >>> --- a/include/exec/exec-all.h >>> +++ b/include/exec/exec-all.h >>> @@ -256,6 +256,16 @@ void tb_free(TranslationBlock *tb); >>> void tb_flush(CPUState *cpu); >>> void tb_phys_invalidate(TranslationBlock *tb, tb_page_addr_t page_addr); >>> >>> +static inline void tb_mark_invalid(TranslationBlock *tb) >>> +{ >>> + cpu_get_invalid_tb_cpu_state(&tb->pc, &tb->cs_base, &tb->flags); >> Hmmm are we getting something here? Maybe cpu_tb_invalidate_cpu_state? > > Just to be similar to cpu_get_tb_cpu_state(). I guess if you squint just right. I'll drop the objection. > >> >>> +} >>> + >>> +static inline bool tb_is_invalid(TranslationBlock *tb) >>> +{ >>> + return cpu_tb_cpu_state_is_invalidated(tb->pc, tb->cs_base, tb->flags); >>> +} >> Also why are we passing three pointers to parts of TranslationBlock? Why >> not just pass tb directly and be done with it? > > I'm not sure we want to include exec/exec-all.h in target-*/cpu.h Fair enough. > >> >> I'm sure the compiler does something sensible but seems overly verbose >> to me. >> >>> + >>> #if defined(USE_DIRECT_JUMP) >>> >>> #if defined(CONFIG_TCG_INTERPRETER) > (snip) >> Otherwise: >> >> Reviewed-by: Alex Bennée > > Kind regards, > Sergey -- Alex Bennée