Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Linux/arch/powerpc/mm/ptdump/   (Linux Kernel Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  8xx.c

  Sprache: C
 

// SPDX-License-Identifier: GPL-2.0
/*
 * From split of dump_linuxpagetables.c
 * Copyright 2016, Rashmica Gupta, IBM Corp.
 *
 */

#include <linux/kernel.h>
#include <linux/pgtable.h>

#include "ptdump.h"

static const struct flag_info flag_array[] = {
 {
#ifdef CONFIG_PPC_16K_PAGES
  .mask = _PAGE_HUGE,
  .val = _PAGE_HUGE,
#else
  .mask = _PAGE_SPS,
  .val = _PAGE_SPS,
#endif
  .set = "huge",
  .clear = "    ",
 }, {
  .mask = _PAGE_RO | _PAGE_NA,
  .val = 0,
  .set = "rw",
 }, {
  .mask = _PAGE_RO | _PAGE_NA,
  .val = _PAGE_RO,
  .set = "r ",
 }, {
  .mask = _PAGE_RO | _PAGE_NA,
  .val = _PAGE_NA,
  .set = "  ",
 }, {
  .mask = _PAGE_EXEC,
  .val = _PAGE_EXEC,
  .set = " X ",
  .clear = "   ",
 }, {
  .mask = _PAGE_PRESENT,
  .val = _PAGE_PRESENT,
  .set = "present",
  .clear = "       ",
 }, {
  .mask = _PAGE_GUARDED,
  .val = _PAGE_GUARDED,
  .set = "guarded",
  .clear = "       ",
 }, {
  .mask = _PAGE_DIRTY,
  .val = _PAGE_DIRTY,
  .set = "dirty",
  .clear = "     ",
 }, {
  .mask = _PAGE_ACCESSED,
  .val = _PAGE_ACCESSED,
  .set = "accessed",
  .clear = "        ",
 }, {
  .mask = _PAGE_NO_CACHE,
  .val = _PAGE_NO_CACHE,
  .set = "no cache",
  .clear = "        ",
 }, {
  .mask = _PAGE_SPECIAL,
  .val = _PAGE_SPECIAL,
  .set = "special",
 }
};

struct pgtable_level pg_level[5] = {
 { /* pgd */
  .flag = flag_array,
  .num = ARRAY_SIZE(flag_array),
 }, { /* p4d */
  .flag = flag_array,
  .num = ARRAY_SIZE(flag_array),
 }, { /* pud */
  .flag = flag_array,
  .num = ARRAY_SIZE(flag_array),
 }, { /* pmd */
  .flag = flag_array,
  .num = ARRAY_SIZE(flag_array),
 }, { /* pte */
  .flag = flag_array,
  .num = ARRAY_SIZE(flag_array),
 },
};

Messung V0.5 in Prozent
C=94 H=91 G=92

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet am  2026-06-05) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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 und die Messung sind noch experimentell.