From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48082) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1asr3D-00084y-UJ for qemu-devel@nongnu.org; Wed, 20 Apr 2016 08:16:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1asr39-0002T3-MM for qemu-devel@nongnu.org; Wed, 20 Apr 2016 08:16:11 -0400 Received: from greensocs.com ([193.104.36.180]:48279) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1asr39-0002Sk-BL for qemu-devel@nongnu.org; Wed, 20 Apr 2016 08:16:07 -0400 References: <1461107270-19234-1-git-send-email-cota@braap.org> <1461107270-19234-5-git-send-email-cota@braap.org> From: KONRAD Frederic Message-ID: <571772ED.7080607@greensocs.com> Date: Wed, 20 Apr 2016 14:15:41 +0200 MIME-Version: 1.0 In-Reply-To: <1461107270-19234-5-git-send-email-cota@braap.org> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH v3 04/11] 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 , Peter Maydell , Sergey Fedorov Le 20/04/2016 01:07, Emilio G. Cota a =E9crit : > Taken from the linux kernel. > > Reviewed-by: Richard Henderson > Signed-off-by: Emilio G. Cota > --- > include/qemu/processor.h | 28 ++++++++++++++++++++++++++++ > 1 file changed, 28 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..675a00a > --- /dev/null > +++ b/include/qemu/processor.h > @@ -0,0 +1,28 @@ Hi, Does this file need a license? Fred > +#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 me= dium */ > +#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 */ >