1 /******************************************************************************
3 * Module Name: psparse - Parser top level AML parse routines
5 *****************************************************************************/
7 /******************************************************************************
11 * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
12 * All rights reserved.
16 * 2.1. This is your license from Intel Corp. under its intellectual property
17 * rights. You may have additional license terms from the party that provided
18 * you this software, covering your right to use that party's intellectual
21 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
22 * copy of the source code appearing in this file ("Covered Code") an
23 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
24 * base code distributed originally by Intel ("Original Intel Code") to copy,
25 * make derivatives, distribute, use and display any portion of the Covered
26 * Code in any form, with the right to sublicense such rights; and
28 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
29 * license (with the right to sublicense), under only those claims of Intel
30 * patents that are infringed by the Original Intel Code, to make, use, sell,
31 * offer to sell, and import the Covered Code and derivative works thereof
32 * solely to the minimum extent necessary to exercise the above copyright
33 * license, and in no event shall the patent license extend to any additions
34 * to or modifications of the Original Intel Code. No other license or right
35 * is granted directly or by implication, estoppel or otherwise;
37 * The above copyright and patent license is granted only if the following
42 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
43 * Redistribution of source code of any substantial portion of the Covered
44 * Code or modification with rights to further distribute source must include
45 * the above Copyright Notice, the above License, this list of Conditions,
46 * and the following Disclaimer and Export Compliance provision. In addition,
47 * Licensee must cause all Covered Code to which Licensee contributes to
48 * contain a file documenting the changes Licensee made to create that Covered
49 * Code and the date of any change. Licensee must include in that file the
50 * documentation of any changes made by any predecessor Licensee. Licensee
51 * must include a prominent statement that the modification is derived,
52 * directly or indirectly, from Original Intel Code.
54 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
55 * Redistribution of source code of any substantial portion of the Covered
56 * Code or modification without rights to further distribute source must
57 * include the following Disclaimer and Export Compliance provision in the
58 * documentation and/or other materials provided with distribution. In
59 * addition, Licensee may not authorize further sublicense of source of any
60 * portion of the Covered Code, and must include terms to the effect that the
61 * license from Licensee to its licensee is limited to the intellectual
62 * property embodied in the software Licensee provides to its licensee, and
63 * not to intellectual property embodied in modifications its licensee may
66 * 3.3. Redistribution of Executable. Redistribution in executable form of any
67 * substantial portion of the Covered Code or modification must reproduce the
68 * above Copyright Notice, and the following Disclaimer and Export Compliance
69 * provision in the documentation and/or other materials provided with the
72 * 3.4. Intel retains all right, title, and interest in and to the Original
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
76 * Intel shall be used in advertising or otherwise to promote the sale, use or
77 * other dealings in products derived from or relating to the Covered Code
78 * without prior written authorization from Intel.
80 * 4. Disclaimer and Export Compliance
82 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
83 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
84 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
85 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
86 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
87 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
90 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
91 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
92 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
93 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
94 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
95 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
96 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
99 * 4.3. Licensee shall not export, either directly or indirectly, any of this
100 * software or system incorporating such software without first obtaining any
101 * required license or other approval from the U. S. Department of Commerce or
102 * any other agency or department of the United States Government. In the
103 * event Licensee exports any such software from the United States or
104 * re-exports any such software from a foreign destination, Licensee shall
105 * ensure that the distribution and export/re-export of the software is in
106 * compliance with all laws, regulations, orders, or other restrictions of the
107 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
108 * any of its subsidiaries will export/re-export any technical data, process,
109 * software, or service, directly or indirectly, to any country for which the
110 * United States government or any agency thereof requires an export license,
111 * other governmental approval, or letter of assurance, without first obtaining
112 * such license, approval or letter.
114 *****************************************************************************/
118 * Parse the AML and build an operation tree as most interpreters,
119 * like Perl, do. Parsing is done by hand rather than with a YACC
120 * generated parser to tightly constrain stack and dynamic memory
121 * usage. At the same time, parsing is kept flexible and the code
122 * fairly compact by parsing based on a list of AML opcode
123 * templates in AmlOpInfo[]
127 #include "accommon.h"
128 #include "acparser.h"
129 #include "acdispat.h"
131 #include "acnamesp.h"
132 #include "acinterp.h"
134 #define _COMPONENT ACPI_PARSER
135 ACPI_MODULE_NAME ("psparse")
138 /*******************************************************************************
140 * FUNCTION: AcpiPsGetOpcodeSize
142 * PARAMETERS: Opcode - An AML opcode
144 * RETURN: Size of the opcode, in bytes (1 or 2)
146 * DESCRIPTION: Get the size of the current opcode.
148 ******************************************************************************/
151 AcpiPsGetOpcodeSize (
155 /* Extended (2-byte) opcode if > 255 */
162 /* Otherwise, just a single byte opcode */
168 /*******************************************************************************
170 * FUNCTION: AcpiPsPeekOpcode
172 * PARAMETERS: ParserState - A parser state object
174 * RETURN: Next AML opcode
176 * DESCRIPTION: Get next AML opcode (without incrementing AML pointer)
178 ******************************************************************************/
182 ACPI_PARSE_STATE
*ParserState
)
188 Aml
= ParserState
->Aml
;
189 Opcode
= (UINT16
) ACPI_GET8 (Aml
);
191 if (Opcode
== AML_EXTENDED_OP_PREFIX
)
193 /* Extended opcode, get the second opcode byte */
196 Opcode
= (UINT16
) ((Opcode
<< 8) | ACPI_GET8 (Aml
));
203 /*******************************************************************************
205 * FUNCTION: AcpiPsCompleteThisOp
207 * PARAMETERS: WalkState - Current State
208 * Op - Op to complete
212 * DESCRIPTION: Perform any cleanup at the completion of an Op.
214 ******************************************************************************/
217 AcpiPsCompleteThisOp (
218 ACPI_WALK_STATE
*WalkState
,
219 ACPI_PARSE_OBJECT
*Op
)
221 ACPI_PARSE_OBJECT
*Prev
;
222 ACPI_PARSE_OBJECT
*Next
;
223 const ACPI_OPCODE_INFO
*ParentInfo
;
224 ACPI_PARSE_OBJECT
*ReplacementOp
= NULL
;
225 ACPI_STATUS Status
= AE_OK
;
228 ACPI_FUNCTION_TRACE_PTR (PsCompleteThisOp
, Op
);
231 /* Check for null Op, can happen if AML code is corrupt */
235 return_ACPI_STATUS (AE_OK
); /* OK for now */
238 /* Delete this op and the subtree below it if asked to */
240 if (((WalkState
->ParseFlags
& ACPI_PARSE_TREE_MASK
) != ACPI_PARSE_DELETE_TREE
) ||
241 (WalkState
->OpInfo
->Class
== AML_CLASS_ARGUMENT
))
243 return_ACPI_STATUS (AE_OK
);
246 /* Make sure that we only delete this subtree */
248 if (Op
->Common
.Parent
)
250 Prev
= Op
->Common
.Parent
->Common
.Value
.Arg
;
253 /* Nothing more to do */
259 * Check if we need to replace the operator and its subtree
260 * with a return value op (placeholder op)
262 ParentInfo
= AcpiPsGetOpcodeInfo (Op
->Common
.Parent
->Common
.AmlOpcode
);
264 switch (ParentInfo
->Class
)
266 case AML_CLASS_CONTROL
:
269 case AML_CLASS_CREATE
:
272 * These opcodes contain TermArg operands. The current
273 * op must be replaced by a placeholder return op
275 ReplacementOp
= AcpiPsAllocOp (AML_INT_RETURN_VALUE_OP
);
278 Status
= AE_NO_MEMORY
;
282 case AML_CLASS_NAMED_OBJECT
:
285 * These opcodes contain TermArg operands. The current
286 * op must be replaced by a placeholder return op
288 if ((Op
->Common
.Parent
->Common
.AmlOpcode
== AML_REGION_OP
) ||
289 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_DATA_REGION_OP
) ||
290 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_BUFFER_OP
) ||
291 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_PACKAGE_OP
) ||
292 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_BANK_FIELD_OP
) ||
293 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_VAR_PACKAGE_OP
))
295 ReplacementOp
= AcpiPsAllocOp (AML_INT_RETURN_VALUE_OP
);
298 Status
= AE_NO_MEMORY
;
301 else if ((Op
->Common
.Parent
->Common
.AmlOpcode
== AML_NAME_OP
) &&
302 (WalkState
->PassNumber
<= ACPI_IMODE_LOAD_PASS2
))
304 if ((Op
->Common
.AmlOpcode
== AML_BUFFER_OP
) ||
305 (Op
->Common
.AmlOpcode
== AML_PACKAGE_OP
) ||
306 (Op
->Common
.AmlOpcode
== AML_VAR_PACKAGE_OP
))
308 ReplacementOp
= AcpiPsAllocOp (Op
->Common
.AmlOpcode
);
311 Status
= AE_NO_MEMORY
;
315 ReplacementOp
->Named
.Data
= Op
->Named
.Data
;
316 ReplacementOp
->Named
.Length
= Op
->Named
.Length
;
324 ReplacementOp
= AcpiPsAllocOp (AML_INT_RETURN_VALUE_OP
);
327 Status
= AE_NO_MEMORY
;
331 /* We must unlink this op from the parent tree */
335 /* This op is the first in the list */
339 ReplacementOp
->Common
.Parent
= Op
->Common
.Parent
;
340 ReplacementOp
->Common
.Value
.Arg
= NULL
;
341 ReplacementOp
->Common
.Node
= Op
->Common
.Node
;
342 Op
->Common
.Parent
->Common
.Value
.Arg
= ReplacementOp
;
343 ReplacementOp
->Common
.Next
= Op
->Common
.Next
;
347 Op
->Common
.Parent
->Common
.Value
.Arg
= Op
->Common
.Next
;
351 /* Search the parent list */
355 /* Traverse all siblings in the parent's argument list */
357 Next
= Prev
->Common
.Next
;
362 ReplacementOp
->Common
.Parent
= Op
->Common
.Parent
;
363 ReplacementOp
->Common
.Value
.Arg
= NULL
;
364 ReplacementOp
->Common
.Node
= Op
->Common
.Node
;
365 Prev
->Common
.Next
= ReplacementOp
;
366 ReplacementOp
->Common
.Next
= Op
->Common
.Next
;
371 Prev
->Common
.Next
= Op
->Common
.Next
;
382 /* Now we can actually delete the subtree rooted at Op */
384 AcpiPsDeleteParseTree (Op
);
385 return_ACPI_STATUS (Status
);
389 /*******************************************************************************
391 * FUNCTION: AcpiPsNextParseState
393 * PARAMETERS: WalkState - Current state
394 * Op - Current parse op
395 * CallbackStatus - Status from previous operation
399 * DESCRIPTION: Update the parser state based upon the return exception from
400 * the parser callback.
402 ******************************************************************************/
405 AcpiPsNextParseState (
406 ACPI_WALK_STATE
*WalkState
,
407 ACPI_PARSE_OBJECT
*Op
,
408 ACPI_STATUS CallbackStatus
)
410 ACPI_PARSE_STATE
*ParserState
= &WalkState
->ParserState
;
411 ACPI_STATUS Status
= AE_CTRL_PENDING
;
414 ACPI_FUNCTION_TRACE_PTR (PsNextParseState
, Op
);
417 switch (CallbackStatus
)
419 case AE_CTRL_TERMINATE
:
421 * A control method was terminated via a RETURN statement.
422 * The walk of this method is complete.
424 ParserState
->Aml
= ParserState
->AmlEnd
;
425 Status
= AE_CTRL_TERMINATE
;
431 ParserState
->Aml
= WalkState
->AmlLastWhile
;
432 WalkState
->ControlState
->Common
.Value
= FALSE
;
433 Status
= AE_CTRL_BREAK
;
437 case AE_CTRL_CONTINUE
:
439 ParserState
->Aml
= WalkState
->AmlLastWhile
;
440 Status
= AE_CTRL_CONTINUE
;
444 case AE_CTRL_PENDING
:
446 ParserState
->Aml
= WalkState
->AmlLastWhile
;
452 ParserState
->Aml
= ParserState
->Scope
->ParseScope
.PkgEnd
;
459 * Predicate of an IF was true, and we are at the matching ELSE.
460 * Just close out this package
462 ParserState
->Aml
= AcpiPsGetNextPackageEnd (ParserState
);
463 Status
= AE_CTRL_PENDING
;
469 * Either an IF/WHILE Predicate was false or we encountered a BREAK
470 * opcode. In both cases, we do not execute the rest of the
471 * package; We simply close out the parent (finishing the walk of
472 * this branch of the tree) and continue execution at the parent
475 ParserState
->Aml
= ParserState
->Scope
->ParseScope
.PkgEnd
;
477 /* In the case of a BREAK, just force a predicate (if any) to FALSE */
479 WalkState
->ControlState
->Common
.Value
= FALSE
;
480 Status
= AE_CTRL_END
;
484 case AE_CTRL_TRANSFER
:
486 /* A method call (invocation) -- transfer control */
488 Status
= AE_CTRL_TRANSFER
;
489 WalkState
->PrevOp
= Op
;
490 WalkState
->MethodCallOp
= Op
;
491 WalkState
->MethodCallNode
= (Op
->Common
.Value
.Arg
)->Common
.Node
;
493 /* Will return value (if any) be used by the caller? */
495 WalkState
->ReturnUsed
= AcpiDsIsResultUsed (Op
, WalkState
);
501 Status
= CallbackStatus
;
502 if ((CallbackStatus
& AE_CODE_MASK
) == AE_CODE_CONTROL
)
509 return_ACPI_STATUS (Status
);
513 /*******************************************************************************
515 * FUNCTION: AcpiPsParseAml
517 * PARAMETERS: WalkState - Current state
522 * DESCRIPTION: Parse raw AML and return a tree of ops
524 ******************************************************************************/
528 ACPI_WALK_STATE
*WalkState
)
531 ACPI_THREAD_STATE
*Thread
;
532 ACPI_THREAD_STATE
*PrevWalkList
= AcpiGbl_CurrentWalkList
;
533 ACPI_WALK_STATE
*PreviousWalkState
;
536 ACPI_FUNCTION_TRACE (PsParseAml
);
538 ACPI_DEBUG_PRINT ((ACPI_DB_PARSE
,
539 "Entered with WalkState=%p Aml=%p size=%X\n",
540 WalkState
, WalkState
->ParserState
.Aml
,
541 WalkState
->ParserState
.AmlSize
));
543 if (!WalkState
->ParserState
.Aml
)
545 return_ACPI_STATUS (AE_NULL_OBJECT
);
548 /* Create and initialize a new thread state */
550 Thread
= AcpiUtCreateThreadState ();
553 if (WalkState
->MethodDesc
)
555 /* Executing a control method - additional cleanup */
557 AcpiDsTerminateControlMethod (WalkState
->MethodDesc
, WalkState
);
560 AcpiDsDeleteWalkState (WalkState
);
561 return_ACPI_STATUS (AE_NO_MEMORY
);
564 WalkState
->Thread
= Thread
;
567 * If executing a method, the starting SyncLevel is this method's
570 if (WalkState
->MethodDesc
)
572 WalkState
->Thread
->CurrentSyncLevel
= WalkState
->MethodDesc
->Method
.SyncLevel
;
575 AcpiDsPushWalkState (WalkState
, Thread
);
578 * This global allows the AML debugger to get a handle to the currently
579 * executing control method.
581 AcpiGbl_CurrentWalkList
= Thread
;
584 * Execute the walk loop as long as there is a valid Walk State. This
585 * handles nested control method invocations without recursion.
587 ACPI_DEBUG_PRINT ((ACPI_DB_PARSE
, "State=%p\n", WalkState
));
592 if (ACPI_SUCCESS (Status
))
595 * The ParseLoop executes AML until the method terminates
596 * or calls another method.
598 Status
= AcpiPsParseLoop (WalkState
);
601 ACPI_DEBUG_PRINT ((ACPI_DB_PARSE
,
602 "Completed one call to walk loop, %s State=%p\n",
603 AcpiFormatException (Status
), WalkState
));
605 if (Status
== AE_CTRL_TRANSFER
)
608 * A method call was detected.
609 * Transfer control to the called control method
611 Status
= AcpiDsCallControlMethod (Thread
, WalkState
, NULL
);
612 if (ACPI_FAILURE (Status
))
614 Status
= AcpiDsMethodError (Status
, WalkState
);
618 * If the transfer to the new method method call worked, a new walk
619 * state was created -- get it
621 WalkState
= AcpiDsGetCurrentWalkState (Thread
);
624 else if (Status
== AE_CTRL_TERMINATE
)
628 else if ((Status
!= AE_OK
) && (WalkState
->MethodDesc
))
630 /* Either the method parse or actual execution failed */
632 ACPI_ERROR_METHOD ("Method parse/execution failed",
633 WalkState
->MethodNode
, NULL
, Status
);
635 /* Check for possible multi-thread reentrancy problem */
637 if ((Status
== AE_ALREADY_EXISTS
) &&
638 (!WalkState
->MethodDesc
->Method
.Mutex
))
641 "Marking method %4.4s as Serialized because of AE_ALREADY_EXISTS error",
642 WalkState
->MethodNode
->Name
.Ascii
));
645 * Method tried to create an object twice. The probable cause is
646 * that the method cannot handle reentrancy.
648 * The method is marked NotSerialized, but it tried to create
649 * a named object, causing the second thread entrance to fail.
650 * Workaround this problem by marking the method permanently
653 WalkState
->MethodDesc
->Method
.MethodFlags
|= AML_METHOD_SERIALIZED
;
654 WalkState
->MethodDesc
->Method
.SyncLevel
= 0;
658 /* We are done with this walk, move on to the parent if any */
660 WalkState
= AcpiDsPopWalkState (Thread
);
662 /* Reset the current scope to the beginning of scope stack */
664 AcpiDsScopeStackClear (WalkState
);
667 * If we just returned from the execution of a control method or if we
668 * encountered an error during the method parse phase, there's lots of
671 if (((WalkState
->ParseFlags
& ACPI_PARSE_MODE_MASK
) == ACPI_PARSE_EXECUTE
) ||
672 (ACPI_FAILURE (Status
)))
674 AcpiDsTerminateControlMethod (WalkState
->MethodDesc
, WalkState
);
677 /* Delete this walk state and all linked control states */
679 AcpiPsCleanupScope (&WalkState
->ParserState
);
680 PreviousWalkState
= WalkState
;
682 ACPI_DEBUG_PRINT ((ACPI_DB_PARSE
,
683 "ReturnValue=%p, ImplicitValue=%p State=%p\n",
684 WalkState
->ReturnDesc
, WalkState
->ImplicitReturnObj
, WalkState
));
686 /* Check if we have restarted a preempted walk */
688 WalkState
= AcpiDsGetCurrentWalkState (Thread
);
691 if (ACPI_SUCCESS (Status
))
694 * There is another walk state, restart it.
695 * If the method return value is not used by the parent,
696 * The object is deleted
698 if (!PreviousWalkState
->ReturnDesc
)
701 * In slack mode execution, if there is no return value
702 * we should implicitly return zero (0) as a default value.
704 if (AcpiGbl_EnableInterpreterSlack
&&
705 !PreviousWalkState
->ImplicitReturnObj
)
707 PreviousWalkState
->ImplicitReturnObj
=
708 AcpiUtCreateIntegerObject ((UINT64
) 0);
709 if (!PreviousWalkState
->ImplicitReturnObj
)
711 return_ACPI_STATUS (AE_NO_MEMORY
);
715 /* Restart the calling control method */
717 Status
= AcpiDsRestartControlMethod (WalkState
,
718 PreviousWalkState
->ImplicitReturnObj
);
723 * We have a valid return value, delete any implicit
726 AcpiDsClearImplicitReturn (PreviousWalkState
);
728 Status
= AcpiDsRestartControlMethod (WalkState
,
729 PreviousWalkState
->ReturnDesc
);
731 if (ACPI_SUCCESS (Status
))
733 WalkState
->WalkType
|= ACPI_WALK_METHOD_RESTART
;
738 /* On error, delete any return object or implicit return */
740 AcpiUtRemoveReference (PreviousWalkState
->ReturnDesc
);
741 AcpiDsClearImplicitReturn (PreviousWalkState
);
746 * Just completed a 1st-level method, save the final internal return
749 else if (PreviousWalkState
->CallerReturnDesc
)
751 if (PreviousWalkState
->ImplicitReturnObj
)
753 *(PreviousWalkState
->CallerReturnDesc
) =
754 PreviousWalkState
->ImplicitReturnObj
;
758 /* NULL if no return value */
760 *(PreviousWalkState
->CallerReturnDesc
) =
761 PreviousWalkState
->ReturnDesc
;
766 if (PreviousWalkState
->ReturnDesc
)
768 /* Caller doesn't want it, must delete it */
770 AcpiUtRemoveReference (PreviousWalkState
->ReturnDesc
);
772 if (PreviousWalkState
->ImplicitReturnObj
)
774 /* Caller doesn't want it, must delete it */
776 AcpiUtRemoveReference (PreviousWalkState
->ImplicitReturnObj
);
780 AcpiDsDeleteWalkState (PreviousWalkState
);
785 AcpiExReleaseAllMutexes (Thread
);
786 AcpiUtDeleteGenericState (ACPI_CAST_PTR (ACPI_GENERIC_STATE
, Thread
));
787 AcpiGbl_CurrentWalkList
= PrevWalkList
;
788 return_ACPI_STATUS (Status
);