1 /*******************************************************************************
3 * Module Name: dbstats - Generation and display of ACPI table statistics
5 ******************************************************************************/
8 * Copyright (C) 2000 - 2016, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
44 #include <acpi/acpi.h>
49 #define _COMPONENT ACPI_CA_DEBUGGER
50 ACPI_MODULE_NAME("dbstats")
52 /* Local prototypes */
53 static void acpi_db_count_namespace_objects(void);
55 static void acpi_db_enumerate_object(union acpi_operand_object
*obj_desc
);
58 acpi_db_classify_one_object(acpi_handle obj_handle
,
60 void *context
, void **return_value
);
62 #if defined ACPI_DBG_TRACK_ALLOCATIONS || defined ACPI_USE_LOCAL_CACHE
63 static void acpi_db_list_info(struct acpi_memory_list
*list
);
67 * Statistics subcommands
69 static struct acpi_db_argument_info acpi_db_stat_types
[] = {
77 {NULL
} /* Must be null terminated */
80 #define CMD_STAT_ALLOCATIONS 0
81 #define CMD_STAT_OBJECTS 1
82 #define CMD_STAT_MEMORY 2
83 #define CMD_STAT_MISC 3
84 #define CMD_STAT_TABLES 4
85 #define CMD_STAT_SIZES 5
86 #define CMD_STAT_STACK 6
88 #if defined ACPI_DBG_TRACK_ALLOCATIONS || defined ACPI_USE_LOCAL_CACHE
89 /*******************************************************************************
91 * FUNCTION: acpi_db_list_info
93 * PARAMETERS: list - Memory list/cache to be displayed
97 * DESCRIPTION: Display information about the input memory list or cache.
99 ******************************************************************************/
101 static void acpi_db_list_info(struct acpi_memory_list
*list
)
103 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
107 acpi_os_printf("\n%s\n", list
->list_name
);
109 /* max_depth > 0 indicates a cache object */
111 if (list
->max_depth
> 0) {
113 (" Cache: [Depth MaxD Avail Size] "
114 "%8.2X %8.2X %8.2X %8.2X\n", list
->current_depth
,
115 list
->max_depth
, list
->max_depth
- list
->current_depth
,
116 (list
->current_depth
* list
->object_size
));
118 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
119 if (list
->max_depth
> 0) {
121 (" Cache: [Requests Hits Misses ObjSize] "
122 "%8.2X %8.2X %8.2X %8.2X\n", list
->requests
, list
->hits
,
123 list
->requests
- list
->hits
, list
->object_size
);
126 outstanding
= acpi_db_get_cache_info(list
);
128 if (list
->object_size
) {
130 (" Mem: [Alloc Free Max CurSize Outstanding] "
131 "%8.2X %8.2X %8.2X %8.2X %8.2X\n", list
->total_allocated
,
132 list
->total_freed
, list
->max_occupied
,
133 outstanding
* list
->object_size
, outstanding
);
136 (" Mem: [Alloc Free Max CurSize Outstanding Total] "
137 "%8.2X %8.2X %8.2X %8.2X %8.2X %8.2X\n",
138 list
->total_allocated
, list
->total_freed
,
139 list
->max_occupied
, list
->current_total_size
, outstanding
,
146 /*******************************************************************************
148 * FUNCTION: acpi_db_enumerate_object
150 * PARAMETERS: obj_desc - Object to be counted
154 * DESCRIPTION: Add this object to the global counts, by object type.
155 * Limited recursion handles subobjects and packages, and this
156 * is probably acceptable within the AML debugger only.
158 ******************************************************************************/
160 static void acpi_db_enumerate_object(union acpi_operand_object
*obj_desc
)
168 /* Enumerate this object first */
170 acpi_gbl_num_objects
++;
172 if (obj_desc
->common
.type
> ACPI_TYPE_NS_NODE_MAX
) {
173 acpi_gbl_obj_type_count_misc
++;
175 acpi_gbl_obj_type_count
[obj_desc
->common
.type
]++;
178 /* Count the sub-objects */
180 switch (obj_desc
->common
.type
) {
181 case ACPI_TYPE_PACKAGE
:
183 for (i
= 0; i
< obj_desc
->package
.count
; i
++) {
184 acpi_db_enumerate_object(obj_desc
->package
.elements
[i
]);
188 case ACPI_TYPE_DEVICE
:
190 acpi_db_enumerate_object(obj_desc
->device
.notify_list
[0]);
191 acpi_db_enumerate_object(obj_desc
->device
.notify_list
[1]);
192 acpi_db_enumerate_object(obj_desc
->device
.handler
);
195 case ACPI_TYPE_BUFFER_FIELD
:
197 if (acpi_ns_get_secondary_object(obj_desc
)) {
198 acpi_gbl_obj_type_count
[ACPI_TYPE_BUFFER_FIELD
]++;
202 case ACPI_TYPE_REGION
:
204 acpi_gbl_obj_type_count
[ACPI_TYPE_LOCAL_REGION_FIELD
]++;
205 acpi_db_enumerate_object(obj_desc
->region
.handler
);
208 case ACPI_TYPE_POWER
:
210 acpi_db_enumerate_object(obj_desc
->power_resource
.
212 acpi_db_enumerate_object(obj_desc
->power_resource
.
216 case ACPI_TYPE_PROCESSOR
:
218 acpi_db_enumerate_object(obj_desc
->processor
.notify_list
[0]);
219 acpi_db_enumerate_object(obj_desc
->processor
.notify_list
[1]);
220 acpi_db_enumerate_object(obj_desc
->processor
.handler
);
223 case ACPI_TYPE_THERMAL
:
225 acpi_db_enumerate_object(obj_desc
->thermal_zone
.notify_list
[0]);
226 acpi_db_enumerate_object(obj_desc
->thermal_zone
.notify_list
[1]);
227 acpi_db_enumerate_object(obj_desc
->thermal_zone
.handler
);
236 /*******************************************************************************
238 * FUNCTION: acpi_db_classify_one_object
240 * PARAMETERS: Callback for walk_namespace
244 * DESCRIPTION: Enumerate both the object descriptor (including subobjects) and
245 * the parent namespace node.
247 ******************************************************************************/
250 acpi_db_classify_one_object(acpi_handle obj_handle
,
252 void *context
, void **return_value
)
254 struct acpi_namespace_node
*node
;
255 union acpi_operand_object
*obj_desc
;
258 acpi_gbl_num_nodes
++;
260 node
= (struct acpi_namespace_node
*)obj_handle
;
261 obj_desc
= acpi_ns_get_attached_object(node
);
263 acpi_db_enumerate_object(obj_desc
);
266 if (type
> ACPI_TYPE_NS_NODE_MAX
) {
267 acpi_gbl_node_type_count_misc
++;
269 acpi_gbl_node_type_count
[type
]++;
274 #ifdef ACPI_FUTURE_IMPLEMENTATION
276 /* TBD: These need to be counted during the initial parsing phase */
278 if (acpi_ps_is_named_op(op
->opcode
)) {
283 num_method_elements
++;
286 num_grammar_elements
++;
287 op
= acpi_ps_get_depth_next(root
, op
);
289 size_of_parse_tree
= (num_grammar_elements
- num_method_elements
) *
290 (u32
)sizeof(union acpi_parse_object
);
291 size_of_method_trees
=
292 num_method_elements
* (u32
)sizeof(union acpi_parse_object
);
293 size_of_node_entries
=
294 num_nodes
* (u32
)sizeof(struct acpi_namespace_node
);
295 size_of_acpi_objects
=
296 num_nodes
* (u32
)sizeof(union acpi_operand_object
);
300 /*******************************************************************************
302 * FUNCTION: acpi_db_count_namespace_objects
308 * DESCRIPTION: Count and classify the entire namespace, including all
309 * namespace nodes and attached objects.
311 ******************************************************************************/
313 static void acpi_db_count_namespace_objects(void)
317 acpi_gbl_num_nodes
= 0;
318 acpi_gbl_num_objects
= 0;
320 acpi_gbl_obj_type_count_misc
= 0;
321 for (i
= 0; i
< (ACPI_TYPE_NS_NODE_MAX
- 1); i
++) {
322 acpi_gbl_obj_type_count
[i
] = 0;
323 acpi_gbl_node_type_count
[i
] = 0;
326 (void)acpi_ns_walk_namespace(ACPI_TYPE_ANY
, ACPI_ROOT_OBJECT
,
327 ACPI_UINT32_MAX
, FALSE
,
328 acpi_db_classify_one_object
, NULL
, NULL
,
332 /*******************************************************************************
334 * FUNCTION: acpi_db_display_statistics
336 * PARAMETERS: type_arg - Subcommand
340 * DESCRIPTION: Display various statistics
342 ******************************************************************************/
344 acpi_status
acpi_db_display_statistics(char *type_arg
)
349 acpi_ut_strupr(type_arg
);
350 temp
= acpi_db_match_argument(type_arg
, acpi_db_stat_types
);
351 if (temp
== ACPI_TYPE_NOT_FOUND
) {
352 acpi_os_printf("Invalid or unsupported argument\n");
357 case CMD_STAT_ALLOCATIONS
:
359 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
360 acpi_ut_dump_allocation_info();
364 case CMD_STAT_TABLES
:
366 acpi_os_printf("ACPI Table Information (not implemented):\n\n");
369 case CMD_STAT_OBJECTS
:
371 acpi_db_count_namespace_objects();
374 ("\nObjects defined in the current namespace:\n\n");
376 acpi_os_printf("%16.16s %10.10s %10.10s\n",
377 "ACPI_TYPE", "NODES", "OBJECTS");
379 for (i
= 0; i
< ACPI_TYPE_NS_NODE_MAX
; i
++) {
380 acpi_os_printf("%16.16s % 10ld% 10ld\n",
381 acpi_ut_get_type_name(i
),
382 acpi_gbl_node_type_count
[i
],
383 acpi_gbl_obj_type_count
[i
]);
386 acpi_os_printf("%16.16s % 10ld% 10ld\n", "Misc/Unknown",
387 acpi_gbl_node_type_count_misc
,
388 acpi_gbl_obj_type_count_misc
);
390 acpi_os_printf("%16.16s % 10ld% 10ld\n", "TOTALS:",
391 acpi_gbl_num_nodes
, acpi_gbl_num_objects
);
394 case CMD_STAT_MEMORY
:
396 #ifdef ACPI_DBG_TRACK_ALLOCATIONS
398 ("\n----Object Statistics (all in hex)---------\n");
400 acpi_db_list_info(acpi_gbl_global_list
);
401 acpi_db_list_info(acpi_gbl_ns_node_list
);
404 #ifdef ACPI_USE_LOCAL_CACHE
406 ("\n----Cache Statistics (all in hex)---------\n");
407 acpi_db_list_info(acpi_gbl_operand_cache
);
408 acpi_db_list_info(acpi_gbl_ps_node_cache
);
409 acpi_db_list_info(acpi_gbl_ps_node_ext_cache
);
410 acpi_db_list_info(acpi_gbl_state_cache
);
417 acpi_os_printf("\nMiscellaneous Statistics:\n\n");
418 acpi_os_printf("Calls to AcpiPsFind:.. ........% 7ld\n",
419 acpi_gbl_ps_find_count
);
420 acpi_os_printf("Calls to AcpiNsLookup:..........% 7ld\n",
421 acpi_gbl_ns_lookup_count
);
423 acpi_os_printf("\n");
425 acpi_os_printf("Mutex usage:\n\n");
426 for (i
= 0; i
< ACPI_NUM_MUTEX
; i
++) {
427 acpi_os_printf("%-28s: % 7ld\n",
428 acpi_ut_get_mutex_name(i
),
429 acpi_gbl_mutex_info
[i
].use_count
);
435 acpi_os_printf("\nInternal object sizes:\n\n");
437 acpi_os_printf("Common %3d\n",
438 sizeof(struct acpi_object_common
));
439 acpi_os_printf("Number %3d\n",
440 sizeof(struct acpi_object_integer
));
441 acpi_os_printf("String %3d\n",
442 sizeof(struct acpi_object_string
));
443 acpi_os_printf("Buffer %3d\n",
444 sizeof(struct acpi_object_buffer
));
445 acpi_os_printf("Package %3d\n",
446 sizeof(struct acpi_object_package
));
447 acpi_os_printf("BufferField %3d\n",
448 sizeof(struct acpi_object_buffer_field
));
449 acpi_os_printf("Device %3d\n",
450 sizeof(struct acpi_object_device
));
451 acpi_os_printf("Event %3d\n",
452 sizeof(struct acpi_object_event
));
453 acpi_os_printf("Method %3d\n",
454 sizeof(struct acpi_object_method
));
455 acpi_os_printf("Mutex %3d\n",
456 sizeof(struct acpi_object_mutex
));
457 acpi_os_printf("Region %3d\n",
458 sizeof(struct acpi_object_region
));
459 acpi_os_printf("PowerResource %3d\n",
460 sizeof(struct acpi_object_power_resource
));
461 acpi_os_printf("Processor %3d\n",
462 sizeof(struct acpi_object_processor
));
463 acpi_os_printf("ThermalZone %3d\n",
464 sizeof(struct acpi_object_thermal_zone
));
465 acpi_os_printf("RegionField %3d\n",
466 sizeof(struct acpi_object_region_field
));
467 acpi_os_printf("BankField %3d\n",
468 sizeof(struct acpi_object_bank_field
));
469 acpi_os_printf("IndexField %3d\n",
470 sizeof(struct acpi_object_index_field
));
471 acpi_os_printf("Reference %3d\n",
472 sizeof(struct acpi_object_reference
));
473 acpi_os_printf("Notify %3d\n",
474 sizeof(struct acpi_object_notify_handler
));
475 acpi_os_printf("AddressSpace %3d\n",
476 sizeof(struct acpi_object_addr_handler
));
477 acpi_os_printf("Extra %3d\n",
478 sizeof(struct acpi_object_extra
));
479 acpi_os_printf("Data %3d\n",
480 sizeof(struct acpi_object_data
));
482 acpi_os_printf("\n");
484 acpi_os_printf("ParseObject %3d\n",
485 sizeof(struct acpi_parse_obj_common
));
486 acpi_os_printf("ParseObjectNamed %3d\n",
487 sizeof(struct acpi_parse_obj_named
));
488 acpi_os_printf("ParseObjectAsl %3d\n",
489 sizeof(struct acpi_parse_obj_asl
));
490 acpi_os_printf("OperandObject %3d\n",
491 sizeof(union acpi_operand_object
));
492 acpi_os_printf("NamespaceNode %3d\n",
493 sizeof(struct acpi_namespace_node
));
494 acpi_os_printf("AcpiObject %3d\n",
495 sizeof(union acpi_object
));
497 acpi_os_printf("\n");
499 acpi_os_printf("Generic State %3d\n",
500 sizeof(union acpi_generic_state
));
501 acpi_os_printf("Common State %3d\n",
502 sizeof(struct acpi_common_state
));
503 acpi_os_printf("Control State %3d\n",
504 sizeof(struct acpi_control_state
));
505 acpi_os_printf("Update State %3d\n",
506 sizeof(struct acpi_update_state
));
507 acpi_os_printf("Scope State %3d\n",
508 sizeof(struct acpi_scope_state
));
509 acpi_os_printf("Parse Scope %3d\n",
510 sizeof(struct acpi_pscope_state
));
511 acpi_os_printf("Package State %3d\n",
512 sizeof(struct acpi_pkg_state
));
513 acpi_os_printf("Thread State %3d\n",
514 sizeof(struct acpi_thread_state
));
515 acpi_os_printf("Result Values %3d\n",
516 sizeof(struct acpi_result_values
));
517 acpi_os_printf("Notify Info %3d\n",
518 sizeof(struct acpi_notify_info
));
522 #if defined(ACPI_DEBUG_OUTPUT)
525 (u32
)ACPI_PTR_DIFF(acpi_gbl_entry_stack_pointer
,
526 acpi_gbl_lowest_stack_pointer
);
528 acpi_os_printf("\nSubsystem Stack Usage:\n\n");
529 acpi_os_printf("Entry Stack Pointer %p\n",
530 acpi_gbl_entry_stack_pointer
);
531 acpi_os_printf("Lowest Stack Pointer %p\n",
532 acpi_gbl_lowest_stack_pointer
);
533 acpi_os_printf("Stack Use %X (%u)\n", temp
,
535 acpi_os_printf("Deepest Procedure Nesting %u\n",
536 acpi_gbl_deepest_nesting
);
545 acpi_os_printf("\n");