qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Peter Maydell <peter.maydell@linaro.org>
To: Cornelia Huck <cohuck@redhat.com>
Cc: eric.auger.pro@gmail.com, eric.auger@redhat.com,
	qemu-devel@nongnu.org,  qemu-arm@nongnu.org,
	kvmarm@lists.linux.dev, richard.henderson@linaro.org,
	 alex.bennee@linaro.org, maz@kernel.org, oliver.upton@linux.dev,
	 sebott@redhat.com, shameerali.kolothum.thodi@huawei.com,
	armbru@redhat.com,  berrange@redhat.com, abologna@redhat.com,
	jdenemar@redhat.com,  agraf@csgraf.de, shahuang@redhat.com,
	mark.rutland@arm.com, philmd@linaro.org,  pbonzini@redhat.com
Subject: Re: [PATCH v7 08/14] arm/cpu: Store id_isar0-7 into the idregs array
Date: Thu, 12 Jun 2025 16:39:04 +0100	[thread overview]
Message-ID: <CAFEAcA-rYNaaZ3LFFkhek0duptPeMXUBbPbBnWa7teNPM+c6ug@mail.gmail.com> (raw)
In-Reply-To: <87a56d9dlb.fsf@redhat.com>

On Thu, 12 Jun 2025 at 16:36, Cornelia Huck <cohuck@redhat.com> wrote:
>
> On Thu, Jun 12 2025, Peter Maydell <peter.maydell@linaro.org> wrote:
>
> > On Thu, 15 May 2025 at 16:40, Cornelia Huck <cohuck@redhat.com> wrote:
> >>
> >> From: Eric Auger <eric.auger@redhat.com>
> >>
> >> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
> >> Reviewed-by: Sebastian Ott <sebott@redhat.com>
> >> Signed-off-by: Eric Auger <eric.auger@redhat.com>
> >> Signed-off-by: Cornelia Huck <cohuck@redhat.com>
> >> ---
> >>  hw/intc/armv7m_nvic.c     |  12 ++--
> >>  target/arm/cpu-features.h |  36 +++++-----
> >>  target/arm/cpu.c          |  24 +++----
> >>  target/arm/cpu.h          |   7 --
> >>  target/arm/cpu64.c        |  28 ++++----
> >>  target/arm/helper.c       |  14 ++--
> >>  target/arm/kvm.c          |  21 ++----
> >>  target/arm/tcg/cpu-v7m.c  |  90 +++++++++++++-----------
> >>  target/arm/tcg/cpu32.c    | 144 +++++++++++++++++++++-----------------
> >>  target/arm/tcg/cpu64.c    | 108 ++++++++++++++--------------
> >>  10 files changed, 243 insertions(+), 241 deletions(-)
> >
> > This doesn't compile:
> >
> > ../../target/arm/tcg/cpu-v7m.c:70:5: error: incompatible pointer types
> > initializing 'ARMISARe
> > gisters *' (aka 'struct ARMISARegisters *') with an expression of type
> > 'uint64_t *' (aka 'unsigned long *')
> > [-Werror,-Wincompatible-pointer-types]
> >    70 |     SET_IDREG(idregs, ID_ISAR0, 0x01141110);
> >       |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > ../../target/arm/cpu.h:875:26: note: expanded from macro 'SET_IDREG'
> >   875 |         ARMISARegisters *i_ = (ISAR);
> >          \
> >       |                          ^    ~~~~~~
> > ../../target/arm/tcg/cpu-v7m.c:71:5: error: incompatible pointer types
> > initializing 'ARMISARegisters *' (aka 'struct ARMISARegisters *') with
> > an expression of type 'uint64_t *' (aka 'unsigned long *')
> > [-Werror,-Wincompatible-pointer-types]
> >    71 |     SET_IDREG(idregs, ID_ISAR1, 0x02111000);
> >       |     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
> > ../../target/arm/cpu.h:875:26: note: expanded from macro 'SET_IDREG'
> >   875 |         ARMISARegisters *i_ = (ISAR);
> >          \
> >       |                          ^    ~~~~~~
> >
> > (and more similar errors until the compiler gives up).
>
> What configs/compiler are you using? I obviously would have fixed that
> if I had hit it...

This is clang 18.1.3 (1ubuntu1) on x86-64 Linux, configured with

'../../configure' '--cc=clang' '--cxx=clang++' '--enable-ubsan'
'--target-list=arm-softmmu,arm-linux-user,aarch64-softmmu,aarch64-linux-user'

Whatever the problem is, it goes away on a later patch, so probably
it's just that some fragment in a later patch needs to move into
this one.

thanks
-- PMM


  reply	other threads:[~2025-06-12 15:39 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-15 15:38 [PATCH v7 00/14] arm: rework id register storage Cornelia Huck
2025-05-15 15:38 ` [PATCH v7 01/14] arm/cpu: Add sysreg definitions in cpu-sysregs.h Cornelia Huck
2025-05-15 15:38 ` [PATCH v7 02/14] arm/cpu: Store aa64isar0/aa64zfr0 into the idregs arrays Cornelia Huck
2025-06-12 15:04   ` Peter Maydell
2025-06-12 15:34     ` Cornelia Huck
2025-06-12 15:39       ` Peter Maydell
2025-05-15 15:38 ` [PATCH v7 03/14] arm/cpu: Store aa64isar1/2 into the idregs array Cornelia Huck
2025-05-15 15:38 ` [PATCH v7 04/14] arm/cpu: Store aa64pfr0/1 " Cornelia Huck
2025-05-15 15:38 ` [PATCH v7 05/14] arm/cpu: Store aa64mmfr0-3 " Cornelia Huck
2025-05-15 15:38 ` [PATCH v7 06/14] arm/cpu: Store aa64dfr0/1 " Cornelia Huck
2025-05-15 15:39 ` [PATCH v7 07/14] arm/cpu: Store aa64smfr0 " Cornelia Huck
2025-05-15 15:39 ` [PATCH v7 08/14] arm/cpu: Store id_isar0-7 " Cornelia Huck
2025-06-12 15:16   ` Peter Maydell
2025-06-12 15:36     ` Cornelia Huck
2025-06-12 15:39       ` Peter Maydell [this message]
2025-06-12 15:53         ` Cornelia Huck
2025-05-15 15:39 ` [PATCH v7 09/14] arm/cpu: Store id_pfr0/1/2 " Cornelia Huck
2025-05-15 15:39 ` [PATCH v7 10/14] arm/cpu: Store id_dfr0/1 " Cornelia Huck
2025-05-15 15:39 ` [PATCH v7 11/14] arm/cpu: Store id_mmfr0-5 " Cornelia Huck
2025-05-15 15:39 ` [PATCH v7 12/14] arm/cpu: Add sysreg generation scripts Cornelia Huck
2025-06-12 15:29   ` Peter Maydell
2025-06-12 15:42     ` Cornelia Huck
2025-05-15 15:39 ` [PATCH v7 13/14] arm/cpu: switch to a generated cpu-sysregs.h.inc Cornelia Huck
2025-06-12 15:35   ` Peter Maydell
2025-06-12 16:07     ` Cornelia Huck
2025-05-15 15:39 ` [PATCH v7 14/14] arm/kvm: use fd instead of fdarray[2] Cornelia Huck
2025-06-06  9:53 ` [PATCH v7 00/14] arm: rework id register storage Cornelia Huck
2025-06-12 15:36   ` Peter Maydell

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=CAFEAcA-rYNaaZ3LFFkhek0duptPeMXUBbPbBnWa7teNPM+c6ug@mail.gmail.com \
    --to=peter.maydell@linaro.org \
    --cc=abologna@redhat.com \
    --cc=agraf@csgraf.de \
    --cc=alex.bennee@linaro.org \
    --cc=armbru@redhat.com \
    --cc=berrange@redhat.com \
    --cc=cohuck@redhat.com \
    --cc=eric.auger.pro@gmail.com \
    --cc=eric.auger@redhat.com \
    --cc=jdenemar@redhat.com \
    --cc=kvmarm@lists.linux.dev \
    --cc=mark.rutland@arm.com \
    --cc=maz@kernel.org \
    --cc=oliver.upton@linux.dev \
    --cc=pbonzini@redhat.com \
    --cc=philmd@linaro.org \
    --cc=qemu-arm@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=richard.henderson@linaro.org \
    --cc=sebott@redhat.com \
    --cc=shahuang@redhat.com \
    --cc=shameerali.kolothum.thodi@huawei.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).