[NTOSKRNL] Prettify the memory dumper output and add number of allocs

This commit is contained in:
Pierre Schweitzer 2017-12-29 08:58:11 +01:00
parent 78b55550bb
commit bb63841b57
No known key found for this signature in database
GPG key ID: 7545556C3D585B0B

View file

@ -492,6 +492,15 @@ MiDumpNonPagedPoolConsumers(BOOLEAN CalledFromDbg)
DPRINT1("---------------------\n"); DPRINT1("---------------------\n");
DPRINT1("Out of memory dumper!\n"); DPRINT1("Out of memory dumper!\n");
} }
else
{
KdbpPrint("Pool Used:\n");
}
//
// Print table header
//
MiDumperPrint(CalledFromDbg, "Tag\t\tAllocs\t\tUsed\n");
// //
// We'll extract allocations for all the tracked pools // We'll extract allocations for all the tracked pools
@ -527,16 +536,16 @@ MiDumpNonPagedPoolConsumers(BOOLEAN CalledFromDbg)
// //
// Print in reversed order to match what is in source code // Print in reversed order to match what is in source code
// //
MiDumperPrint(CalledFromDbg, "Tag: '%c%c%c%c', Size: %ld\n", Tag[3], Tag[2], Tag[1], Tag[0], TableEntry->NonPagedBytes); MiDumperPrint(CalledFromDbg, "'%c%c%c%c'\t\t%ld\t\t%ld\n", Tag[3], Tag[2], Tag[1], Tag[0], TableEntry->NonPagedAllocs, TableEntry->NonPagedBytes);
} }
else else
{ {
MiDumperPrint(CalledFromDbg, "Tag: %x, Size: %ld\n", TableEntry->Key, TableEntry->NonPagedBytes); MiDumperPrint(CalledFromDbg, "%x\t%ld\t\t%ld\n", TableEntry->Key, TableEntry->NonPagedAllocs, TableEntry->NonPagedBytes);
} }
} }
else else
{ {
MiDumperPrint(CalledFromDbg, "Anon, Size: %ld\n", TableEntry->NonPagedBytes); MiDumperPrint(CalledFromDbg, "Anon\t\t%ld\t\t%ld\n", TableEntry->NonPagedAllocs, TableEntry->NonPagedBytes);
} }
} }
} }