From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50877) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b36Lp-0002Hd-86 for qemu-devel@nongnu.org; Wed, 18 May 2016 14:37:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b36Lk-0007dB-11 for qemu-devel@nongnu.org; Wed, 18 May 2016 14:37:44 -0400 Received: from mail-lb0-x243.google.com ([2a00:1450:4010:c04::243]:35076) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b36Lj-0007bt-Px for qemu-devel@nongnu.org; Wed, 18 May 2016 14:37:39 -0400 Received: by mail-lb0-x243.google.com with SMTP id mx9so3222192lbb.2 for ; Wed, 18 May 2016 11:37:39 -0700 (PDT) References: <1463196873-17737-1-git-send-email-cota@braap.org> <1463196873-17737-5-git-send-email-cota@braap.org> <573CAACC.7060902@gmail.com> <20160518182946.GA8386@flamenco> From: Sergey Fedorov Message-ID: <573CB671.5040204@gmail.com> Date: Wed, 18 May 2016 21:37:37 +0300 MIME-Version: 1.0 In-Reply-To: <20160518182946.GA8386@flamenco> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH v5 04/18] include/processor.h: define cpu_relax() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Emilio G. Cota" Cc: QEMU Developers , MTTCG Devel , =?UTF-8?Q?Alex_Benn=c3=a9e?= , Paolo Bonzini , Peter Crosthwaite , Richard Henderson On 18/05/16 21:29, Emilio G. Cota wrote: > On Wed, May 18, 2016 at 20:47:56 +0300, Sergey Fedorov wrote: >> Why don't do like this: >> >> #if defined(__foo__) >> # define ... >> #elif defined(__bar__) >> # define ... >> #else >> # define ... >> #endif > Good point. Changed to: > > commit ad31d6cff8e309e41bd4bed110f173e473c27c5a > Author: Emilio G. Cota > Date: Wed Apr 6 18:21:08 2016 -0400 > > include/processor.h: define cpu_relax() > > Taken from the linux kernel. > > Reviewed-by: Richard Henderson > Reviewed-by: Alex Bennée > Signed-off-by: Emilio G. Cota > > diff --git a/include/qemu/processor.h b/include/qemu/processor.h > new file mode 100644 > index 0000000..42bcc99 > --- /dev/null > +++ b/include/qemu/processor.h > @@ -0,0 +1,30 @@ > +/* > + * Copyright (C) 2016, Emilio G. Cota > + * > + * License: GNU GPL, version 2. > + * See the COPYING file in the top-level directory. > + */ > +#ifndef QEMU_PROCESSOR_H > +#define QEMU_PROCESSOR_H > + > +#include "qemu/atomic.h" > + > +#if defined(__i386__) || defined(__x86_64__) > +# define cpu_relax() asm volatile("rep; nop" ::: "memory") > + > +#elif defined(__ia64__) > +# define cpu_relax() asm volatile("hint @pause" ::: "memory") > + > +#elif defined(__aarch64__) > +# define cpu_relax() asm volatile("yield" ::: "memory") > + > +#elif defined(__powerpc64__) > +/* set Hardware Multi-Threading (HMT) priority to low; then back to medium */ > +# define cpu_relax() asm volatile("or 1, 1, 1;" > + "or 2, 2, 2;" ::: "memory") > + > +#else > +# define cpu_relax() barrier() > +#endif > + > +#endif /* QEMU_PROCESSOR_H */ Looks like you prefer "sparse" code :) -Sergey