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.
44 #include <acpi/acpi.h>
53 #define _COMPONENT ACPI_DISPATCHER
54 ACPI_MODULE_NAME("dsutils")
56 /*******************************************************************************
58 * FUNCTION: acpi_ds_clear_implicit_return
60 * PARAMETERS: walk_state - Current State
64 * DESCRIPTION: Clear and remove a reference on an implicit return value. Used
65 * to delete "stale" return values (if enabled, the return value
66 * from every operator is saved at least momentarily, in case the
67 * parent method exits.)
69 ******************************************************************************/
70 void acpi_ds_clear_implicit_return(struct acpi_walk_state
*walk_state
)
72 ACPI_FUNCTION_NAME(ds_clear_implicit_return
);
75 * Slack must be enabled for this feature
77 if (!acpi_gbl_enable_interpreter_slack
) {
81 if (walk_state
->implicit_return_obj
) {
83 * Delete any "stale" implicit return. However, in
84 * complex statements, the implicit return value can be
85 * bubbled up several levels.
87 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH
,
88 "Removing reference on stale implicit return obj %p\n",
89 walk_state
->implicit_return_obj
));
91 acpi_ut_remove_reference(walk_state
->implicit_return_obj
);
92 walk_state
->implicit_return_obj
= NULL
;
96 #ifndef ACPI_NO_METHOD_EXECUTION
97 /*******************************************************************************
99 * FUNCTION: acpi_ds_do_implicit_return
101 * PARAMETERS: return_desc - The return value
102 * walk_state - Current State
103 * add_reference - True if a reference should be added to the
106 * RETURN: TRUE if implicit return enabled, FALSE otherwise
108 * DESCRIPTION: Implements the optional "implicit return". We save the result
109 * of every ASL operator and control method invocation in case the
110 * parent method exit. Before storing a new return value, we
111 * delete the previous return value.
113 ******************************************************************************/
116 acpi_ds_do_implicit_return(union acpi_operand_object
*return_desc
,
117 struct acpi_walk_state
*walk_state
, u8 add_reference
)
119 ACPI_FUNCTION_NAME(ds_do_implicit_return
);
122 * Slack must be enabled for this feature, and we must
123 * have a valid return object
125 if ((!acpi_gbl_enable_interpreter_slack
) || (!return_desc
)) {
129 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH
,
130 "Result %p will be implicitly returned; Prev=%p\n",
131 return_desc
, walk_state
->implicit_return_obj
));
134 * Delete any "stale" implicit return value first. However, in
135 * complex statements, the implicit return value can be
136 * bubbled up several levels, so we don't clear the value if it
137 * is the same as the return_desc.
139 if (walk_state
->implicit_return_obj
) {
140 if (walk_state
->implicit_return_obj
== return_desc
) {
143 acpi_ds_clear_implicit_return(walk_state
);
146 /* Save the implicit return value, add a reference if requested */
148 walk_state
->implicit_return_obj
= return_desc
;
150 acpi_ut_add_reference(return_desc
);
156 /*******************************************************************************
158 * FUNCTION: acpi_ds_is_result_used
160 * PARAMETERS: op - Current Op
161 * walk_state - Current State
163 * RETURN: TRUE if result is used, FALSE otherwise
165 * DESCRIPTION: Check if a result object will be used by the parent
167 ******************************************************************************/
170 acpi_ds_is_result_used(union acpi_parse_object
* op
,
171 struct acpi_walk_state
* walk_state
)
173 const struct acpi_opcode_info
*parent_info
;
175 ACPI_FUNCTION_TRACE_PTR(ds_is_result_used
, op
);
177 /* Must have both an Op and a Result Object */
180 ACPI_ERROR((AE_INFO
, "Null Op"));
185 * We know that this operator is not a
186 * Return() operator (would not come here.) The following code is the
187 * optional support for a so-called "implicit return". Some AML code
188 * assumes that the last value of the method is "implicitly" returned
189 * to the caller. Just save the last result as the return value.
190 * NOTE: this is optional because the ASL language does not actually
191 * support this behavior.
193 (void)acpi_ds_do_implicit_return(walk_state
->result_obj
, walk_state
,
197 * Now determine if the parent will use the result
199 * If there is no parent, or the parent is a scope_op, we are executing
200 * at the method level. An executing method typically has no parent,
201 * since each method is parsed separately. A method invoked externally
202 * via execute_control_method has a scope_op as the parent.
204 if ((!op
->common
.parent
) ||
205 (op
->common
.parent
->common
.aml_opcode
== AML_SCOPE_OP
)) {
207 /* No parent, the return value cannot possibly be used */
209 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH
,
210 "At Method level, result of [%s] not used\n",
211 acpi_ps_get_opcode_name(op
->common
.
216 /* Get info on the parent. The root_op is AML_SCOPE */
219 acpi_ps_get_opcode_info(op
->common
.parent
->common
.aml_opcode
);
220 if (parent_info
->class == AML_CLASS_UNKNOWN
) {
221 ACPI_ERROR((AE_INFO
, "Unknown parent opcode Op=%p", op
));
226 * Decide what to do with the result based on the parent. If
227 * the parent opcode will not use the result, delete the object.
228 * Otherwise leave it as is, it will be deleted when it is used
229 * as an operand later.
231 switch (parent_info
->class) {
232 case AML_CLASS_CONTROL
:
234 switch (op
->common
.parent
->common
.aml_opcode
) {
237 /* Never delete the return value associated with a return opcode */
244 * If we are executing the predicate AND this is the predicate op,
245 * we will use the return value
247 if ((walk_state
->control_state
->common
.state
==
248 ACPI_CONTROL_PREDICATE_EXECUTING
) &&
249 (walk_state
->control_state
->control
.predicate_op
==
257 /* Ignore other control opcodes */
262 /* The general control opcode returns no result */
264 goto result_not_used
;
266 case AML_CLASS_CREATE
:
268 * These opcodes allow term_arg(s) as operands and therefore
269 * the operands can be method calls. The result is used.
273 case AML_CLASS_NAMED_OBJECT
:
275 if ((op
->common
.parent
->common
.aml_opcode
== AML_REGION_OP
) ||
276 (op
->common
.parent
->common
.aml_opcode
== AML_DATA_REGION_OP
)
277 || (op
->common
.parent
->common
.aml_opcode
== AML_PACKAGE_OP
)
278 || (op
->common
.parent
->common
.aml_opcode
==
280 || (op
->common
.parent
->common
.aml_opcode
== AML_BUFFER_OP
)
281 || (op
->common
.parent
->common
.aml_opcode
==
282 AML_INT_EVAL_SUBTREE_OP
)
283 || (op
->common
.parent
->common
.aml_opcode
==
284 AML_BANK_FIELD_OP
)) {
286 * These opcodes allow term_arg(s) as operands and therefore
287 * the operands can be method calls. The result is used.
292 goto result_not_used
;
296 * In all other cases. the parent will actually use the return
297 * object, so keep it.
303 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH
,
304 "Result of [%s] used by Parent [%s] Op=%p\n",
305 acpi_ps_get_opcode_name(op
->common
.aml_opcode
),
306 acpi_ps_get_opcode_name(op
->common
.parent
->common
.
312 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH
,
313 "Result of [%s] not used by Parent [%s] Op=%p\n",
314 acpi_ps_get_opcode_name(op
->common
.aml_opcode
),
315 acpi_ps_get_opcode_name(op
->common
.parent
->common
.
321 /*******************************************************************************
323 * FUNCTION: acpi_ds_delete_result_if_not_used
325 * PARAMETERS: op - Current parse Op
326 * result_obj - Result of the operation
327 * walk_state - Current state
331 * DESCRIPTION: Used after interpretation of an opcode. If there is an internal
332 * result descriptor, check if the parent opcode will actually use
333 * this result. If not, delete the result now so that it will
334 * not become orphaned.
336 ******************************************************************************/
339 acpi_ds_delete_result_if_not_used(union acpi_parse_object
*op
,
340 union acpi_operand_object
*result_obj
,
341 struct acpi_walk_state
*walk_state
)
343 union acpi_operand_object
*obj_desc
;
346 ACPI_FUNCTION_TRACE_PTR(ds_delete_result_if_not_used
, result_obj
);
349 ACPI_ERROR((AE_INFO
, "Null Op"));
357 if (!acpi_ds_is_result_used(op
, walk_state
)) {
359 /* Must pop the result stack (obj_desc should be equal to result_obj) */
361 status
= acpi_ds_result_pop(&obj_desc
, walk_state
);
362 if (ACPI_SUCCESS(status
)) {
363 acpi_ut_remove_reference(result_obj
);
370 /*******************************************************************************
372 * FUNCTION: acpi_ds_resolve_operands
374 * PARAMETERS: walk_state - Current walk state with operands on stack
378 * DESCRIPTION: Resolve all operands to their values. Used to prepare
379 * arguments to a control method invocation (a call from one
380 * method to another.)
382 ******************************************************************************/
384 acpi_status
acpi_ds_resolve_operands(struct acpi_walk_state
*walk_state
)
387 acpi_status status
= AE_OK
;
389 ACPI_FUNCTION_TRACE_PTR(ds_resolve_operands
, walk_state
);
392 * Attempt to resolve each of the valid operands
393 * Method arguments are passed by reference, not by value. This means
394 * that the actual objects are passed, not copies of the objects.
396 for (i
= 0; i
< walk_state
->num_operands
; i
++) {
398 acpi_ex_resolve_to_value(&walk_state
->operands
[i
],
400 if (ACPI_FAILURE(status
)) {
405 return_ACPI_STATUS(status
);
408 /*******************************************************************************
410 * FUNCTION: acpi_ds_clear_operands
412 * PARAMETERS: walk_state - Current walk state with operands on stack
416 * DESCRIPTION: Clear all operands on the current walk state operand stack.
418 ******************************************************************************/
420 void acpi_ds_clear_operands(struct acpi_walk_state
*walk_state
)
424 ACPI_FUNCTION_TRACE_PTR(ds_clear_operands
, walk_state
);
426 /* Remove a reference on each operand on the stack */
428 for (i
= 0; i
< walk_state
->num_operands
; i
++) {
430 * Remove a reference to all operands, including both
431 * "Arguments" and "Targets".
433 acpi_ut_remove_reference(walk_state
->operands
[i
]);
434 walk_state
->operands
[i
] = NULL
;
437 walk_state
->num_operands
= 0;
442 /*******************************************************************************
444 * FUNCTION: acpi_ds_create_operand
446 * PARAMETERS: walk_state - Current walk state
447 * arg - Parse object for the argument
448 * arg_index - Which argument (zero based)
452 * DESCRIPTION: Translate a parse tree object that is an argument to an AML
453 * opcode to the equivalent interpreter object. This may include
454 * looking up a name or entering a new name into the internal
457 ******************************************************************************/
460 acpi_ds_create_operand(struct acpi_walk_state
*walk_state
,
461 union acpi_parse_object
*arg
, u32 arg_index
)
463 acpi_status status
= AE_OK
;
466 union acpi_operand_object
*obj_desc
;
467 union acpi_parse_object
*parent_op
;
469 acpi_interpreter_mode interpreter_mode
;
470 const struct acpi_opcode_info
*op_info
;
472 ACPI_FUNCTION_TRACE_PTR(ds_create_operand
, arg
);
474 /* A valid name must be looked up in the namespace */
476 if ((arg
->common
.aml_opcode
== AML_INT_NAMEPATH_OP
) &&
477 (arg
->common
.value
.string
) &&
478 !(arg
->common
.flags
& ACPI_PARSEOP_IN_STACK
)) {
479 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH
, "Getting a name: Arg=%p\n",
482 /* Get the entire name string from the AML stream */
484 status
= acpi_ex_get_name_string(ACPI_TYPE_ANY
,
485 arg
->common
.value
.buffer
,
486 &name_string
, &name_length
);
488 if (ACPI_FAILURE(status
)) {
489 return_ACPI_STATUS(status
);
492 /* All prefixes have been handled, and the name is in name_string */
495 * Special handling for buffer_field declarations. This is a deferred
496 * opcode that unfortunately defines the field name as the last
497 * parameter instead of the first. We get here when we are performing
498 * the deferred execution, so the actual name of the field is already
499 * in the namespace. We don't want to attempt to look it up again
500 * because we may be executing in a different scope than where the
501 * actual opcode exists.
503 if ((walk_state
->deferred_node
) &&
504 (walk_state
->deferred_node
->type
== ACPI_TYPE_BUFFER_FIELD
)
505 && (arg_index
== (u32
)
506 ((walk_state
->opcode
== AML_CREATE_FIELD_OP
) ? 3 : 2))) {
508 ACPI_CAST_PTR(union acpi_operand_object
,
509 walk_state
->deferred_node
);
511 } else { /* All other opcodes */
514 * Differentiate between a namespace "create" operation
515 * versus a "lookup" operation (IMODE_LOAD_PASS2 vs.
516 * IMODE_EXECUTE) in order to support the creation of
517 * namespace objects during the execution of control methods.
519 parent_op
= arg
->common
.parent
;
521 acpi_ps_get_opcode_info(parent_op
->common
.
524 if ((op_info
->flags
& AML_NSNODE
) &&
525 (parent_op
->common
.aml_opcode
!=
526 AML_INT_METHODCALL_OP
)
527 && (parent_op
->common
.aml_opcode
!= AML_REGION_OP
)
528 && (parent_op
->common
.aml_opcode
!=
529 AML_INT_NAMEPATH_OP
)) {
531 /* Enter name into namespace if not found */
533 interpreter_mode
= ACPI_IMODE_LOAD_PASS2
;
535 /* Return a failure if name not found */
537 interpreter_mode
= ACPI_IMODE_EXECUTE
;
541 acpi_ns_lookup(walk_state
->scope_info
, name_string
,
542 ACPI_TYPE_ANY
, interpreter_mode
,
543 ACPI_NS_SEARCH_PARENT
|
544 ACPI_NS_DONT_OPEN_SCOPE
, walk_state
,
545 ACPI_CAST_INDIRECT_PTR(struct
549 * The only case where we pass through (ignore) a NOT_FOUND
550 * error is for the cond_ref_of opcode.
552 if (status
== AE_NOT_FOUND
) {
553 if (parent_op
->common
.aml_opcode
==
554 AML_COND_REF_OF_OP
) {
556 * For the Conditional Reference op, it's OK if
557 * the name is not found; We just need a way to
558 * indicate this to the interpreter, set the
566 } else if (parent_op
->common
.aml_opcode
==
569 /* TBD: May only be temporary */
572 acpi_ut_create_string_object((acpi_size
) name_length
);
574 strncpy(obj_desc
->string
.pointer
,
575 name_string
, name_length
);
579 * We just plain didn't find it -- which is a
580 * very serious error at this point
582 status
= AE_AML_NAME_NOT_FOUND
;
586 if (ACPI_FAILURE(status
)) {
587 ACPI_ERROR_NAMESPACE(name_string
, status
);
591 /* Free the namestring created above */
593 ACPI_FREE(name_string
);
595 /* Check status from the lookup */
597 if (ACPI_FAILURE(status
)) {
598 return_ACPI_STATUS(status
);
601 /* Put the resulting object onto the current object stack */
603 status
= acpi_ds_obj_stack_push(obj_desc
, walk_state
);
604 if (ACPI_FAILURE(status
)) {
605 return_ACPI_STATUS(status
);
608 acpi_db_display_argument_object(obj_desc
, walk_state
);
610 /* Check for null name case */
612 if ((arg
->common
.aml_opcode
== AML_INT_NAMEPATH_OP
) &&
613 !(arg
->common
.flags
& ACPI_PARSEOP_IN_STACK
)) {
615 * If the name is null, this means that this is an
616 * optional result parameter that was not specified
617 * in the original ASL. Create a Zero Constant for a
618 * placeholder. (Store to a constant is a Noop.)
620 opcode
= AML_ZERO_OP
; /* Has no arguments! */
622 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH
,
623 "Null namepath: Arg=%p\n", arg
));
625 opcode
= arg
->common
.aml_opcode
;
628 /* Get the object type of the argument */
630 op_info
= acpi_ps_get_opcode_info(opcode
);
631 if (op_info
->object_type
== ACPI_TYPE_INVALID
) {
632 return_ACPI_STATUS(AE_NOT_IMPLEMENTED
);
635 if ((op_info
->flags
& AML_HAS_RETVAL
) ||
636 (arg
->common
.flags
& ACPI_PARSEOP_IN_STACK
)) {
637 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH
,
638 "Argument previously created, already stacked\n"));
640 acpi_db_display_argument_object(walk_state
->
641 operands
[walk_state
->
647 * Use value that was already previously returned
648 * by the evaluation of this argument
650 status
= acpi_ds_result_pop(&obj_desc
, walk_state
);
651 if (ACPI_FAILURE(status
)) {
653 * Only error is underflow, and this indicates
654 * a missing or null operand!
656 ACPI_EXCEPTION((AE_INFO
, status
,
657 "Missing or null operand"));
658 return_ACPI_STATUS(status
);
661 /* Create an ACPI_INTERNAL_OBJECT for the argument */
664 acpi_ut_create_internal_object(op_info
->
667 return_ACPI_STATUS(AE_NO_MEMORY
);
670 /* Initialize the new object */
673 acpi_ds_init_object_from_op(walk_state
, arg
, opcode
,
675 if (ACPI_FAILURE(status
)) {
676 acpi_ut_delete_object_desc(obj_desc
);
677 return_ACPI_STATUS(status
);
681 /* Put the operand object on the object stack */
683 status
= acpi_ds_obj_stack_push(obj_desc
, walk_state
);
684 if (ACPI_FAILURE(status
)) {
685 return_ACPI_STATUS(status
);
688 acpi_db_display_argument_object(obj_desc
, walk_state
);
691 return_ACPI_STATUS(AE_OK
);
694 /*******************************************************************************
696 * FUNCTION: acpi_ds_create_operands
698 * PARAMETERS: walk_state - Current state
699 * first_arg - First argument of a parser argument tree
703 * DESCRIPTION: Convert an operator's arguments from a parse tree format to
704 * namespace objects and place those argument object on the object
705 * stack in preparation for evaluation by the interpreter.
707 ******************************************************************************/
710 acpi_ds_create_operands(struct acpi_walk_state
*walk_state
,
711 union acpi_parse_object
*first_arg
)
713 acpi_status status
= AE_OK
;
714 union acpi_parse_object
*arg
;
715 union acpi_parse_object
*arguments
[ACPI_OBJ_NUM_OPERANDS
];
717 u32 index
= walk_state
->num_operands
;
720 ACPI_FUNCTION_TRACE_PTR(ds_create_operands
, first_arg
);
722 /* Get all arguments in the list */
726 if (index
>= ACPI_OBJ_NUM_OPERANDS
) {
727 return_ACPI_STATUS(AE_BAD_DATA
);
730 arguments
[index
] = arg
;
731 walk_state
->operands
[index
] = NULL
;
733 /* Move on to next argument, if any */
735 arg
= arg
->common
.next
;
740 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH
,
741 "NumOperands %d, ArgCount %d, Index %d\n",
742 walk_state
->num_operands
, arg_count
, index
));
744 /* Create the interpreter arguments, in reverse order */
747 for (i
= 0; i
< arg_count
; i
++) {
748 arg
= arguments
[index
];
749 walk_state
->operand_index
= (u8
)index
;
751 status
= acpi_ds_create_operand(walk_state
, arg
, index
);
752 if (ACPI_FAILURE(status
)) {
756 ACPI_DEBUG_PRINT((ACPI_DB_DISPATCH
,
757 "Created Arg #%u (%p) %u args total\n",
758 index
, arg
, arg_count
));
762 return_ACPI_STATUS(status
);
766 * We must undo everything done above; meaning that we must
767 * pop everything off of the operand stack and delete those
770 acpi_ds_obj_stack_pop_and_delete(arg_count
, walk_state
);
772 ACPI_EXCEPTION((AE_INFO
, status
, "While creating Arg %u", index
));
773 return_ACPI_STATUS(status
);
776 /*****************************************************************************
778 * FUNCTION: acpi_ds_evaluate_name_path
780 * PARAMETERS: walk_state - Current state of the parse tree walk,
781 * the opcode of current operation should be
782 * AML_INT_NAMEPATH_OP
786 * DESCRIPTION: Translate the -name_path- parse tree object to the equivalent
787 * interpreter object, convert it to value, if needed, duplicate
788 * it, if needed, and push it onto the current result stack.
790 ****************************************************************************/
792 acpi_status
acpi_ds_evaluate_name_path(struct acpi_walk_state
*walk_state
)
794 acpi_status status
= AE_OK
;
795 union acpi_parse_object
*op
= walk_state
->op
;
796 union acpi_operand_object
**operand
= &walk_state
->operands
[0];
797 union acpi_operand_object
*new_obj_desc
;
800 ACPI_FUNCTION_TRACE_PTR(ds_evaluate_name_path
, walk_state
);
802 if (!op
->common
.parent
) {
804 /* This happens after certain exception processing */
809 if ((op
->common
.parent
->common
.aml_opcode
== AML_PACKAGE_OP
) ||
810 (op
->common
.parent
->common
.aml_opcode
== AML_VAR_PACKAGE_OP
) ||
811 (op
->common
.parent
->common
.aml_opcode
== AML_REF_OF_OP
)) {
813 /* TBD: Should we specify this feature as a bit of op_info->Flags of these opcodes? */
818 status
= acpi_ds_create_operand(walk_state
, op
, 0);
819 if (ACPI_FAILURE(status
)) {
823 if (op
->common
.flags
& ACPI_PARSEOP_TARGET
) {
824 new_obj_desc
= *operand
;
828 type
= (*operand
)->common
.type
;
830 status
= acpi_ex_resolve_to_value(operand
, walk_state
);
831 if (ACPI_FAILURE(status
)) {
835 if (type
== ACPI_TYPE_INTEGER
) {
837 /* It was incremented by acpi_ex_resolve_to_value */
839 acpi_ut_remove_reference(*operand
);
842 acpi_ut_copy_iobject_to_iobject(*operand
, &new_obj_desc
,
844 if (ACPI_FAILURE(status
)) {
849 * The object either was anew created or is
850 * a Namespace node - don't decrement it.
852 new_obj_desc
= *operand
;
855 /* Cleanup for name-path operand */
857 status
= acpi_ds_obj_stack_pop(1, walk_state
);
858 if (ACPI_FAILURE(status
)) {
859 walk_state
->result_obj
= new_obj_desc
;
865 walk_state
->result_obj
= new_obj_desc
;
867 status
= acpi_ds_result_push(walk_state
->result_obj
, walk_state
);
868 if (ACPI_SUCCESS(status
)) {
870 /* Force to take it from stack */
872 op
->common
.flags
|= ACPI_PARSEOP_IN_STACK
;
877 return_ACPI_STATUS(status
);