From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:36057) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b35Zj-0007oQ-NJ for qemu-devel@nongnu.org; Wed, 18 May 2016 13:48:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b35Zg-00029v-EJ for qemu-devel@nongnu.org; Wed, 18 May 2016 13:48:03 -0400 Received: from mail-lb0-x241.google.com ([2a00:1450:4010:c04::241]:35833) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b35Zg-00029q-6m for qemu-devel@nongnu.org; Wed, 18 May 2016 13:48:00 -0400 Received: by mail-lb0-x241.google.com with SMTP id mx9so3152480lbb.2 for ; Wed, 18 May 2016 10:47:59 -0700 (PDT) References: <1463196873-17737-1-git-send-email-cota@braap.org> <1463196873-17737-5-git-send-email-cota@braap.org> From: Sergey Fedorov Message-ID: <573CAACC.7060902@gmail.com> Date: Wed, 18 May 2016 20:47:56 +0300 MIME-Version: 1.0 In-Reply-To: <1463196873-17737-5-git-send-email-cota@braap.org> Content-Type: text/plain; charset=utf-8 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" , QEMU Developers , MTTCG Devel Cc: =?UTF-8?Q?Alex_Benn=c3=a9e?= , Paolo Bonzini , Peter Crosthwaite , Richard Henderson On 14/05/16 06:34, Emilio G. Cota wrote: > Taken from the linux kernel. > > Reviewed-by: Richard Henderson > Reviewed-by: Alex Bennée > Signed-off-by: Emilio G. Cota > --- > include/qemu/processor.h | 34 ++++++++++++++++++++++++++++++++++ > 1 file changed, 34 insertions(+) > create mode 100644 include/qemu/processor.h > > diff --git a/include/qemu/processor.h b/include/qemu/processor.h > new file mode 100644 > index 0000000..4e6a71f > --- /dev/null > +++ b/include/qemu/processor.h > @@ -0,0 +1,34 @@ > +/* > + * 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") > +#endif > + > +#ifdef __ia64__ > +#define cpu_relax() asm volatile("hint @pause" ::: "memory") > +#endif > + > +#ifdef __aarch64__ > +#define cpu_relax() asm volatile("yield" ::: "memory") > +#endif > + > +#if 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") > +#endif > + > +#ifndef cpu_relax > +#define cpu_relax() barrier() > +#endif > + > +#endif /* QEMU_PROCESSOR_H */ Why don't do like this: #if defined(__foo__) # define ... #elif defined(__bar__) # define ... #else # define ... #endif Kind regards, Sergey