From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59229) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1atXV0-0001LU-5j for qemu-devel@nongnu.org; Fri, 22 Apr 2016 05:35:43 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1atXUw-0008Ay-O8 for qemu-devel@nongnu.org; Fri, 22 Apr 2016 05:35:41 -0400 Received: from mail-wm0-x231.google.com ([2a00:1450:400c:c09::231]:33361) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1atXUv-0008Af-VN for qemu-devel@nongnu.org; Fri, 22 Apr 2016 05:35:38 -0400 Received: by mail-wm0-x231.google.com with SMTP id 127so8585593wmz.0 for ; Fri, 22 Apr 2016 02:35:37 -0700 (PDT) References: <1461107270-19234-1-git-send-email-cota@braap.org> <1461107270-19234-5-git-send-email-cota@braap.org> From: Alex =?utf-8?Q?Benn=C3=A9e?= In-reply-to: <1461107270-19234-5-git-send-email-cota@braap.org> Date: Fri, 22 Apr 2016 10:35:35 +0100 Message-ID: <87oa92t28o.fsf@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit 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" Cc: QEMU Developers , MTTCG Devel , Paolo Bonzini , Peter Crosthwaite , Richard Henderson , Peter Maydell , Sergey Fedorov Emilio G. Cota writes: > Taken from the linux kernel. > > Reviewed-by: Richard Henderson > Signed-off-by: Emilio G. Cota License header notwithstanding: Reviewed-by: Alex Bennée > --- > 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 @@ > +#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 */ -- Alex Bennée