qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Richard Henderson <richard.henderson@linaro.org>
To: Thomas Huth <thuth@redhat.com>, qemu-devel@nongnu.org
Cc: qemu-s390x@nongnu.org
Subject: Re: [PATCH] host/include/generic/host/atomic128: Fix compilation problem with Clang 17
Date: Wed, 8 Nov 2023 09:57:58 -0800	[thread overview]
Message-ID: <b5945b9e-f696-4a71-b358-b95a5aaa7da9@linaro.org> (raw)
In-Reply-To: <20231108085954.313071-1-thuth@redhat.com>

On 11/8/23 00:59, Thomas Huth wrote:
> When compiling QEMU with Clang 17 on a s390x, the compilation fails:
> 
> In file included from ../accel/tcg/cputlb.c:32:
> In file included from /root/qemu/include/exec/helper-proto-common.h:10:
> In file included from /root/qemu/include/qemu/atomic128.h:62:
> /root/qemu/host/include/generic/host/atomic128-ldst.h:68:15: error:
>   __sync builtin operation MUST have natural alignment (consider using __
> atomic). [-Werror,-Wsync-alignment]
>     68 |     } while (!__sync_bool_compare_and_swap_16(ptr_align, old, new.i));
>        |               ^
> In file included from ../accel/tcg/cputlb.c:32:
> In file included from /root/qemu/include/exec/helper-proto-common.h:10:
> In file included from /root/qemu/include/qemu/atomic128.h:61:
> /root/qemu/host/include/generic/host/atomic128-cas.h:36:11: error:
>   __sync builtin operation MUST have natural alignment (consider using __a
> tomic). [-Werror,-Wsync-alignment]
>     36 |     r.i = __sync_val_compare_and_swap_16(ptr_align, c.i, n.i);
>        |           ^
> 2 errors generated.
> 
> It's arguably a bug in Clang since we already use __builtin_assume_aligned()
> to tell the compiler that the pointer is properly aligned. But according to
> https://github.com/llvm/llvm-project/issues/69146 it seems like the Clang
> folks don't see an easy fix on their side and recommend to use a type
> declared with __attribute__((aligned(16))) to work around this problem.
> 
> Resolves: https://gitlab.com/qemu-project/qemu/-/issues/1934
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
>   host/include/generic/host/atomic128-cas.h  | 2 +-
>   host/include/generic/host/atomic128-ldst.h | 2 +-
>   include/qemu/int128.h                      | 1 +
>   3 files changed, 3 insertions(+), 2 deletions(-)

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


r~


  parent reply	other threads:[~2023-11-08 17:58 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-08  8:59 [PATCH] host/include/generic/host/atomic128: Fix compilation problem with Clang 17 Thomas Huth
2023-11-08  9:43 ` Philippe Mathieu-Daudé
2023-11-08 17:57 ` Richard Henderson [this message]
2023-11-13 10:34   ` Thomas Huth
2023-11-13 12:35     ` Philippe Mathieu-Daudé

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=b5945b9e-f696-4a71-b358-b95a5aaa7da9@linaro.org \
    --to=richard.henderson@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-s390x@nongnu.org \
    --cc=thuth@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).