Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/scripts/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  gen_packed_field_checks.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0
// Copyright (c) 2024, Intel Corporation
#include <stdbool.h>
#include <stdio.h>

#define MAX_PACKED_FIELD_SIZE 50

int main(int argc, char **argv)
{
 /* The first macro doesn't need a 'do {} while(0)' loop */
 printf("#define CHECK_PACKED_FIELDS_1(fields) \\\n");
 printf("\tCHECK_PACKED_FIELD(fields, 0)\n\n");

 /* Remaining macros require a do/while loop, and are implemented
 * recursively by calling the previous iteration's macro.
 */

 for (int i = 2; i <= MAX_PACKED_FIELD_SIZE; i++) {
  printf("#define CHECK_PACKED_FIELDS_%d(fields) do { \\\n", i);
  printf("\tCHECK_PACKED_FIELDS_%d(fields); \\\n", i - 1);
  printf("\tCHECK_PACKED_FIELD(fields, %d); \\\n", i - 1);
  printf("} while (0)\n\n");
 }

 printf("#define CHECK_PACKED_FIELDS(fields) \\\n");

 for (int i = 1; i <= MAX_PACKED_FIELD_SIZE; i++)
  printf("\t__builtin_choose_expr(ARRAY_SIZE(fields) == %d, ({ CHECK_PACKED_FIELDS_%d(fields); }), \\\n",
         i, i);

 printf("\t({ BUILD_BUG_ON_MSG(1, \"CHECK_PACKED_FIELDS() must be regenerated to support array sizes larger than %d.\"); }) \\\n",
        MAX_PACKED_FIELD_SIZE);

 for (int i = 1; i <= MAX_PACKED_FIELD_SIZE; i++)
  printf(")");

 printf("\n");
}

34%


¤ Dauer der Verarbeitung: 0.14 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung ist noch experimentell.