1 /*******************************************************************************
3 * Module Name: dsutils - Dispatcher utilities
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.
53 #define _COMPONENT ACPI_DISPATCHER
54 ACPI_MODULE_NAME ("dsutils")
57 /*******************************************************************************
59 * FUNCTION: AcpiDsClearImplicitReturn
61 * PARAMETERS: WalkState - Current State
65 * DESCRIPTION: Clear and remove a reference on an implicit return value. Used
66 * to delete "stale" return values (if enabled, the return value
67 * from every operator is saved at least momentarily, in case the
68 * parent method exits.)
70 ******************************************************************************/
73 AcpiDsClearImplicitReturn (
74 ACPI_WALK_STATE
*WalkState
)
76 ACPI_FUNCTION_NAME (DsClearImplicitReturn
);
80 * Slack must be enabled for this feature
82 if (!AcpiGbl_EnableInterpreterSlack
)
87 if (WalkState
->ImplicitReturnObj
)
90 * Delete any "stale" implicit return. However, in
91 * complex statements, the implicit return value can be
92 * bubbled up several levels.
94 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
95 "Removing reference on stale implicit return obj %p\n",
96 WalkState
->ImplicitReturnObj
));
98 AcpiUtRemoveReference (WalkState
->ImplicitReturnObj
);
99 WalkState
->ImplicitReturnObj
= NULL
;
104 #ifndef ACPI_NO_METHOD_EXECUTION
105 /*******************************************************************************
107 * FUNCTION: AcpiDsDoImplicitReturn
109 * PARAMETERS: ReturnDesc - The return value
110 * WalkState - Current State
111 * AddReference - True if a reference should be added to the
114 * RETURN: TRUE if implicit return enabled, FALSE otherwise
116 * DESCRIPTION: Implements the optional "implicit return". We save the result
117 * of every ASL operator and control method invocation in case the
118 * parent method exit. Before storing a new return value, we
119 * delete the previous return value.
121 ******************************************************************************/
124 AcpiDsDoImplicitReturn (
125 ACPI_OPERAND_OBJECT
*ReturnDesc
,
126 ACPI_WALK_STATE
*WalkState
,
127 BOOLEAN AddReference
)
129 ACPI_FUNCTION_NAME (DsDoImplicitReturn
);
133 * Slack must be enabled for this feature, and we must
134 * have a valid return object
136 if ((!AcpiGbl_EnableInterpreterSlack
) ||
142 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
143 "Result %p will be implicitly returned; Prev=%p\n",
145 WalkState
->ImplicitReturnObj
));
148 * Delete any "stale" implicit return value first. However, in
149 * complex statements, the implicit return value can be
150 * bubbled up several levels, so we don't clear the value if it
151 * is the same as the ReturnDesc.
153 if (WalkState
->ImplicitReturnObj
)
155 if (WalkState
->ImplicitReturnObj
== ReturnDesc
)
159 AcpiDsClearImplicitReturn (WalkState
);
162 /* Save the implicit return value, add a reference if requested */
164 WalkState
->ImplicitReturnObj
= ReturnDesc
;
167 AcpiUtAddReference (ReturnDesc
);
174 /*******************************************************************************
176 * FUNCTION: AcpiDsIsResultUsed
178 * PARAMETERS: Op - Current Op
179 * WalkState - Current State
181 * RETURN: TRUE if result is used, FALSE otherwise
183 * DESCRIPTION: Check if a result object will be used by the parent
185 ******************************************************************************/
189 ACPI_PARSE_OBJECT
*Op
,
190 ACPI_WALK_STATE
*WalkState
)
192 const ACPI_OPCODE_INFO
*ParentInfo
;
194 ACPI_FUNCTION_TRACE_PTR (DsIsResultUsed
, Op
);
197 /* Must have both an Op and a Result Object */
201 ACPI_ERROR ((AE_INFO
, "Null Op"));
206 * We know that this operator is not a
207 * Return() operator (would not come here.) The following code is the
208 * optional support for a so-called "implicit return". Some AML code
209 * assumes that the last value of the method is "implicitly" returned
210 * to the caller. Just save the last result as the return value.
211 * NOTE: this is optional because the ASL language does not actually
212 * support this behavior.
214 (void) AcpiDsDoImplicitReturn (WalkState
->ResultObj
, WalkState
, TRUE
);
217 * Now determine if the parent will use the result
219 * If there is no parent, or the parent is a ScopeOp, we are executing
220 * at the method level. An executing method typically has no parent,
221 * since each method is parsed separately. A method invoked externally
222 * via ExecuteControlMethod has a ScopeOp as the parent.
224 if ((!Op
->Common
.Parent
) ||
225 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_SCOPE_OP
))
227 /* No parent, the return value cannot possibly be used */
229 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
230 "At Method level, result of [%s] not used\n",
231 AcpiPsGetOpcodeName (Op
->Common
.AmlOpcode
)));
232 return_UINT8 (FALSE
);
235 /* Get info on the parent. The RootOp is AML_SCOPE */
237 ParentInfo
= AcpiPsGetOpcodeInfo (Op
->Common
.Parent
->Common
.AmlOpcode
);
238 if (ParentInfo
->Class
== AML_CLASS_UNKNOWN
)
240 ACPI_ERROR ((AE_INFO
,
241 "Unknown parent opcode Op=%p", Op
));
242 return_UINT8 (FALSE
);
246 * Decide what to do with the result based on the parent. If
247 * the parent opcode will not use the result, delete the object.
248 * Otherwise leave it as is, it will be deleted when it is used
249 * as an operand later.
251 switch (ParentInfo
->Class
)
253 case AML_CLASS_CONTROL
:
255 switch (Op
->Common
.Parent
->Common
.AmlOpcode
)
259 /* Never delete the return value associated with a return opcode */
266 * If we are executing the predicate AND this is the predicate op,
267 * we will use the return value
269 if ((WalkState
->ControlState
->Common
.State
==
270 ACPI_CONTROL_PREDICATE_EXECUTING
) &&
271 (WalkState
->ControlState
->Control
.PredicateOp
== Op
))
279 /* Ignore other control opcodes */
284 /* The general control opcode returns no result */
288 case AML_CLASS_CREATE
:
290 * These opcodes allow TermArg(s) as operands and therefore
291 * the operands can be method calls. The result is used.
295 case AML_CLASS_NAMED_OBJECT
:
297 if ((Op
->Common
.Parent
->Common
.AmlOpcode
== AML_REGION_OP
) ||
298 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_DATA_REGION_OP
) ||
299 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_PACKAGE_OP
) ||
300 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_VAR_PACKAGE_OP
) ||
301 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_BUFFER_OP
) ||
302 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_INT_EVAL_SUBTREE_OP
) ||
303 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_BANK_FIELD_OP
))
306 * These opcodes allow TermArg(s) as operands and therefore
307 * the operands can be method calls. The result is used.
316 * In all other cases. the parent will actually use the return
317 * object, so keep it.
324 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
325 "Result of [%s] used by Parent [%s] Op=%p\n",
326 AcpiPsGetOpcodeName (Op
->Common
.AmlOpcode
),
327 AcpiPsGetOpcodeName (Op
->Common
.Parent
->Common
.AmlOpcode
), Op
));
333 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
334 "Result of [%s] not used by Parent [%s] Op=%p\n",
335 AcpiPsGetOpcodeName (Op
->Common
.AmlOpcode
),
336 AcpiPsGetOpcodeName (Op
->Common
.Parent
->Common
.AmlOpcode
), Op
));
338 return_UINT8 (FALSE
);
342 /*******************************************************************************
344 * FUNCTION: AcpiDsDeleteResultIfNotUsed
346 * PARAMETERS: Op - Current parse Op
347 * ResultObj - Result of the operation
348 * WalkState - Current state
352 * DESCRIPTION: Used after interpretation of an opcode. If there is an internal
353 * result descriptor, check if the parent opcode will actually use
354 * this result. If not, delete the result now so that it will
355 * not become orphaned.
357 ******************************************************************************/
360 AcpiDsDeleteResultIfNotUsed (
361 ACPI_PARSE_OBJECT
*Op
,
362 ACPI_OPERAND_OBJECT
*ResultObj
,
363 ACPI_WALK_STATE
*WalkState
)
365 ACPI_OPERAND_OBJECT
*ObjDesc
;
369 ACPI_FUNCTION_TRACE_PTR (DsDeleteResultIfNotUsed
, ResultObj
);
374 ACPI_ERROR ((AE_INFO
, "Null Op"));
383 if (!AcpiDsIsResultUsed (Op
, WalkState
))
385 /* Must pop the result stack (ObjDesc should be equal to ResultObj) */
387 Status
= AcpiDsResultPop (&ObjDesc
, WalkState
);
388 if (ACPI_SUCCESS (Status
))
390 AcpiUtRemoveReference (ResultObj
);
398 /*******************************************************************************
400 * FUNCTION: AcpiDsResolveOperands
402 * PARAMETERS: WalkState - Current walk state with operands on stack
406 * DESCRIPTION: Resolve all operands to their values. Used to prepare
407 * arguments to a control method invocation (a call from one
408 * method to another.)
410 ******************************************************************************/
413 AcpiDsResolveOperands (
414 ACPI_WALK_STATE
*WalkState
)
417 ACPI_STATUS Status
= AE_OK
;
420 ACPI_FUNCTION_TRACE_PTR (DsResolveOperands
, WalkState
);
424 * Attempt to resolve each of the valid operands
425 * Method arguments are passed by reference, not by value. This means
426 * that the actual objects are passed, not copies of the objects.
428 for (i
= 0; i
< WalkState
->NumOperands
; i
++)
430 Status
= AcpiExResolveToValue (&WalkState
->Operands
[i
], WalkState
);
431 if (ACPI_FAILURE (Status
))
437 return_ACPI_STATUS (Status
);
441 /*******************************************************************************
443 * FUNCTION: AcpiDsClearOperands
445 * PARAMETERS: WalkState - Current walk state with operands on stack
449 * DESCRIPTION: Clear all operands on the current walk state operand stack.
451 ******************************************************************************/
454 AcpiDsClearOperands (
455 ACPI_WALK_STATE
*WalkState
)
460 ACPI_FUNCTION_TRACE_PTR (DsClearOperands
, WalkState
);
463 /* Remove a reference on each operand on the stack */
465 for (i
= 0; i
< WalkState
->NumOperands
; i
++)
468 * Remove a reference to all operands, including both
469 * "Arguments" and "Targets".
471 AcpiUtRemoveReference (WalkState
->Operands
[i
]);
472 WalkState
->Operands
[i
] = NULL
;
475 WalkState
->NumOperands
= 0;
481 /*******************************************************************************
483 * FUNCTION: AcpiDsCreateOperand
485 * PARAMETERS: WalkState - Current walk state
486 * Arg - Parse object for the argument
487 * ArgIndex - Which argument (zero based)
491 * DESCRIPTION: Translate a parse tree object that is an argument to an AML
492 * opcode to the equivalent interpreter object. This may include
493 * looking up a name or entering a new name into the internal
496 ******************************************************************************/
499 AcpiDsCreateOperand (
500 ACPI_WALK_STATE
*WalkState
,
501 ACPI_PARSE_OBJECT
*Arg
,
504 ACPI_STATUS Status
= AE_OK
;
507 ACPI_OPERAND_OBJECT
*ObjDesc
;
508 ACPI_PARSE_OBJECT
*ParentOp
;
510 ACPI_INTERPRETER_MODE InterpreterMode
;
511 const ACPI_OPCODE_INFO
*OpInfo
;
514 ACPI_FUNCTION_TRACE_PTR (DsCreateOperand
, Arg
);
517 /* A valid name must be looked up in the namespace */
519 if ((Arg
->Common
.AmlOpcode
== AML_INT_NAMEPATH_OP
) &&
520 (Arg
->Common
.Value
.String
) &&
521 !(Arg
->Common
.Flags
& ACPI_PARSEOP_IN_STACK
))
523 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
, "Getting a name: Arg=%p\n", Arg
));
525 /* Get the entire name string from the AML stream */
527 Status
= AcpiExGetNameString (ACPI_TYPE_ANY
,
528 Arg
->Common
.Value
.Buffer
, &NameString
, &NameLength
);
530 if (ACPI_FAILURE (Status
))
532 return_ACPI_STATUS (Status
);
535 /* All prefixes have been handled, and the name is in NameString */
538 * Special handling for BufferField declarations. This is a deferred
539 * opcode that unfortunately defines the field name as the last
540 * parameter instead of the first. We get here when we are performing
541 * the deferred execution, so the actual name of the field is already
542 * in the namespace. We don't want to attempt to look it up again
543 * because we may be executing in a different scope than where the
544 * actual opcode exists.
546 if ((WalkState
->DeferredNode
) &&
547 (WalkState
->DeferredNode
->Type
== ACPI_TYPE_BUFFER_FIELD
) &&
548 (ArgIndex
== (UINT32
)
549 ((WalkState
->Opcode
== AML_CREATE_FIELD_OP
) ? 3 : 2)))
551 ObjDesc
= ACPI_CAST_PTR (
552 ACPI_OPERAND_OBJECT
, WalkState
->DeferredNode
);
555 else /* All other opcodes */
558 * Differentiate between a namespace "create" operation
559 * versus a "lookup" operation (IMODE_LOAD_PASS2 vs.
560 * IMODE_EXECUTE) in order to support the creation of
561 * namespace objects during the execution of control methods.
563 ParentOp
= Arg
->Common
.Parent
;
564 OpInfo
= AcpiPsGetOpcodeInfo (ParentOp
->Common
.AmlOpcode
);
566 if ((OpInfo
->Flags
& AML_NSNODE
) &&
567 (ParentOp
->Common
.AmlOpcode
!= AML_INT_METHODCALL_OP
) &&
568 (ParentOp
->Common
.AmlOpcode
!= AML_REGION_OP
) &&
569 (ParentOp
->Common
.AmlOpcode
!= AML_INT_NAMEPATH_OP
))
571 /* Enter name into namespace if not found */
573 InterpreterMode
= ACPI_IMODE_LOAD_PASS2
;
577 /* Return a failure if name not found */
579 InterpreterMode
= ACPI_IMODE_EXECUTE
;
582 Status
= AcpiNsLookup (WalkState
->ScopeInfo
, NameString
,
583 ACPI_TYPE_ANY
, InterpreterMode
,
584 ACPI_NS_SEARCH_PARENT
| ACPI_NS_DONT_OPEN_SCOPE
, WalkState
,
585 ACPI_CAST_INDIRECT_PTR (ACPI_NAMESPACE_NODE
, &ObjDesc
));
587 * The only case where we pass through (ignore) a NOT_FOUND
588 * error is for the CondRefOf opcode.
590 if (Status
== AE_NOT_FOUND
)
592 if (ParentOp
->Common
.AmlOpcode
== AML_COND_REF_OF_OP
)
595 * For the Conditional Reference op, it's OK if
596 * the name is not found; We just need a way to
597 * indicate this to the interpreter, set the
600 ObjDesc
= ACPI_CAST_PTR (
601 ACPI_OPERAND_OBJECT
, AcpiGbl_RootNode
);
604 else if (ParentOp
->Common
.AmlOpcode
== AML_EXTERNAL_OP
)
607 * This opcode should never appear here. It is used only
608 * by AML disassemblers and is surrounded by an If(0)
609 * by the ASL compiler.
611 * Therefore, if we see it here, it is a serious error.
613 Status
= AE_AML_BAD_OPCODE
;
618 * We just plain didn't find it -- which is a
619 * very serious error at this point
621 Status
= AE_AML_NAME_NOT_FOUND
;
625 if (ACPI_FAILURE (Status
))
627 ACPI_ERROR_NAMESPACE (NameString
, Status
);
631 /* Free the namestring created above */
633 ACPI_FREE (NameString
);
635 /* Check status from the lookup */
637 if (ACPI_FAILURE (Status
))
639 return_ACPI_STATUS (Status
);
642 /* Put the resulting object onto the current object stack */
644 Status
= AcpiDsObjStackPush (ObjDesc
, WalkState
);
645 if (ACPI_FAILURE (Status
))
647 return_ACPI_STATUS (Status
);
651 AcpiDbDisplayArgumentObject (ObjDesc
, WalkState
);
656 /* Check for null name case */
658 if ((Arg
->Common
.AmlOpcode
== AML_INT_NAMEPATH_OP
) &&
659 !(Arg
->Common
.Flags
& ACPI_PARSEOP_IN_STACK
))
662 * If the name is null, this means that this is an
663 * optional result parameter that was not specified
664 * in the original ASL. Create a Zero Constant for a
665 * placeholder. (Store to a constant is a Noop.)
667 Opcode
= AML_ZERO_OP
; /* Has no arguments! */
669 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
670 "Null namepath: Arg=%p\n", Arg
));
674 Opcode
= Arg
->Common
.AmlOpcode
;
677 /* Get the object type of the argument */
679 OpInfo
= AcpiPsGetOpcodeInfo (Opcode
);
680 if (OpInfo
->ObjectType
== ACPI_TYPE_INVALID
)
682 return_ACPI_STATUS (AE_NOT_IMPLEMENTED
);
685 if ((OpInfo
->Flags
& AML_HAS_RETVAL
) ||
686 (Arg
->Common
.Flags
& ACPI_PARSEOP_IN_STACK
))
688 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
689 "Argument previously created, already stacked\n"));
692 AcpiDbDisplayArgumentObject (
693 WalkState
->Operands
[WalkState
->NumOperands
- 1], WalkState
);
697 * Use value that was already previously returned
698 * by the evaluation of this argument
700 Status
= AcpiDsResultPop (&ObjDesc
, WalkState
);
701 if (ACPI_FAILURE (Status
))
704 * Only error is underflow, and this indicates
705 * a missing or null operand!
707 ACPI_EXCEPTION ((AE_INFO
, Status
,
708 "Missing or null operand"));
709 return_ACPI_STATUS (Status
);
714 /* Create an ACPI_INTERNAL_OBJECT for the argument */
716 ObjDesc
= AcpiUtCreateInternalObject (OpInfo
->ObjectType
);
719 return_ACPI_STATUS (AE_NO_MEMORY
);
722 /* Initialize the new object */
724 Status
= AcpiDsInitObjectFromOp (
725 WalkState
, Arg
, Opcode
, &ObjDesc
);
726 if (ACPI_FAILURE (Status
))
728 AcpiUtDeleteObjectDesc (ObjDesc
);
729 return_ACPI_STATUS (Status
);
733 /* Put the operand object on the object stack */
735 Status
= AcpiDsObjStackPush (ObjDesc
, WalkState
);
736 if (ACPI_FAILURE (Status
))
738 return_ACPI_STATUS (Status
);
742 AcpiDbDisplayArgumentObject (ObjDesc
, WalkState
);
746 return_ACPI_STATUS (AE_OK
);
750 /*******************************************************************************
752 * FUNCTION: AcpiDsCreateOperands
754 * PARAMETERS: WalkState - Current state
755 * FirstArg - First argument of a parser argument tree
759 * DESCRIPTION: Convert an operator's arguments from a parse tree format to
760 * namespace objects and place those argument object on the object
761 * stack in preparation for evaluation by the interpreter.
763 ******************************************************************************/
766 AcpiDsCreateOperands (
767 ACPI_WALK_STATE
*WalkState
,
768 ACPI_PARSE_OBJECT
*FirstArg
)
770 ACPI_STATUS Status
= AE_OK
;
771 ACPI_PARSE_OBJECT
*Arg
;
772 ACPI_PARSE_OBJECT
*Arguments
[ACPI_OBJ_NUM_OPERANDS
];
774 UINT32 Index
= WalkState
->NumOperands
;
778 ACPI_FUNCTION_TRACE_PTR (DsCreateOperands
, FirstArg
);
781 /* Get all arguments in the list */
786 if (Index
>= ACPI_OBJ_NUM_OPERANDS
)
788 return_ACPI_STATUS (AE_BAD_DATA
);
791 Arguments
[Index
] = Arg
;
792 WalkState
->Operands
[Index
] = NULL
;
794 /* Move on to next argument, if any */
796 Arg
= Arg
->Common
.Next
;
801 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
802 "NumOperands %d, ArgCount %d, Index %d\n",
803 WalkState
->NumOperands
, ArgCount
, Index
));
805 /* Create the interpreter arguments, in reverse order */
808 for (i
= 0; i
< ArgCount
; i
++)
810 Arg
= Arguments
[Index
];
811 WalkState
->OperandIndex
= (UINT8
) Index
;
813 Status
= AcpiDsCreateOperand (WalkState
, Arg
, Index
);
814 if (ACPI_FAILURE (Status
))
819 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH
,
820 "Created Arg #%u (%p) %u args total\n",
821 Index
, Arg
, ArgCount
));
825 return_ACPI_STATUS (Status
);
830 * We must undo everything done above; meaning that we must
831 * pop everything off of the operand stack and delete those
834 AcpiDsObjStackPopAndDelete (ArgCount
, WalkState
);
836 ACPI_EXCEPTION ((AE_INFO
, Status
, "While creating Arg %u", Index
));
837 return_ACPI_STATUS (Status
);
841 /*****************************************************************************
843 * FUNCTION: AcpiDsEvaluateNamePath
845 * PARAMETERS: WalkState - Current state of the parse tree walk,
846 * the opcode of current operation should be
847 * AML_INT_NAMEPATH_OP
851 * DESCRIPTION: Translate the -NamePath- parse tree object to the equivalent
852 * interpreter object, convert it to value, if needed, duplicate
853 * it, if needed, and push it onto the current result stack.
855 ****************************************************************************/
858 AcpiDsEvaluateNamePath (
859 ACPI_WALK_STATE
*WalkState
)
861 ACPI_STATUS Status
= AE_OK
;
862 ACPI_PARSE_OBJECT
*Op
= WalkState
->Op
;
863 ACPI_OPERAND_OBJECT
**Operand
= &WalkState
->Operands
[0];
864 ACPI_OPERAND_OBJECT
*NewObjDesc
;
868 ACPI_FUNCTION_TRACE_PTR (DsEvaluateNamePath
, WalkState
);
871 if (!Op
->Common
.Parent
)
873 /* This happens after certain exception processing */
878 if ((Op
->Common
.Parent
->Common
.AmlOpcode
== AML_PACKAGE_OP
) ||
879 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_VAR_PACKAGE_OP
) ||
880 (Op
->Common
.Parent
->Common
.AmlOpcode
== AML_REF_OF_OP
))
882 /* TBD: Should we specify this feature as a bit of OpInfo->Flags of these opcodes? */
887 Status
= AcpiDsCreateOperand (WalkState
, Op
, 0);
888 if (ACPI_FAILURE (Status
))
893 if (Op
->Common
.Flags
& ACPI_PARSEOP_TARGET
)
895 NewObjDesc
= *Operand
;
899 Type
= (*Operand
)->Common
.Type
;
901 Status
= AcpiExResolveToValue (Operand
, WalkState
);
902 if (ACPI_FAILURE (Status
))
907 if (Type
== ACPI_TYPE_INTEGER
)
909 /* It was incremented by AcpiExResolveToValue */
911 AcpiUtRemoveReference (*Operand
);
913 Status
= AcpiUtCopyIobjectToIobject (
914 *Operand
, &NewObjDesc
, WalkState
);
915 if (ACPI_FAILURE (Status
))
923 * The object either was anew created or is
924 * a Namespace node - don't decrement it.
926 NewObjDesc
= *Operand
;
929 /* Cleanup for name-path operand */
931 Status
= AcpiDsObjStackPop (1, WalkState
);
932 if (ACPI_FAILURE (Status
))
934 WalkState
->ResultObj
= NewObjDesc
;
940 WalkState
->ResultObj
= NewObjDesc
;
942 Status
= AcpiDsResultPush (WalkState
->ResultObj
, WalkState
);
943 if (ACPI_SUCCESS (Status
))
945 /* Force to take it from stack */
947 Op
->Common
.Flags
|= ACPI_PARSEOP_IN_STACK
;
952 return_ACPI_STATUS (Status
);