From: "Marc-André Lureau" <marcandre.lureau@redhat.com>
To: John Snow <jsnow@redhat.com>
Cc: qemu-devel <qemu-devel@nongnu.org>,
"Armbruster, Markus" <armbru@redhat.com>
Subject: Re: [PATCH v3 7/9] qapi: convert 'if' C-expressions to the new syntax tree
Date: Mon, 17 May 2021 15:20:02 +0400 [thread overview]
Message-ID: <CAMxuvawvLfhYcnR4Defbkymg94N560NqjeuonE-rft2GgVQA_g@mail.gmail.com> (raw)
In-Reply-To: <4ed66620-1e7a-fbc1-78c2-1919484a7ff2@redhat.com>
[-- Attachment #1: Type: text/plain, Size: 4368 bytes --]
Hi
On Thu, May 13, 2021 at 3:51 AM John Snow <jsnow@redhat.com> wrote:
> On 4/29/21 9:40 AM, marcandre.lureau@redhat.com wrote:
> > From: Marc-André Lureau <marcandre.lureau@redhat.com>
> >
> > Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> > ---
> > qapi/machine-target.json | 20 ++++++++++++++++----
> > qapi/misc-target.json | 13 ++++++++++++-
> > 2 files changed, 28 insertions(+), 5 deletions(-)
> >
> > diff --git a/qapi/machine-target.json b/qapi/machine-target.json
> > index e7811654b7..9b56b81bea 100644
> > --- a/qapi/machine-target.json
> > +++ b/qapi/machine-target.json
> > @@ -213,7 +213,9 @@
> > ##
> > { 'struct': 'CpuModelExpansionInfo',
> > 'data': { 'model': 'CpuModelInfo' },
> > - 'if': 'defined(TARGET_S390X) || defined(TARGET_I386) ||
> defined(TARGET_ARM)' }
> > + 'if': { 'any': [ 'defined(TARGET_S390X)',
> > + 'defined(TARGET_I386)',
> > + 'defined(TARGET_ARM)'] } }
> >
> > ##
> > # @query-cpu-model-expansion:
> > @@ -252,7 +254,9 @@
> > 'data': { 'type': 'CpuModelExpansionType',
> > 'model': 'CpuModelInfo' },
> > 'returns': 'CpuModelExpansionInfo',
> > - 'if': 'defined(TARGET_S390X) || defined(TARGET_I386) ||
> defined(TARGET_ARM)' }
> > + 'if': { 'any': [ 'defined(TARGET_S390X)',
> > + 'defined(TARGET_I386)',
> > + 'defined(TARGET_ARM)' ] } }
> >
> > ##
> > # @CpuDefinitionInfo:
> > @@ -316,7 +320,11 @@
> > 'typename': 'str',
> > '*alias-of' : 'str',
> > 'deprecated' : 'bool' },
> > - 'if': 'defined(TARGET_PPC) || defined(TARGET_ARM) ||
> defined(TARGET_I386) || defined(TARGET_S390X) || defined(TARGET_MIPS)' }
> > + 'if': { 'any': [ 'defined(TARGET_PPC)',
> > + 'defined(TARGET_ARM)',
> > + 'defined(TARGET_I386)',
> > + 'defined(TARGET_S390X)',
> > + 'defined(TARGET_MIPS)' ] } }
> >
> > ##
> > # @query-cpu-definitions:
> > @@ -328,4 +336,8 @@
> > # Since: 1.2
> > ##
> > { 'command': 'query-cpu-definitions', 'returns': ['CpuDefinitionInfo'],
> > - 'if': 'defined(TARGET_PPC) || defined(TARGET_ARM) ||
> defined(TARGET_I386) || defined(TARGET_S390X) || defined(TARGET_MIPS)' }
> > + 'if': { 'any': [ 'defined(TARGET_PPC)',
> > + 'defined(TARGET_ARM)',
> > + 'defined(TARGET_I386)',
> > + 'defined(TARGET_S390X)',
> > + 'defined(TARGET_MIPS)' ] } }
> > diff --git a/qapi/misc-target.json b/qapi/misc-target.json
> > index 0c7491cd82..2891df6890 100644
> > --- a/qapi/misc-target.json
> > +++ b/qapi/misc-target.json
> > @@ -23,7 +23,18 @@
> > ##
> > { 'event': 'RTC_CHANGE',
> > 'data': { 'offset': 'int' },
> > - 'if': 'defined(TARGET_ALPHA) || defined(TARGET_ARM) ||
> defined(TARGET_HPPA) || defined(TARGET_I386) || defined(TARGET_MIPS) ||
> defined(TARGET_MIPS64) || defined(TARGET_MOXIE) || defined(TARGET_PPC) ||
> defined(TARGET_PPC64) || defined(TARGET_S390X) || defined(TARGET_SH4) ||
> defined(TARGET_SPARC)' }
> > + 'if': { 'any': [ 'defined(TARGET_ALPHA)',
> > + 'defined(TARGET_ARM)',
> > + 'defined(TARGET_HPPA)',
> > + 'defined(TARGET_I386)',
> > + 'defined(TARGET_MIPS)',
> > + 'defined(TARGET_MIPS64)',
> > + 'defined(TARGET_MOXIE)',
> > + 'defined(TARGET_PPC)',
> > + 'defined(TARGET_PPC64)',
> > + 'defined(TARGET_S390X)',
> > + 'defined(TARGET_SH4)',
> > + 'defined(TARGET_SPARC)' ] } }
> >
> > ##
> > # @rtc-reset-reinjection:
> >
>
> I suppose these are necessary to convert because they were a single
> giant string, and not actually a list.
>
> If you're going to keep the list-of-strings sugar, is it worth just
> changing these to a list of strings?
>
> (How does your rust generator handle the defined(xxx) strings? does it
> strip the defined(...) off somehow?)
>
As you figured out, the next patch removes the C-ism (this is really the
purpose of this series)
>
> Tested-by: John Snow <jsnow@redhat.com>
>
> --js
>
>
[-- Attachment #2: Type: text/html, Size: 6489 bytes --]
next prev parent reply other threads:[~2021-05-17 11:29 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-29 13:40 [PATCH v3 0/9] qapi: untie 'if' conditions from C preprocessor marcandre.lureau
2021-04-29 13:40 ` [PATCH v3 1/9] qapi: replace List[str] by QAPISchemaIfCond marcandre.lureau
2021-05-12 20:53 ` John Snow
2021-05-17 11:17 ` Marc-André Lureau
2021-05-17 16:30 ` John Snow
2021-04-29 13:40 ` [PATCH v3 2/9] qapi: move gen_if/gen_endif to QAPISchemaIfCond marcandre.lureau
2021-05-11 16:39 ` Stefan Hajnoczi
2021-05-12 12:36 ` Marc-André Lureau
2021-05-12 18:53 ` John Snow
2021-05-17 11:18 ` Marc-André Lureau
2021-05-12 21:01 ` John Snow
2021-05-21 14:35 ` Markus Armbruster
2021-04-29 13:40 ` [PATCH v3 3/9] qapi: start building an 'if' predicate tree marcandre.lureau
2021-05-12 21:39 ` John Snow
2021-05-17 11:18 ` Marc-André Lureau
2021-05-17 16:34 ` John Snow
2021-05-21 14:48 ` Markus Armbruster
2021-05-21 16:18 ` John Snow
2021-06-08 13:57 ` Markus Armbruster
2021-04-29 13:40 ` [PATCH v3 4/9] qapi: introduce IfPredicateList and IfAny marcandre.lureau
2021-05-12 23:26 ` John Snow
2021-05-17 11:18 ` Marc-André Lureau
2021-05-17 16:35 ` John Snow
2021-04-29 13:40 ` [PATCH v3 5/9] qapi: add IfNot marcandre.lureau
2021-05-12 23:32 ` John Snow
2021-04-29 13:40 ` [PATCH v3 6/9] qapi: normalize 'if' condition to IfPredicate tree marcandre.lureau
2021-05-12 23:47 ` John Snow
2021-05-17 11:18 ` Marc-André Lureau
2021-05-17 16:41 ` John Snow
2021-04-29 13:40 ` [PATCH v3 7/9] qapi: convert 'if' C-expressions to the new syntax tree marcandre.lureau
2021-05-12 23:51 ` John Snow
2021-05-17 11:20 ` Marc-André Lureau [this message]
2021-04-29 13:40 ` [PATCH v3 8/9] qapi: make 'if' condition strings simple identifiers marcandre.lureau
2021-05-12 23:56 ` John Snow
2021-04-29 13:40 ` [PATCH v3 9/9] docs: update the documentation about schema configuration marcandre.lureau
2021-05-13 0:01 ` John Snow
2021-05-11 16:52 ` [PATCH v3 0/9] qapi: untie 'if' conditions from C preprocessor Stefan Hajnoczi
2021-05-12 12:39 ` Marc-André Lureau
2021-05-12 17:43 ` Markus Armbruster
2021-05-12 18:58 ` John Snow
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=CAMxuvawvLfhYcnR4Defbkymg94N560NqjeuonE-rft2GgVQA_g@mail.gmail.com \
--to=marcandre.lureau@redhat.com \
--cc=armbru@redhat.com \
--cc=jsnow@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).