Added parser op cache

date	2000.05.04.20.49.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 16:25:36 +00:00
parent 8b09415f56
commit eab2898fd3

View File

@ -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);