1 | /* $Id: bs3-cmn-MemPrintInfo.c 96407 2022-08-22 17:43:14Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * BS3Kit - Bs3MemPrintInfo
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2007-2022 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * The contents of this file may alternatively be used under the terms
|
---|
26 | * of the Common Development and Distribution License Version 1.0
|
---|
27 | * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
|
---|
28 | * in the VirtualBox distribution, in which case the provisions of the
|
---|
29 | * CDDL are applicable instead of those of the GPL.
|
---|
30 | *
|
---|
31 | * You may elect to license modified versions of this file under the
|
---|
32 | * terms and conditions of either the GPL or the CDDL or both.
|
---|
33 | *
|
---|
34 | * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
|
---|
35 | */
|
---|
36 |
|
---|
37 |
|
---|
38 | /*********************************************************************************************************************************
|
---|
39 | * Header Files *
|
---|
40 | *********************************************************************************************************************************/
|
---|
41 | #include "bs3kit-template-header.h"
|
---|
42 | #include "bs3-cmn-memory.h"
|
---|
43 | #include <iprt/asm.h>
|
---|
44 |
|
---|
45 |
|
---|
46 | /**
|
---|
47 | * Prints a slab control structure with allocation map.
|
---|
48 | *
|
---|
49 | * @param pCtl The slab control structure to print.
|
---|
50 | * @param pszPrefix The output prefix.
|
---|
51 | */
|
---|
52 | static void Bs3MemPrintInfoSlabCtl(PBS3SLABCTL pCtl, const char BS3_FAR *pszPrefix)
|
---|
53 | {
|
---|
54 | unsigned iChunk;
|
---|
55 | Bs3TestPrintf("%s / %#06x: %u of %u chunks free", pszPrefix, pCtl->cbChunk, pCtl->cFreeChunks, pCtl->cChunks);
|
---|
56 | for (iChunk = 0; iChunk < pCtl->cChunks; iChunk++)
|
---|
57 | {
|
---|
58 | if ((iChunk & 63) == 0)
|
---|
59 | Bs3TestPrintf("\n%s:", pszPrefix);
|
---|
60 | if (ASMBitTest(pCtl->bmAllocated, iChunk))
|
---|
61 | Bs3TestPrintf((iChunk & 7) != 0 ? "x" : " x");
|
---|
62 | else
|
---|
63 | Bs3TestPrintf((iChunk & 7) != 0 ? "-" : " -");
|
---|
64 | }
|
---|
65 | Bs3TestPrintf("\n");
|
---|
66 | }
|
---|
67 |
|
---|
68 |
|
---|
69 |
|
---|
70 | /**
|
---|
71 | * Prints a summary of a slab allocation list (i.e. the heap).
|
---|
72 | *
|
---|
73 | * @param paLists Array of BS3_MEM_SLAB_LIST_COUNT lists.
|
---|
74 | * @param pszPrefix The output prefix.
|
---|
75 | */
|
---|
76 | static void Bs3MemPrintInfoSlabList(PBS3SLABHEAD paLists, const char BS3_FAR *pszPrefix)
|
---|
77 | {
|
---|
78 | unsigned iSlab;
|
---|
79 | for (iSlab = 0; iSlab < BS3_MEM_SLAB_LIST_COUNT; iSlab++)
|
---|
80 | if (paLists[iSlab].cSlabs)
|
---|
81 | Bs3TestPrintf("%s / %#06x: %u slabs, %RU32 of %RU32 chunks free\n",
|
---|
82 | pszPrefix, paLists[iSlab].cbChunk, paLists[iSlab].cSlabs,
|
---|
83 | paLists[iSlab].cFreeChunks, paLists[iSlab].cChunks);
|
---|
84 | }
|
---|
85 |
|
---|
86 |
|
---|
87 | #undef Bs3MemPrintInfo
|
---|
88 | BS3_CMN_DEF(void, Bs3MemPrintInfo,(void))
|
---|
89 | {
|
---|
90 | Bs3MemPrintInfoSlabList(g_aBs3LowSlabLists, "Lower");
|
---|
91 | Bs3MemPrintInfoSlabList(g_aBs3LowSlabLists, "Upper");
|
---|
92 | Bs3MemPrintInfoSlabCtl(&g_Bs3Mem4KLow.Core, "4KLow");
|
---|
93 | Bs3MemPrintInfoSlabCtl(&g_Bs3Mem4KUpperTiled.Core, "Tiled");
|
---|
94 | }
|
---|
95 |
|
---|