[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v2] xen: Use auto as per C23


  • To: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>
  • From: Nicola Vetrini <nicola.vetrini@xxxxxxxxxxx>
  • Date: Fri, 15 Aug 2025 10:33:45 +0200
  • Arc-authentication-results: i=1; bugseng.com; arc=none smtp.remote-ip=162.55.131.47
  • Arc-message-signature: i=1; d=bugseng.com; s=openarc; a=rsa-sha256; c=relaxed/relaxed; t=1755246825; h=DKIM-Signature:MIME-Version:Date:From:To:Cc:Subject:In-Reply-To: References:Message-ID:X-Sender:Organization:Content-Type: Content-Transfer-Encoding; bh=8UX0rF92ich/Uj9FEpDrVgAcvFZxbLo++qCmo3WlKiY=; b=kUSdh+4UCl5CL+mW4xLKiptWeQKhZQXIDtLCIDHgsTm+0TDqAsnpyqJqsOrJIBbV4GHn KlB+1UgcnUQgM41SnYWbWBgDbwNPOuvtnZTTJNy+mpRXMU98mHMjpwLgve++dckFB8Pur bwCsyfCCTYOiUdJjIg52Llz1Ey8azUPl/KX7pou4dMHXneSjNrfIxW4xBz/L/zpRbX+qJ pQ1UrQ/EpiZ2MEqRJOjnCRBLVGxNWVsOBoXY4SEUQwEac9ZOUbWrTPGqfheYPTxEZg+Ut kCE3jzLu9jVrRPkq2GHdnNgXTP+tq+dqXZZFVeGDu6XU5gR7DdkUCO1KzvKfWpHHwbHa6 2oP55peO4hVBOOi9cYTvtd2baMq6eiqMb2TAUH0LVnDEfiLUvJGWuJKvxwgcglqnvuX0c Gm+mgE9ctQIsSBWM0zSv0MKQGIrRoPxUj+zKgoZ1Ti6wmzoE339etg/hUfIJ0W/yLMZ5+ bVs79b7rsWu/vvqmfCGFrz/DMO1F7vzserCYOYBuOcpRUqsl+PUth0BlJD3vVjXXyXl+h CFL0TAWygVRd2y72TxfjoBBcWExBEgxImQPQeSkVTh+M9AGJzMD13E8EJjqRAq3GykstY fYt3M0+AhECzRuIELz/9ki7LBXg7ZabPYy3LHNeXcBMmfT/EmOsQxFYEgizEaJA=
  • Arc-seal: i=1; d=bugseng.com; s=openarc; a=rsa-sha256; cv=none; t=1755246825; b=1tzPg5EpoQZvLYDDg1IgCgbcxJAFZL0uo37bFP7e7/h95Yg7DgUsYKAlUZUm67mcC68M SAhZWY2zB0UqKCV8YW700j1OYzN7DCGn5YXoxjuv65JJHh6PR3mCul6Hx1ET7ccd0GzrI umktG5r/9JMCrDEPeGk6Ka/p1qkYOOisfBS4LttOlsi/SKA5G5F9b50Zu+D0q/xeDqa39 lxsxlc7c1DJGER1z9jkjF3UmUp6bbrRs2ozsP5xrOiCJ8SEr5aeUcWksYe9BtwZc0eOsO LCXG+09upXSNm3XMKzUeYZh6gfOLMSIGXNsGtYfx2xxSBne0Mdt859XFsBeKbG7lZkoOk FLqDR78+6cSPS5Hm3AIG7SJOGAyTpN1EA42+6+wBUyTd3/hp02xKjeJSnQYk+ba+utrJL XXO25EPSDyahX0HdLE1gA3eT9gS5oaS1Vh8SIBU8pzu84JfR9Fng4udAit8UTQOdRSR1y K0CnJ6fZujgjgSWZH5273EhA6aAaKUYVirREnszz+k9ifhUHDUlCXYSV4WSzxmlxzfq8e cTWk+yOh4dBtF8K032fbnEA5p+UG/0HgF7PIkB2yo9M0jtCgbQ0N54TZqW4Xh3KR69xD6 0Q08YxCxhSXyx4onMxQ/mR+4tHCU3TDtyrYH07nX5nuYXWLtd0kwSUlt9pswZRk=
  • Authentication-results: bugseng.com; arc=none smtp.remote-ip=162.55.131.47
  • Cc: Xen-devel <xen-devel@xxxxxxxxxxxxxxxxxxxx>, Anthony PERARD <anthony.perard@xxxxxxxxxx>, Michal Orzel <michal.orzel@xxxxxxx>, Jan Beulich <jbeulich@xxxxxxxx>, Julien Grall <julien@xxxxxxx>, Roger Pau Monné <roger.pau@xxxxxxxxxx>, Stefano Stabellini <sstabellini@xxxxxxxxxx>, Roberto Bagnara <roberto.bagnara@xxxxxxxxxxx>, "consulting @ bugseng . com" <consulting@xxxxxxxxxxx>
  • Delivery-date: Fri, 15 Aug 2025 08:33:52 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>

On 2025-08-15 10:17, Andrew Cooper wrote:
On 15/08/2025 8:20 am, Nicola Vetrini wrote:
On 2025-08-15 00:25, Andrew Cooper wrote:
In macros it is common to declare local variables using typeof(param)
in order
to ensure that side effects are only evaluated once.  A consequence
of this is
double textural expansion of the parameter, which can get out of hand
very
quickly with nested macros.

In C23, the auto keyword has been repurposed to perform type inference.

A GCC extension, __auto_type, is now avaialble in the new toolchain
baseline
and avoids the double textural expansion.

Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx>

Reviewed-by: Nicola Vetrini <nicola.vetrini@xxxxxxxxxxx>

Thankyou.


diff --git a/xen/include/xen/compiler.h b/xen/include/xen/compiler.h
index 88bf26bc5109..38ef5d82ad95 100644
--- a/xen/include/xen/compiler.h
+++ b/xen/include/xen/compiler.h
@@ -64,6 +64,20 @@
 # define asm_inline asm
 #endif

+/*
+ * In C23, the auto keyword has been repurposed to perform type
inference.
+ *
+ * This behaviour is available via the __auto_type extension in
supported
+ * toolchains.
+ *
+ *
https://www.gnu.org/software/c-intro-and-ref/manual/html_node/Auto-Type.html
+ * https://clang.llvm.org/docs/LanguageExtensions.html#auto-type
+ */
+#if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 202311L
+/* SAF-3-safe MISRA C Rule 20.4: Giving the keyword it's C23
meaning. */
+#define auto __auto_type
+#endif
+

A more detailed explanation should live in deviations.rst under this
bullet point

   * - R20.4
     - The override of the keyword \"inline\" in xen/compiler.h is
present so
       that section contents checks pass when the compiler chooses not to
       inline a particular function.
     - Comment-based deviation.

as described in the SAF entry:

        {
            "id": "SAF-3-safe",
            "analyser": {
                "eclair": "MC3A2.R20.4"
            },
            "name": "MC3A2.R20.4: allow the definition of a macro with
the same name as a keyword in some special cases",
            "text": "The definition of a macro with the same name as a
keyword can be useful in certain configurations to improve the
guarantees that can be provided by Xen. See docs/misra/deviations.rst
for a precise rationale for all such cases."
        },

Ah right.  What about this:

"Xen does not use the \"auto\" keyword as a storage qualifier.  The
override of the keyword \"auto\" in xen/compiler.h is to give it it's
C23 behaviour of type inference."

?


Seems good to me. Maybe this should be spelled out in ./CODING_STYLE as well, so that newcomers don't trip over this?

~Andrew

P.S. I thought that final fix was too easy.  Your instructions for the
main config were spot on and worked first time, except for getting the
R20.4 violation too.

Yeah, forgot about that one; it's not so common to override keywords.

--
Nicola Vetrini, B.Sc.
Software Engineer
BUGSENG (https://bugseng.com)
LinkedIn: https://www.linkedin.com/in/nicola-vetrini-a42471253



 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.