1 /******************************************************************************
3 * Module Name: dsdebug - Parser/Interpreter interface - debugging
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>
48 #ifdef ACPI_DISASSEMBLER
53 #define _COMPONENT ACPI_DISPATCHER
54 ACPI_MODULE_NAME("dsdebug")
56 #if defined(ACPI_DEBUG_OUTPUT) || defined(ACPI_DEBUGGER)
57 /* Local prototypes */
59 acpi_ds_print_node_pathname(struct acpi_namespace_node
*node
,
62 /*******************************************************************************
64 * FUNCTION: acpi_ds_print_node_pathname
66 * PARAMETERS: node - Object
67 * message - Prefix message
69 * DESCRIPTION: Print an object's full namespace pathname
70 * Manages allocation/freeing of a pathname buffer
72 ******************************************************************************/
75 acpi_ds_print_node_pathname(struct acpi_namespace_node
*node
,
78 struct acpi_buffer buffer
;
81 ACPI_FUNCTION_TRACE(ds_print_node_pathname
);
84 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DISPATCH
, "[NULL NAME]"));
88 /* Convert handle to full pathname and print it (with supplied message) */
90 buffer
.length
= ACPI_ALLOCATE_LOCAL_BUFFER
;
92 status
= acpi_ns_handle_to_pathname(node
, &buffer
, TRUE
);
93 if (ACPI_SUCCESS(status
)) {
95 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DISPATCH
, "%s ",
99 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DISPATCH
, "[%s] (Node %p)",
100 (char *)buffer
.pointer
, node
));
101 ACPI_FREE(buffer
.pointer
);
107 /*******************************************************************************
109 * FUNCTION: acpi_ds_dump_method_stack
111 * PARAMETERS: status - Method execution status
112 * walk_state - Current state of the parse tree walk
113 * op - Executing parse op
117 * DESCRIPTION: Called when a method has been aborted because of an error.
118 * Dumps the method execution stack.
120 ******************************************************************************/
123 acpi_ds_dump_method_stack(acpi_status status
,
124 struct acpi_walk_state
*walk_state
,
125 union acpi_parse_object
*op
)
127 union acpi_parse_object
*next
;
128 struct acpi_thread_state
*thread
;
129 struct acpi_walk_state
*next_walk_state
;
130 struct acpi_namespace_node
*previous_method
= NULL
;
131 union acpi_operand_object
*method_desc
;
133 ACPI_FUNCTION_TRACE(ds_dump_method_stack
);
135 /* Ignore control codes, they are not errors */
137 if ((status
& AE_CODE_MASK
) == AE_CODE_CONTROL
) {
141 /* We may be executing a deferred opcode */
143 if (walk_state
->deferred_node
) {
144 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH
,
145 "Executing subtree for Buffer/Package/Region\n"));
150 * If there is no Thread, we are not actually executing a method.
151 * This can happen when the iASL compiler calls the interpreter
152 * to perform constant folding.
154 thread
= walk_state
->thread
;
159 /* Display exception and method name */
161 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH
,
162 "\n**** Exception %s during execution of method ",
163 acpi_format_exception(status
)));
165 acpi_ds_print_node_pathname(walk_state
->method_node
, NULL
);
167 /* Display stack of executing methods */
169 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DISPATCH
,
170 "\n\nMethod Execution Stack:\n"));
171 next_walk_state
= thread
->walk_state_list
;
173 /* Walk list of linked walk states */
175 while (next_walk_state
) {
176 method_desc
= next_walk_state
->method_desc
;
178 acpi_ex_stop_trace_method((struct acpi_namespace_node
*)
179 method_desc
->method
.node
,
180 method_desc
, walk_state
);
183 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH
,
184 " Method [%4.4s] executing: ",
185 acpi_ut_get_node_name(next_walk_state
->
188 /* First method is the currently executing method */
190 if (next_walk_state
== walk_state
) {
193 /* Display currently executing ASL statement */
195 next
= op
->common
.next
;
196 op
->common
.next
= NULL
;
198 #ifdef ACPI_DISASSEMBLER
199 acpi_dm_disassemble(next_walk_state
, op
,
202 op
->common
.next
= next
;
206 * This method has called another method
207 * NOTE: the method call parse subtree is already deleted at
208 * this point, so we cannot disassemble the method invocation.
210 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DISPATCH
,
212 acpi_ds_print_node_pathname(previous_method
, NULL
);
215 previous_method
= next_walk_state
->method_node
;
216 next_walk_state
= next_walk_state
->next
;
217 ACPI_DEBUG_PRINT_RAW((ACPI_DB_DISPATCH
, "\n"));
225 acpi_ds_dump_method_stack(acpi_status status
,
226 struct acpi_walk_state
*walk_state
,
227 union acpi_parse_object
*op
)