Update ACPI build wrappers to use new ACPICA(20050309) code.
[dragonfly.git] / sys / contrib / dev / acpica-unix-20050211 / disassembler / dmobject.c
blob157fc463ef447f61510e8963d262a101dc81cfd0
1 /*******************************************************************************
3 * Module Name: dmobject - ACPI object decode and display
4 * $Revision: 12 $
6 ******************************************************************************/
8 /******************************************************************************
10 * 1. Copyright Notice
12 * Some or all of this work - Copyright (c) 1999 - 2005, Intel Corp.
13 * All rights reserved.
15 * 2. License
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights. You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
20 * property rights.
22 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
23 * copy of the source code appearing in this file ("Covered Code") an
24 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
25 * base code distributed originally by Intel ("Original Intel Code") to copy,
26 * make derivatives, distribute, use and display any portion of the Covered
27 * Code in any form, with the right to sublicense such rights; and
29 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
30 * license (with the right to sublicense), under only those claims of Intel
31 * patents that are infringed by the Original Intel Code, to make, use, sell,
32 * offer to sell, and import the Covered Code and derivative works thereof
33 * solely to the minimum extent necessary to exercise the above copyright
34 * license, and in no event shall the patent license extend to any additions
35 * to or modifications of the Original Intel Code. No other license or right
36 * is granted directly or by implication, estoppel or otherwise;
38 * The above copyright and patent license is granted only if the following
39 * conditions are met:
41 * 3. Conditions
43 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
44 * Redistribution of source code of any substantial portion of the Covered
45 * Code or modification with rights to further distribute source must include
46 * the above Copyright Notice, the above License, this list of Conditions,
47 * and the following Disclaimer and Export Compliance provision. In addition,
48 * Licensee must cause all Covered Code to which Licensee contributes to
49 * contain a file documenting the changes Licensee made to create that Covered
50 * Code and the date of any change. Licensee must include in that file the
51 * documentation of any changes made by any predecessor Licensee. Licensee
52 * must include a prominent statement that the modification is derived,
53 * directly or indirectly, from Original Intel Code.
55 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
56 * Redistribution of source code of any substantial portion of the Covered
57 * Code or modification without rights to further distribute source must
58 * include the following Disclaimer and Export Compliance provision in the
59 * documentation and/or other materials provided with distribution. In
60 * addition, Licensee may not authorize further sublicense of source of any
61 * portion of the Covered Code, and must include terms to the effect that the
62 * license from Licensee to its licensee is limited to the intellectual
63 * property embodied in the software Licensee provides to its licensee, and
64 * not to intellectual property embodied in modifications its licensee may
65 * make.
67 * 3.3. Redistribution of Executable. Redistribution in executable form of any
68 * substantial portion of the Covered Code or modification must reproduce the
69 * above Copyright Notice, and the following Disclaimer and Export Compliance
70 * provision in the documentation and/or other materials provided with the
71 * distribution.
73 * 3.4. Intel retains all right, title, and interest in and to the Original
74 * Intel Code.
76 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
77 * Intel shall be used in advertising or otherwise to promote the sale, use or
78 * other dealings in products derived from or relating to the Covered Code
79 * without prior written authorization from Intel.
81 * 4. Disclaimer and Export Compliance
83 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
84 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
85 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
86 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
87 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
88 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
89 * PARTICULAR PURPOSE.
91 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
92 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
93 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
94 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
95 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
96 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
97 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
98 * LIMITED REMEDY.
100 * 4.3. Licensee shall not export, either directly or indirectly, any of this
101 * software or system incorporating such software without first obtaining any
102 * required license or other approval from the U. S. Department of Commerce or
103 * any other agency or department of the United States Government. In the
104 * event Licensee exports any such software from the United States or
105 * re-exports any such software from a foreign destination, Licensee shall
106 * ensure that the distribution and export/re-export of the software is in
107 * compliance with all laws, regulations, orders, or other restrictions of the
108 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
109 * any of its subsidiaries will export/re-export any technical data, process,
110 * software, or service, directly or indirectly, to any country for which the
111 * United States government or any agency thereof requires an export license,
112 * other governmental approval, or letter of assurance, without first obtaining
113 * such license, approval or letter.
115 *****************************************************************************/
118 #include "acpi.h"
119 #include "amlcode.h"
120 #include "acnamesp.h"
121 #include "acdisasm.h"
122 #include "acparser.h"
125 #ifdef ACPI_DISASSEMBLER
127 #define _COMPONENT ACPI_CA_DEBUGGER
128 ACPI_MODULE_NAME ("dmnames")
131 /*****************************************************************************
133 * FUNCTION: AcpiDmDumpMethodInfo
135 * PARAMETERS: Status - Method execution status
136 * WalkState - Current state of the parse tree walk
137 * Op - Executing parse op
139 * RETURN: None
141 * DESCRIPTION: Called when a method has been aborted because of an error.
142 * Dumps the method execution stack, and the method locals/args,
143 * and disassembles the AML opcode that failed.
145 ****************************************************************************/
147 void
148 AcpiDmDumpMethodInfo (
149 ACPI_STATUS Status,
150 ACPI_WALK_STATE *WalkState,
151 ACPI_PARSE_OBJECT *Op)
153 ACPI_PARSE_OBJECT *Next;
154 ACPI_THREAD_STATE *Thread;
155 ACPI_WALK_STATE *NextWalkState;
156 ACPI_NAMESPACE_NODE *PreviousMethod = NULL;
159 /* Ignore control codes, they are not errors */
161 if ((Status & AE_CODE_MASK) == AE_CODE_CONTROL)
163 return;
166 /* We may be executing a deferred opcode */
168 if (WalkState->DeferredNode)
170 AcpiOsPrintf ("Executing subtree for Buffer/Package/Region\n");
171 return;
174 /* Display exception and method name */
176 AcpiOsPrintf ("\n**** Exception %s during execution of method ",
177 AcpiFormatException (Status));
178 AcpiNsPrintNodePathname (WalkState->MethodNode, NULL);
180 /* Display stack of executing methods */
182 AcpiOsPrintf ("\n\nMethod Execution Stack:\n");
183 Thread = WalkState->Thread;
184 NextWalkState = Thread->WalkStateList;
186 /* Walk list of linked walk states */
188 while (NextWalkState)
190 AcpiOsPrintf (" Method [%4.4s] executing: ",
191 AcpiUtGetNodeName (NextWalkState->MethodNode));
193 /* First method is the currently executing method */
195 if (NextWalkState == WalkState)
197 /* Display currently executing ASL statement */
199 Next = Op->Common.Next;
200 Op->Common.Next = NULL;
202 AcpiDmDisassemble (NextWalkState, Op, ACPI_UINT32_MAX);
203 Op->Common.Next = Next;
205 else
208 * This method has called another method
209 * NOTE: the method call parse subtree is already deleted at this
210 * point, so we cannot disassemble the method invocation.
212 AcpiOsPrintf ("Call to method ");
213 AcpiNsPrintNodePathname (PreviousMethod, NULL);
216 PreviousMethod = NextWalkState->MethodNode;
217 NextWalkState = NextWalkState->Next;
218 AcpiOsPrintf ("\n");
221 /* Display the method locals and arguments */
223 AcpiOsPrintf ("\n");
224 AcpiDmDisplayLocals (WalkState);
225 AcpiOsPrintf ("\n");
226 AcpiDmDisplayArguments (WalkState);
227 AcpiOsPrintf ("\n");
231 /*******************************************************************************
233 * FUNCTION: AcpiDmDecodeInternalObject
235 * PARAMETERS: ObjDesc - Object to be displayed
237 * RETURN: None
239 * DESCRIPTION: Short display of an internal object. Numbers and Strings.
241 ******************************************************************************/
243 void
244 AcpiDmDecodeInternalObject (
245 ACPI_OPERAND_OBJECT *ObjDesc)
247 UINT32 i;
250 if (!ObjDesc)
252 AcpiOsPrintf (" Uninitialized");
253 return;
256 if (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc) != ACPI_DESC_TYPE_OPERAND)
258 AcpiOsPrintf (" %p [%s]", ObjDesc, AcpiUtGetDescriptorName (ObjDesc));
259 return;
262 AcpiOsPrintf (" %s", AcpiUtGetObjectTypeName (ObjDesc));
264 switch (ACPI_GET_OBJECT_TYPE (ObjDesc))
266 case ACPI_TYPE_INTEGER:
268 AcpiOsPrintf (" %8.8X%8.8X",
269 ACPI_FORMAT_UINT64 (ObjDesc->Integer.Value));
270 break;
273 case ACPI_TYPE_STRING:
275 AcpiOsPrintf ("(%d) \"%.24s",
276 ObjDesc->String.Length, ObjDesc->String.Pointer);
278 if (ObjDesc->String.Length > 24)
280 AcpiOsPrintf ("...");
282 else
284 AcpiOsPrintf ("\"");
286 break;
289 case ACPI_TYPE_BUFFER:
291 AcpiOsPrintf ("(%d)", ObjDesc->Buffer.Length);
292 for (i = 0; (i < 8) && (i < ObjDesc->Buffer.Length); i++)
294 AcpiOsPrintf (" %2.2X", ObjDesc->Buffer.Pointer[i]);
296 break;
299 default:
301 AcpiOsPrintf (" %p", ObjDesc);
302 break;
307 /*******************************************************************************
309 * FUNCTION: AcpiDmDecodeNode
311 * PARAMETERS: Node - Object to be displayed
313 * RETURN: None
315 * DESCRIPTION: Short display of a namespace node
317 ******************************************************************************/
319 void
320 AcpiDmDecodeNode (
321 ACPI_NAMESPACE_NODE *Node)
325 AcpiOsPrintf ("<Node> Name %4.4s",
326 AcpiUtGetNodeName (Node));
328 if (Node->Flags & ANOBJ_METHOD_ARG)
330 AcpiOsPrintf (" [Method Arg]");
332 if (Node->Flags & ANOBJ_METHOD_LOCAL)
334 AcpiOsPrintf (" [Method Local]");
337 AcpiDmDecodeInternalObject (AcpiNsGetAttachedObject (Node));
341 /*******************************************************************************
343 * FUNCTION: AcpiDmDisplayInternalObject
345 * PARAMETERS: ObjDesc - Object to be displayed
346 * WalkState - Current walk state
348 * RETURN: None
350 * DESCRIPTION: Short display of an internal object
352 ******************************************************************************/
354 void
355 AcpiDmDisplayInternalObject (
356 ACPI_OPERAND_OBJECT *ObjDesc,
357 ACPI_WALK_STATE *WalkState)
359 UINT8 Type;
362 AcpiOsPrintf ("%p ", ObjDesc);
364 if (!ObjDesc)
366 AcpiOsPrintf ("<NullObj>\n");
367 return;
370 /* Decode the object type */
372 switch (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc))
374 case ACPI_DESC_TYPE_PARSER:
376 AcpiOsPrintf ("<Parser> ");
377 break;
380 case ACPI_DESC_TYPE_NAMED:
382 AcpiDmDecodeNode ((ACPI_NAMESPACE_NODE *) ObjDesc);
383 break;
386 case ACPI_DESC_TYPE_OPERAND:
388 Type = ACPI_GET_OBJECT_TYPE (ObjDesc);
389 if (Type > ACPI_TYPE_LOCAL_MAX)
391 AcpiOsPrintf (" Type %X [Invalid Type]", (UINT32) Type);
392 return;
395 /* Decode the ACPI object type */
397 switch (ACPI_GET_OBJECT_TYPE (ObjDesc))
399 case ACPI_TYPE_LOCAL_REFERENCE:
401 switch (ObjDesc->Reference.Opcode)
403 case AML_LOCAL_OP:
405 AcpiOsPrintf ("[Local%d] ", ObjDesc->Reference.Offset);
406 if (WalkState)
408 ObjDesc = WalkState->LocalVariables[ObjDesc->Reference.Offset].Object;
409 AcpiOsPrintf ("%p", ObjDesc);
410 AcpiDmDecodeInternalObject (ObjDesc);
412 break;
415 case AML_ARG_OP:
417 AcpiOsPrintf ("[Arg%d] ", ObjDesc->Reference.Offset);
418 if (WalkState)
420 ObjDesc = WalkState->Arguments[ObjDesc->Reference.Offset].Object;
421 AcpiOsPrintf ("%p", ObjDesc);
422 AcpiDmDecodeInternalObject (ObjDesc);
424 break;
427 case AML_DEBUG_OP:
429 AcpiOsPrintf ("[Debug] ");
430 break;
433 case AML_INDEX_OP:
435 AcpiOsPrintf ("[Index] ");
436 switch (ObjDesc->Reference.TargetType)
438 case ACPI_TYPE_BUFFER_FIELD:
439 AcpiOsPrintf ("%p", ObjDesc->Reference.Object);
440 AcpiDmDecodeInternalObject (ObjDesc->Reference.Object);
441 break;
443 case ACPI_TYPE_PACKAGE:
445 AcpiOsPrintf ("%p", ObjDesc->Reference.Where);
446 if (!ObjDesc->Reference.Where)
448 AcpiOsPrintf (" Uninitialized WHERE ptr");
450 else
452 AcpiDmDecodeInternalObject (*(ObjDesc->Reference.Where));
454 break;
456 default:
457 AcpiOsPrintf ("Unknown index target type");
458 break;
460 break;
463 case AML_LOAD_OP:
465 AcpiOsPrintf ("[DdbHandle] ");
466 break;
469 case AML_REF_OF_OP:
471 AcpiOsPrintf ("[RefOf] ");
473 if (!ObjDesc->Reference.Object)
475 AcpiOsPrintf ("Uninitialized reference subobject ptr");
476 break;
479 /* Reference can be to a Node or an Operand object */
481 switch (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc->Reference.Object))
483 case ACPI_DESC_TYPE_NAMED:
484 AcpiDmDecodeNode (ObjDesc->Reference.Object);
485 break;
487 case ACPI_DESC_TYPE_OPERAND:
488 AcpiDmDecodeInternalObject (ObjDesc->Reference.Object);
489 break;
491 default:
492 break;
494 break;
497 default:
499 AcpiOsPrintf ("Unknown Reference opcode %X (%s)\n",
500 ObjDesc->Reference.Opcode,
501 AcpiPsGetOpcodeName (ObjDesc->Reference.Opcode));
502 break;
504 break;
506 default:
508 AcpiOsPrintf ("<Obj> ");
509 AcpiDmDecodeInternalObject (ObjDesc);
510 break;
512 break;
515 default:
517 AcpiOsPrintf ("<Not a valid ACPI Object Descriptor> [%s]",
518 AcpiUtGetDescriptorName (ObjDesc));
519 break;
522 AcpiOsPrintf ("\n");
526 /*******************************************************************************
528 * FUNCTION: AcpiDmDisplayLocals
530 * PARAMETERS: None
532 * RETURN: None
534 * DESCRIPTION: Display all locals for the currently running control method
536 ******************************************************************************/
538 void
539 AcpiDmDisplayLocals (
540 ACPI_WALK_STATE *WalkState)
542 UINT32 i;
543 ACPI_OPERAND_OBJECT *ObjDesc;
544 ACPI_NAMESPACE_NODE *Node;
547 ObjDesc = WalkState->MethodDesc;
548 Node = WalkState->MethodNode;
549 if (!Node)
551 AcpiOsPrintf ("No method node (Executing subtree for buffer or opregion)\n");
552 return;
555 if (Node->Type != ACPI_TYPE_METHOD)
557 AcpiOsPrintf ("Executing subtree for Buffer/Package/Region\n");
558 return;
561 AcpiOsPrintf ("Local Variables for method [%4.4s]:\n",
562 AcpiUtGetNodeName (Node));
564 for (i = 0; i < ACPI_METHOD_NUM_LOCALS; i++)
566 ObjDesc = WalkState->LocalVariables[i].Object;
567 AcpiOsPrintf (" Local%X: ", i);
568 AcpiDmDisplayInternalObject (ObjDesc, WalkState);
573 /*******************************************************************************
575 * FUNCTION: AcpiDmDisplayArguments
577 * PARAMETERS: None
579 * RETURN: None
581 * DESCRIPTION: Display all arguments for the currently running control method
583 ******************************************************************************/
585 void
586 AcpiDmDisplayArguments (
587 ACPI_WALK_STATE *WalkState)
589 UINT32 i;
590 ACPI_OPERAND_OBJECT *ObjDesc;
591 UINT32 NumArgs;
592 UINT32 Concurrency;
593 ACPI_NAMESPACE_NODE *Node;
596 ObjDesc = WalkState->MethodDesc;
597 Node = WalkState->MethodNode;
598 if (!Node)
600 AcpiOsPrintf ("No method node (Executing subtree for buffer or opregion)\n");
601 return;
604 if (Node->Type != ACPI_TYPE_METHOD)
606 AcpiOsPrintf ("Executing subtree for Buffer/Package/Region\n");
607 return;
610 NumArgs = ObjDesc->Method.ParamCount;
611 Concurrency = ObjDesc->Method.Concurrency;
613 AcpiOsPrintf ("Arguments for Method [%4.4s]: (%X arguments defined, max concurrency = %X)\n",
614 AcpiUtGetNodeName (Node), NumArgs, Concurrency);
616 for (i = 0; i < ACPI_METHOD_NUM_ARGS; i++)
618 ObjDesc = WalkState->Arguments[i].Object;
619 AcpiOsPrintf (" Arg%d: ", i);
620 AcpiDmDisplayInternalObject (ObjDesc, WalkState);
624 #endif