mirror of
https://github.com/acpica/acpica/
synced 2025-01-17 14:59:56 +03:00
Added parser op cache
date 2000.05.04.20.49.00; author rmoore1; state Exp;
This commit is contained in:
parent
8b09415f56
commit
eab2898fd3
@ -213,13 +213,20 @@ DbDisplayStatistics (void)
|
||||
OsdPrintf ("Control Method Parse Trees:.% 7ld\n", SizeOfMethodTrees);
|
||||
OsdPrintf ("Named Object NTEs:..........% 7ld\n", SizeOfNTEs);
|
||||
OsdPrintf ("Named Internal Objects......% 7ld\n", SizeOfAcpiObjects);
|
||||
OsdPrintf ("Global State Cache.size.....% 7ld\n", Gbl_GenericStateCacheDepth * sizeof (ACPI_GENERIC_STATE));
|
||||
|
||||
OsdPrintf ("\n");
|
||||
|
||||
OsdPrintf ("Cache Statistics:\n\n");
|
||||
OsdPrintf ("State Cache size............% 7ld\n", Gbl_GenericStateCacheDepth * sizeof (ACPI_GENERIC_STATE));
|
||||
OsdPrintf ("State Cache requests........% 7ld\n", Gbl_StateCacheRequests);
|
||||
OsdPrintf ("State Cache depth...........% 7ld\n", Gbl_GenericStateCacheDepth);
|
||||
OsdPrintf ("Parse Cache size............% 7ld\n", Gbl_ParseCacheDepth * sizeof (ACPI_GENERIC_OP));
|
||||
OsdPrintf ("Parse Cache requests........% 7ld\n", Gbl_ParseCacheRequests);
|
||||
OsdPrintf ("Parse Cache depth...........% 7ld\n", Gbl_ParseCacheDepth);
|
||||
|
||||
OsdPrintf ("\n");
|
||||
|
||||
OsdPrintf ("Miscellaneous Statistics:\n\n");
|
||||
OsdPrintf ("Global State Cache.requests.% 7ld\n", Gbl_StateCacheRequests);
|
||||
OsdPrintf ("Global State Cache depth....% 7ld\n", Gbl_GenericStateCacheDepth);
|
||||
OsdPrintf ("Calls to PsFind:.. ........% 7ld\n", Gbl_PsFindCount);
|
||||
OsdPrintf ("Calls to NsLookup:..........% 7ld\n", Gbl_NsLookupCount);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user