dsutils.c revision 1.1.1.2 1 1.1 jruoho /*******************************************************************************
2 1.1 jruoho *
3 1.1 jruoho * Module Name: dsutils - Dispatcher utilities
4 1.1 jruoho *
5 1.1 jruoho ******************************************************************************/
6 1.1 jruoho
7 1.1.1.2 jruoho /*
8 1.1.1.2 jruoho * Copyright (C) 2000 - 2011, Intel Corp.
9 1.1 jruoho * All rights reserved.
10 1.1 jruoho *
11 1.1.1.2 jruoho * Redistribution and use in source and binary forms, with or without
12 1.1.1.2 jruoho * modification, are permitted provided that the following conditions
13 1.1.1.2 jruoho * are met:
14 1.1.1.2 jruoho * 1. Redistributions of source code must retain the above copyright
15 1.1.1.2 jruoho * notice, this list of conditions, and the following disclaimer,
16 1.1.1.2 jruoho * without modification.
17 1.1.1.2 jruoho * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 1.1.1.2 jruoho * substantially similar to the "NO WARRANTY" disclaimer below
19 1.1.1.2 jruoho * ("Disclaimer") and any redistribution must be conditioned upon
20 1.1.1.2 jruoho * including a substantially similar Disclaimer requirement for further
21 1.1.1.2 jruoho * binary redistribution.
22 1.1.1.2 jruoho * 3. Neither the names of the above-listed copyright holders nor the names
23 1.1.1.2 jruoho * of any contributors may be used to endorse or promote products derived
24 1.1.1.2 jruoho * from this software without specific prior written permission.
25 1.1.1.2 jruoho *
26 1.1.1.2 jruoho * Alternatively, this software may be distributed under the terms of the
27 1.1.1.2 jruoho * GNU General Public License ("GPL") version 2 as published by the Free
28 1.1.1.2 jruoho * Software Foundation.
29 1.1.1.2 jruoho *
30 1.1.1.2 jruoho * NO WARRANTY
31 1.1.1.2 jruoho * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 1.1.1.2 jruoho * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 1.1.1.2 jruoho * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 1.1.1.2 jruoho * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 1.1.1.2 jruoho * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 1.1.1.2 jruoho * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 1.1.1.2 jruoho * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 1.1.1.2 jruoho * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 1.1.1.2 jruoho * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 1.1.1.2 jruoho * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 1.1.1.2 jruoho * POSSIBILITY OF SUCH DAMAGES.
42 1.1.1.2 jruoho */
43 1.1 jruoho
44 1.1 jruoho #define __DSUTILS_C__
45 1.1 jruoho
46 1.1 jruoho #include "acpi.h"
47 1.1 jruoho #include "accommon.h"
48 1.1 jruoho #include "acparser.h"
49 1.1 jruoho #include "amlcode.h"
50 1.1 jruoho #include "acdispat.h"
51 1.1 jruoho #include "acinterp.h"
52 1.1 jruoho #include "acnamesp.h"
53 1.1 jruoho #include "acdebug.h"
54 1.1 jruoho
55 1.1 jruoho #define _COMPONENT ACPI_DISPATCHER
56 1.1 jruoho ACPI_MODULE_NAME ("dsutils")
57 1.1 jruoho
58 1.1 jruoho
59 1.1 jruoho /*******************************************************************************
60 1.1 jruoho *
61 1.1 jruoho * FUNCTION: AcpiDsClearImplicitReturn
62 1.1 jruoho *
63 1.1 jruoho * PARAMETERS: WalkState - Current State
64 1.1 jruoho *
65 1.1 jruoho * RETURN: None.
66 1.1 jruoho *
67 1.1 jruoho * DESCRIPTION: Clear and remove a reference on an implicit return value. Used
68 1.1 jruoho * to delete "stale" return values (if enabled, the return value
69 1.1 jruoho * from every operator is saved at least momentarily, in case the
70 1.1 jruoho * parent method exits.)
71 1.1 jruoho *
72 1.1 jruoho ******************************************************************************/
73 1.1 jruoho
74 1.1 jruoho void
75 1.1 jruoho AcpiDsClearImplicitReturn (
76 1.1 jruoho ACPI_WALK_STATE *WalkState)
77 1.1 jruoho {
78 1.1 jruoho ACPI_FUNCTION_NAME (DsClearImplicitReturn);
79 1.1 jruoho
80 1.1 jruoho
81 1.1 jruoho /*
82 1.1 jruoho * Slack must be enabled for this feature
83 1.1 jruoho */
84 1.1 jruoho if (!AcpiGbl_EnableInterpreterSlack)
85 1.1 jruoho {
86 1.1 jruoho return;
87 1.1 jruoho }
88 1.1 jruoho
89 1.1 jruoho if (WalkState->ImplicitReturnObj)
90 1.1 jruoho {
91 1.1 jruoho /*
92 1.1 jruoho * Delete any "stale" implicit return. However, in
93 1.1 jruoho * complex statements, the implicit return value can be
94 1.1 jruoho * bubbled up several levels.
95 1.1 jruoho */
96 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
97 1.1 jruoho "Removing reference on stale implicit return obj %p\n",
98 1.1 jruoho WalkState->ImplicitReturnObj));
99 1.1 jruoho
100 1.1 jruoho AcpiUtRemoveReference (WalkState->ImplicitReturnObj);
101 1.1 jruoho WalkState->ImplicitReturnObj = NULL;
102 1.1 jruoho }
103 1.1 jruoho }
104 1.1 jruoho
105 1.1 jruoho
106 1.1 jruoho #ifndef ACPI_NO_METHOD_EXECUTION
107 1.1 jruoho /*******************************************************************************
108 1.1 jruoho *
109 1.1 jruoho * FUNCTION: AcpiDsDoImplicitReturn
110 1.1 jruoho *
111 1.1 jruoho * PARAMETERS: ReturnDesc - The return value
112 1.1 jruoho * WalkState - Current State
113 1.1 jruoho * AddReference - True if a reference should be added to the
114 1.1 jruoho * return object
115 1.1 jruoho *
116 1.1 jruoho * RETURN: TRUE if implicit return enabled, FALSE otherwise
117 1.1 jruoho *
118 1.1 jruoho * DESCRIPTION: Implements the optional "implicit return". We save the result
119 1.1 jruoho * of every ASL operator and control method invocation in case the
120 1.1 jruoho * parent method exit. Before storing a new return value, we
121 1.1 jruoho * delete the previous return value.
122 1.1 jruoho *
123 1.1 jruoho ******************************************************************************/
124 1.1 jruoho
125 1.1 jruoho BOOLEAN
126 1.1 jruoho AcpiDsDoImplicitReturn (
127 1.1 jruoho ACPI_OPERAND_OBJECT *ReturnDesc,
128 1.1 jruoho ACPI_WALK_STATE *WalkState,
129 1.1 jruoho BOOLEAN AddReference)
130 1.1 jruoho {
131 1.1 jruoho ACPI_FUNCTION_NAME (DsDoImplicitReturn);
132 1.1 jruoho
133 1.1 jruoho
134 1.1 jruoho /*
135 1.1 jruoho * Slack must be enabled for this feature, and we must
136 1.1 jruoho * have a valid return object
137 1.1 jruoho */
138 1.1 jruoho if ((!AcpiGbl_EnableInterpreterSlack) ||
139 1.1 jruoho (!ReturnDesc))
140 1.1 jruoho {
141 1.1 jruoho return (FALSE);
142 1.1 jruoho }
143 1.1 jruoho
144 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
145 1.1 jruoho "Result %p will be implicitly returned; Prev=%p\n",
146 1.1 jruoho ReturnDesc,
147 1.1 jruoho WalkState->ImplicitReturnObj));
148 1.1 jruoho
149 1.1 jruoho /*
150 1.1 jruoho * Delete any "stale" implicit return value first. However, in
151 1.1 jruoho * complex statements, the implicit return value can be
152 1.1 jruoho * bubbled up several levels, so we don't clear the value if it
153 1.1 jruoho * is the same as the ReturnDesc.
154 1.1 jruoho */
155 1.1 jruoho if (WalkState->ImplicitReturnObj)
156 1.1 jruoho {
157 1.1 jruoho if (WalkState->ImplicitReturnObj == ReturnDesc)
158 1.1 jruoho {
159 1.1 jruoho return (TRUE);
160 1.1 jruoho }
161 1.1 jruoho AcpiDsClearImplicitReturn (WalkState);
162 1.1 jruoho }
163 1.1 jruoho
164 1.1 jruoho /* Save the implicit return value, add a reference if requested */
165 1.1 jruoho
166 1.1 jruoho WalkState->ImplicitReturnObj = ReturnDesc;
167 1.1 jruoho if (AddReference)
168 1.1 jruoho {
169 1.1 jruoho AcpiUtAddReference (ReturnDesc);
170 1.1 jruoho }
171 1.1 jruoho
172 1.1 jruoho return (TRUE);
173 1.1 jruoho }
174 1.1 jruoho
175 1.1 jruoho
176 1.1 jruoho /*******************************************************************************
177 1.1 jruoho *
178 1.1 jruoho * FUNCTION: AcpiDsIsResultUsed
179 1.1 jruoho *
180 1.1 jruoho * PARAMETERS: Op - Current Op
181 1.1 jruoho * WalkState - Current State
182 1.1 jruoho *
183 1.1 jruoho * RETURN: TRUE if result is used, FALSE otherwise
184 1.1 jruoho *
185 1.1 jruoho * DESCRIPTION: Check if a result object will be used by the parent
186 1.1 jruoho *
187 1.1 jruoho ******************************************************************************/
188 1.1 jruoho
189 1.1 jruoho BOOLEAN
190 1.1 jruoho AcpiDsIsResultUsed (
191 1.1 jruoho ACPI_PARSE_OBJECT *Op,
192 1.1 jruoho ACPI_WALK_STATE *WalkState)
193 1.1 jruoho {
194 1.1 jruoho const ACPI_OPCODE_INFO *ParentInfo;
195 1.1 jruoho
196 1.1 jruoho ACPI_FUNCTION_TRACE_PTR (DsIsResultUsed, Op);
197 1.1 jruoho
198 1.1 jruoho
199 1.1 jruoho /* Must have both an Op and a Result Object */
200 1.1 jruoho
201 1.1 jruoho if (!Op)
202 1.1 jruoho {
203 1.1 jruoho ACPI_ERROR ((AE_INFO, "Null Op"));
204 1.1 jruoho return_UINT8 (TRUE);
205 1.1 jruoho }
206 1.1 jruoho
207 1.1 jruoho /*
208 1.1 jruoho * We know that this operator is not a
209 1.1 jruoho * Return() operator (would not come here.) The following code is the
210 1.1 jruoho * optional support for a so-called "implicit return". Some AML code
211 1.1 jruoho * assumes that the last value of the method is "implicitly" returned
212 1.1 jruoho * to the caller. Just save the last result as the return value.
213 1.1 jruoho * NOTE: this is optional because the ASL language does not actually
214 1.1 jruoho * support this behavior.
215 1.1 jruoho */
216 1.1 jruoho (void) AcpiDsDoImplicitReturn (WalkState->ResultObj, WalkState, TRUE);
217 1.1 jruoho
218 1.1 jruoho /*
219 1.1 jruoho * Now determine if the parent will use the result
220 1.1 jruoho *
221 1.1 jruoho * If there is no parent, or the parent is a ScopeOp, we are executing
222 1.1 jruoho * at the method level. An executing method typically has no parent,
223 1.1 jruoho * since each method is parsed separately. A method invoked externally
224 1.1 jruoho * via ExecuteControlMethod has a ScopeOp as the parent.
225 1.1 jruoho */
226 1.1 jruoho if ((!Op->Common.Parent) ||
227 1.1 jruoho (Op->Common.Parent->Common.AmlOpcode == AML_SCOPE_OP))
228 1.1 jruoho {
229 1.1 jruoho /* No parent, the return value cannot possibly be used */
230 1.1 jruoho
231 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
232 1.1 jruoho "At Method level, result of [%s] not used\n",
233 1.1 jruoho AcpiPsGetOpcodeName (Op->Common.AmlOpcode)));
234 1.1 jruoho return_UINT8 (FALSE);
235 1.1 jruoho }
236 1.1 jruoho
237 1.1 jruoho /* Get info on the parent. The RootOp is AML_SCOPE */
238 1.1 jruoho
239 1.1 jruoho ParentInfo = AcpiPsGetOpcodeInfo (Op->Common.Parent->Common.AmlOpcode);
240 1.1 jruoho if (ParentInfo->Class == AML_CLASS_UNKNOWN)
241 1.1 jruoho {
242 1.1 jruoho ACPI_ERROR ((AE_INFO,
243 1.1 jruoho "Unknown parent opcode Op=%p", Op));
244 1.1 jruoho return_UINT8 (FALSE);
245 1.1 jruoho }
246 1.1 jruoho
247 1.1 jruoho /*
248 1.1 jruoho * Decide what to do with the result based on the parent. If
249 1.1 jruoho * the parent opcode will not use the result, delete the object.
250 1.1 jruoho * Otherwise leave it as is, it will be deleted when it is used
251 1.1 jruoho * as an operand later.
252 1.1 jruoho */
253 1.1 jruoho switch (ParentInfo->Class)
254 1.1 jruoho {
255 1.1 jruoho case AML_CLASS_CONTROL:
256 1.1 jruoho
257 1.1 jruoho switch (Op->Common.Parent->Common.AmlOpcode)
258 1.1 jruoho {
259 1.1 jruoho case AML_RETURN_OP:
260 1.1 jruoho
261 1.1 jruoho /* Never delete the return value associated with a return opcode */
262 1.1 jruoho
263 1.1 jruoho goto ResultUsed;
264 1.1 jruoho
265 1.1 jruoho case AML_IF_OP:
266 1.1 jruoho case AML_WHILE_OP:
267 1.1 jruoho
268 1.1 jruoho /*
269 1.1 jruoho * If we are executing the predicate AND this is the predicate op,
270 1.1 jruoho * we will use the return value
271 1.1 jruoho */
272 1.1 jruoho if ((WalkState->ControlState->Common.State == ACPI_CONTROL_PREDICATE_EXECUTING) &&
273 1.1 jruoho (WalkState->ControlState->Control.PredicateOp == Op))
274 1.1 jruoho {
275 1.1 jruoho goto ResultUsed;
276 1.1 jruoho }
277 1.1 jruoho break;
278 1.1 jruoho
279 1.1 jruoho default:
280 1.1 jruoho /* Ignore other control opcodes */
281 1.1 jruoho break;
282 1.1 jruoho }
283 1.1 jruoho
284 1.1 jruoho /* The general control opcode returns no result */
285 1.1 jruoho
286 1.1 jruoho goto ResultNotUsed;
287 1.1 jruoho
288 1.1 jruoho
289 1.1 jruoho case AML_CLASS_CREATE:
290 1.1 jruoho
291 1.1 jruoho /*
292 1.1 jruoho * These opcodes allow TermArg(s) as operands and therefore
293 1.1 jruoho * the operands can be method calls. The result is used.
294 1.1 jruoho */
295 1.1 jruoho goto ResultUsed;
296 1.1 jruoho
297 1.1 jruoho
298 1.1 jruoho case AML_CLASS_NAMED_OBJECT:
299 1.1 jruoho
300 1.1 jruoho if ((Op->Common.Parent->Common.AmlOpcode == AML_REGION_OP) ||
301 1.1 jruoho (Op->Common.Parent->Common.AmlOpcode == AML_DATA_REGION_OP) ||
302 1.1 jruoho (Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
303 1.1 jruoho (Op->Common.Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP) ||
304 1.1 jruoho (Op->Common.Parent->Common.AmlOpcode == AML_BUFFER_OP) ||
305 1.1 jruoho (Op->Common.Parent->Common.AmlOpcode == AML_INT_EVAL_SUBTREE_OP) ||
306 1.1 jruoho (Op->Common.Parent->Common.AmlOpcode == AML_BANK_FIELD_OP))
307 1.1 jruoho {
308 1.1 jruoho /*
309 1.1 jruoho * These opcodes allow TermArg(s) as operands and therefore
310 1.1 jruoho * the operands can be method calls. The result is used.
311 1.1 jruoho */
312 1.1 jruoho goto ResultUsed;
313 1.1 jruoho }
314 1.1 jruoho
315 1.1 jruoho goto ResultNotUsed;
316 1.1 jruoho
317 1.1 jruoho
318 1.1 jruoho default:
319 1.1 jruoho
320 1.1 jruoho /*
321 1.1 jruoho * In all other cases. the parent will actually use the return
322 1.1 jruoho * object, so keep it.
323 1.1 jruoho */
324 1.1 jruoho goto ResultUsed;
325 1.1 jruoho }
326 1.1 jruoho
327 1.1 jruoho
328 1.1 jruoho ResultUsed:
329 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
330 1.1 jruoho "Result of [%s] used by Parent [%s] Op=%p\n",
331 1.1 jruoho AcpiPsGetOpcodeName (Op->Common.AmlOpcode),
332 1.1 jruoho AcpiPsGetOpcodeName (Op->Common.Parent->Common.AmlOpcode), Op));
333 1.1 jruoho
334 1.1 jruoho return_UINT8 (TRUE);
335 1.1 jruoho
336 1.1 jruoho
337 1.1 jruoho ResultNotUsed:
338 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
339 1.1 jruoho "Result of [%s] not used by Parent [%s] Op=%p\n",
340 1.1 jruoho AcpiPsGetOpcodeName (Op->Common.AmlOpcode),
341 1.1 jruoho AcpiPsGetOpcodeName (Op->Common.Parent->Common.AmlOpcode), Op));
342 1.1 jruoho
343 1.1 jruoho return_UINT8 (FALSE);
344 1.1 jruoho }
345 1.1 jruoho
346 1.1 jruoho
347 1.1 jruoho /*******************************************************************************
348 1.1 jruoho *
349 1.1 jruoho * FUNCTION: AcpiDsDeleteResultIfNotUsed
350 1.1 jruoho *
351 1.1 jruoho * PARAMETERS: Op - Current parse Op
352 1.1 jruoho * ResultObj - Result of the operation
353 1.1 jruoho * WalkState - Current state
354 1.1 jruoho *
355 1.1 jruoho * RETURN: Status
356 1.1 jruoho *
357 1.1 jruoho * DESCRIPTION: Used after interpretation of an opcode. If there is an internal
358 1.1 jruoho * result descriptor, check if the parent opcode will actually use
359 1.1 jruoho * this result. If not, delete the result now so that it will
360 1.1 jruoho * not become orphaned.
361 1.1 jruoho *
362 1.1 jruoho ******************************************************************************/
363 1.1 jruoho
364 1.1 jruoho void
365 1.1 jruoho AcpiDsDeleteResultIfNotUsed (
366 1.1 jruoho ACPI_PARSE_OBJECT *Op,
367 1.1 jruoho ACPI_OPERAND_OBJECT *ResultObj,
368 1.1 jruoho ACPI_WALK_STATE *WalkState)
369 1.1 jruoho {
370 1.1 jruoho ACPI_OPERAND_OBJECT *ObjDesc;
371 1.1 jruoho ACPI_STATUS Status;
372 1.1 jruoho
373 1.1 jruoho
374 1.1 jruoho ACPI_FUNCTION_TRACE_PTR (DsDeleteResultIfNotUsed, ResultObj);
375 1.1 jruoho
376 1.1 jruoho
377 1.1 jruoho if (!Op)
378 1.1 jruoho {
379 1.1 jruoho ACPI_ERROR ((AE_INFO, "Null Op"));
380 1.1 jruoho return_VOID;
381 1.1 jruoho }
382 1.1 jruoho
383 1.1 jruoho if (!ResultObj)
384 1.1 jruoho {
385 1.1 jruoho return_VOID;
386 1.1 jruoho }
387 1.1 jruoho
388 1.1 jruoho if (!AcpiDsIsResultUsed (Op, WalkState))
389 1.1 jruoho {
390 1.1 jruoho /* Must pop the result stack (ObjDesc should be equal to ResultObj) */
391 1.1 jruoho
392 1.1 jruoho Status = AcpiDsResultPop (&ObjDesc, WalkState);
393 1.1 jruoho if (ACPI_SUCCESS (Status))
394 1.1 jruoho {
395 1.1 jruoho AcpiUtRemoveReference (ResultObj);
396 1.1 jruoho }
397 1.1 jruoho }
398 1.1 jruoho
399 1.1 jruoho return_VOID;
400 1.1 jruoho }
401 1.1 jruoho
402 1.1 jruoho
403 1.1 jruoho /*******************************************************************************
404 1.1 jruoho *
405 1.1 jruoho * FUNCTION: AcpiDsResolveOperands
406 1.1 jruoho *
407 1.1 jruoho * PARAMETERS: WalkState - Current walk state with operands on stack
408 1.1 jruoho *
409 1.1 jruoho * RETURN: Status
410 1.1 jruoho *
411 1.1 jruoho * DESCRIPTION: Resolve all operands to their values. Used to prepare
412 1.1 jruoho * arguments to a control method invocation (a call from one
413 1.1 jruoho * method to another.)
414 1.1 jruoho *
415 1.1 jruoho ******************************************************************************/
416 1.1 jruoho
417 1.1 jruoho ACPI_STATUS
418 1.1 jruoho AcpiDsResolveOperands (
419 1.1 jruoho ACPI_WALK_STATE *WalkState)
420 1.1 jruoho {
421 1.1 jruoho UINT32 i;
422 1.1 jruoho ACPI_STATUS Status = AE_OK;
423 1.1 jruoho
424 1.1 jruoho
425 1.1 jruoho ACPI_FUNCTION_TRACE_PTR (DsResolveOperands, WalkState);
426 1.1 jruoho
427 1.1 jruoho
428 1.1 jruoho /*
429 1.1 jruoho * Attempt to resolve each of the valid operands
430 1.1 jruoho * Method arguments are passed by reference, not by value. This means
431 1.1 jruoho * that the actual objects are passed, not copies of the objects.
432 1.1 jruoho */
433 1.1 jruoho for (i = 0; i < WalkState->NumOperands; i++)
434 1.1 jruoho {
435 1.1 jruoho Status = AcpiExResolveToValue (&WalkState->Operands[i], WalkState);
436 1.1 jruoho if (ACPI_FAILURE (Status))
437 1.1 jruoho {
438 1.1 jruoho break;
439 1.1 jruoho }
440 1.1 jruoho }
441 1.1 jruoho
442 1.1 jruoho return_ACPI_STATUS (Status);
443 1.1 jruoho }
444 1.1 jruoho
445 1.1 jruoho
446 1.1 jruoho /*******************************************************************************
447 1.1 jruoho *
448 1.1 jruoho * FUNCTION: AcpiDsClearOperands
449 1.1 jruoho *
450 1.1 jruoho * PARAMETERS: WalkState - Current walk state with operands on stack
451 1.1 jruoho *
452 1.1 jruoho * RETURN: None
453 1.1 jruoho *
454 1.1 jruoho * DESCRIPTION: Clear all operands on the current walk state operand stack.
455 1.1 jruoho *
456 1.1 jruoho ******************************************************************************/
457 1.1 jruoho
458 1.1 jruoho void
459 1.1 jruoho AcpiDsClearOperands (
460 1.1 jruoho ACPI_WALK_STATE *WalkState)
461 1.1 jruoho {
462 1.1 jruoho UINT32 i;
463 1.1 jruoho
464 1.1 jruoho
465 1.1 jruoho ACPI_FUNCTION_TRACE_PTR (DsClearOperands, WalkState);
466 1.1 jruoho
467 1.1 jruoho
468 1.1 jruoho /* Remove a reference on each operand on the stack */
469 1.1 jruoho
470 1.1 jruoho for (i = 0; i < WalkState->NumOperands; i++)
471 1.1 jruoho {
472 1.1 jruoho /*
473 1.1 jruoho * Remove a reference to all operands, including both
474 1.1 jruoho * "Arguments" and "Targets".
475 1.1 jruoho */
476 1.1 jruoho AcpiUtRemoveReference (WalkState->Operands[i]);
477 1.1 jruoho WalkState->Operands[i] = NULL;
478 1.1 jruoho }
479 1.1 jruoho
480 1.1 jruoho WalkState->NumOperands = 0;
481 1.1 jruoho return_VOID;
482 1.1 jruoho }
483 1.1 jruoho #endif
484 1.1 jruoho
485 1.1 jruoho
486 1.1 jruoho /*******************************************************************************
487 1.1 jruoho *
488 1.1 jruoho * FUNCTION: AcpiDsCreateOperand
489 1.1 jruoho *
490 1.1 jruoho * PARAMETERS: WalkState - Current walk state
491 1.1 jruoho * Arg - Parse object for the argument
492 1.1 jruoho * ArgIndex - Which argument (zero based)
493 1.1 jruoho *
494 1.1 jruoho * RETURN: Status
495 1.1 jruoho *
496 1.1 jruoho * DESCRIPTION: Translate a parse tree object that is an argument to an AML
497 1.1 jruoho * opcode to the equivalent interpreter object. This may include
498 1.1 jruoho * looking up a name or entering a new name into the internal
499 1.1 jruoho * namespace.
500 1.1 jruoho *
501 1.1 jruoho ******************************************************************************/
502 1.1 jruoho
503 1.1 jruoho ACPI_STATUS
504 1.1 jruoho AcpiDsCreateOperand (
505 1.1 jruoho ACPI_WALK_STATE *WalkState,
506 1.1 jruoho ACPI_PARSE_OBJECT *Arg,
507 1.1 jruoho UINT32 ArgIndex)
508 1.1 jruoho {
509 1.1 jruoho ACPI_STATUS Status = AE_OK;
510 1.1 jruoho char *NameString;
511 1.1 jruoho UINT32 NameLength;
512 1.1 jruoho ACPI_OPERAND_OBJECT *ObjDesc;
513 1.1 jruoho ACPI_PARSE_OBJECT *ParentOp;
514 1.1 jruoho UINT16 Opcode;
515 1.1 jruoho ACPI_INTERPRETER_MODE InterpreterMode;
516 1.1 jruoho const ACPI_OPCODE_INFO *OpInfo;
517 1.1 jruoho
518 1.1 jruoho
519 1.1 jruoho ACPI_FUNCTION_TRACE_PTR (DsCreateOperand, Arg);
520 1.1 jruoho
521 1.1 jruoho
522 1.1 jruoho /* A valid name must be looked up in the namespace */
523 1.1 jruoho
524 1.1 jruoho if ((Arg->Common.AmlOpcode == AML_INT_NAMEPATH_OP) &&
525 1.1 jruoho (Arg->Common.Value.String) &&
526 1.1 jruoho !(Arg->Common.Flags & ACPI_PARSEOP_IN_STACK))
527 1.1 jruoho {
528 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Getting a name: Arg=%p\n", Arg));
529 1.1 jruoho
530 1.1 jruoho /* Get the entire name string from the AML stream */
531 1.1 jruoho
532 1.1 jruoho Status = AcpiExGetNameString (ACPI_TYPE_ANY, Arg->Common.Value.Buffer,
533 1.1 jruoho &NameString, &NameLength);
534 1.1 jruoho
535 1.1 jruoho if (ACPI_FAILURE (Status))
536 1.1 jruoho {
537 1.1 jruoho return_ACPI_STATUS (Status);
538 1.1 jruoho }
539 1.1 jruoho
540 1.1 jruoho /* All prefixes have been handled, and the name is in NameString */
541 1.1 jruoho
542 1.1 jruoho /*
543 1.1 jruoho * Special handling for BufferField declarations. This is a deferred
544 1.1 jruoho * opcode that unfortunately defines the field name as the last
545 1.1 jruoho * parameter instead of the first. We get here when we are performing
546 1.1 jruoho * the deferred execution, so the actual name of the field is already
547 1.1 jruoho * in the namespace. We don't want to attempt to look it up again
548 1.1 jruoho * because we may be executing in a different scope than where the
549 1.1 jruoho * actual opcode exists.
550 1.1 jruoho */
551 1.1 jruoho if ((WalkState->DeferredNode) &&
552 1.1 jruoho (WalkState->DeferredNode->Type == ACPI_TYPE_BUFFER_FIELD) &&
553 1.1 jruoho (ArgIndex == (UINT32) ((WalkState->Opcode == AML_CREATE_FIELD_OP) ? 3 : 2)))
554 1.1 jruoho {
555 1.1 jruoho ObjDesc = ACPI_CAST_PTR (
556 1.1 jruoho ACPI_OPERAND_OBJECT, WalkState->DeferredNode);
557 1.1 jruoho Status = AE_OK;
558 1.1 jruoho }
559 1.1 jruoho else /* All other opcodes */
560 1.1 jruoho {
561 1.1 jruoho /*
562 1.1 jruoho * Differentiate between a namespace "create" operation
563 1.1 jruoho * versus a "lookup" operation (IMODE_LOAD_PASS2 vs.
564 1.1 jruoho * IMODE_EXECUTE) in order to support the creation of
565 1.1 jruoho * namespace objects during the execution of control methods.
566 1.1 jruoho */
567 1.1 jruoho ParentOp = Arg->Common.Parent;
568 1.1 jruoho OpInfo = AcpiPsGetOpcodeInfo (ParentOp->Common.AmlOpcode);
569 1.1 jruoho if ((OpInfo->Flags & AML_NSNODE) &&
570 1.1 jruoho (ParentOp->Common.AmlOpcode != AML_INT_METHODCALL_OP) &&
571 1.1 jruoho (ParentOp->Common.AmlOpcode != AML_REGION_OP) &&
572 1.1 jruoho (ParentOp->Common.AmlOpcode != AML_INT_NAMEPATH_OP))
573 1.1 jruoho {
574 1.1 jruoho /* Enter name into namespace if not found */
575 1.1 jruoho
576 1.1 jruoho InterpreterMode = ACPI_IMODE_LOAD_PASS2;
577 1.1 jruoho }
578 1.1 jruoho else
579 1.1 jruoho {
580 1.1 jruoho /* Return a failure if name not found */
581 1.1 jruoho
582 1.1 jruoho InterpreterMode = ACPI_IMODE_EXECUTE;
583 1.1 jruoho }
584 1.1 jruoho
585 1.1 jruoho Status = AcpiNsLookup (WalkState->ScopeInfo, NameString,
586 1.1 jruoho ACPI_TYPE_ANY, InterpreterMode,
587 1.1 jruoho ACPI_NS_SEARCH_PARENT | ACPI_NS_DONT_OPEN_SCOPE,
588 1.1 jruoho WalkState,
589 1.1 jruoho ACPI_CAST_INDIRECT_PTR (ACPI_NAMESPACE_NODE, &ObjDesc));
590 1.1 jruoho /*
591 1.1 jruoho * The only case where we pass through (ignore) a NOT_FOUND
592 1.1 jruoho * error is for the CondRefOf opcode.
593 1.1 jruoho */
594 1.1 jruoho if (Status == AE_NOT_FOUND)
595 1.1 jruoho {
596 1.1 jruoho if (ParentOp->Common.AmlOpcode == AML_COND_REF_OF_OP)
597 1.1 jruoho {
598 1.1 jruoho /*
599 1.1 jruoho * For the Conditional Reference op, it's OK if
600 1.1 jruoho * the name is not found; We just need a way to
601 1.1 jruoho * indicate this to the interpreter, set the
602 1.1 jruoho * object to the root
603 1.1 jruoho */
604 1.1 jruoho ObjDesc = ACPI_CAST_PTR (
605 1.1 jruoho ACPI_OPERAND_OBJECT, AcpiGbl_RootNode);
606 1.1 jruoho Status = AE_OK;
607 1.1 jruoho }
608 1.1 jruoho else
609 1.1 jruoho {
610 1.1 jruoho /*
611 1.1 jruoho * We just plain didn't find it -- which is a
612 1.1 jruoho * very serious error at this point
613 1.1 jruoho */
614 1.1 jruoho Status = AE_AML_NAME_NOT_FOUND;
615 1.1 jruoho }
616 1.1 jruoho }
617 1.1 jruoho
618 1.1 jruoho if (ACPI_FAILURE (Status))
619 1.1 jruoho {
620 1.1 jruoho ACPI_ERROR_NAMESPACE (NameString, Status);
621 1.1 jruoho }
622 1.1 jruoho }
623 1.1 jruoho
624 1.1 jruoho /* Free the namestring created above */
625 1.1 jruoho
626 1.1 jruoho ACPI_FREE (NameString);
627 1.1 jruoho
628 1.1 jruoho /* Check status from the lookup */
629 1.1 jruoho
630 1.1 jruoho if (ACPI_FAILURE (Status))
631 1.1 jruoho {
632 1.1 jruoho return_ACPI_STATUS (Status);
633 1.1 jruoho }
634 1.1 jruoho
635 1.1 jruoho /* Put the resulting object onto the current object stack */
636 1.1 jruoho
637 1.1 jruoho Status = AcpiDsObjStackPush (ObjDesc, WalkState);
638 1.1 jruoho if (ACPI_FAILURE (Status))
639 1.1 jruoho {
640 1.1 jruoho return_ACPI_STATUS (Status);
641 1.1 jruoho }
642 1.1 jruoho ACPI_DEBUGGER_EXEC (AcpiDbDisplayArgumentObject (ObjDesc, WalkState));
643 1.1 jruoho }
644 1.1 jruoho else
645 1.1 jruoho {
646 1.1 jruoho /* Check for null name case */
647 1.1 jruoho
648 1.1 jruoho if ((Arg->Common.AmlOpcode == AML_INT_NAMEPATH_OP) &&
649 1.1 jruoho !(Arg->Common.Flags & ACPI_PARSEOP_IN_STACK))
650 1.1 jruoho {
651 1.1 jruoho /*
652 1.1 jruoho * If the name is null, this means that this is an
653 1.1 jruoho * optional result parameter that was not specified
654 1.1 jruoho * in the original ASL. Create a Zero Constant for a
655 1.1 jruoho * placeholder. (Store to a constant is a Noop.)
656 1.1 jruoho */
657 1.1 jruoho Opcode = AML_ZERO_OP; /* Has no arguments! */
658 1.1 jruoho
659 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
660 1.1 jruoho "Null namepath: Arg=%p\n", Arg));
661 1.1 jruoho }
662 1.1 jruoho else
663 1.1 jruoho {
664 1.1 jruoho Opcode = Arg->Common.AmlOpcode;
665 1.1 jruoho }
666 1.1 jruoho
667 1.1 jruoho /* Get the object type of the argument */
668 1.1 jruoho
669 1.1 jruoho OpInfo = AcpiPsGetOpcodeInfo (Opcode);
670 1.1 jruoho if (OpInfo->ObjectType == ACPI_TYPE_INVALID)
671 1.1 jruoho {
672 1.1 jruoho return_ACPI_STATUS (AE_NOT_IMPLEMENTED);
673 1.1 jruoho }
674 1.1 jruoho
675 1.1 jruoho if ((OpInfo->Flags & AML_HAS_RETVAL) || (Arg->Common.Flags & ACPI_PARSEOP_IN_STACK))
676 1.1 jruoho {
677 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH,
678 1.1 jruoho "Argument previously created, already stacked\n"));
679 1.1 jruoho
680 1.1 jruoho ACPI_DEBUGGER_EXEC (AcpiDbDisplayArgumentObject (
681 1.1 jruoho WalkState->Operands [WalkState->NumOperands - 1], WalkState));
682 1.1 jruoho
683 1.1 jruoho /*
684 1.1 jruoho * Use value that was already previously returned
685 1.1 jruoho * by the evaluation of this argument
686 1.1 jruoho */
687 1.1 jruoho Status = AcpiDsResultPop (&ObjDesc, WalkState);
688 1.1 jruoho if (ACPI_FAILURE (Status))
689 1.1 jruoho {
690 1.1 jruoho /*
691 1.1 jruoho * Only error is underflow, and this indicates
692 1.1 jruoho * a missing or null operand!
693 1.1 jruoho */
694 1.1 jruoho ACPI_EXCEPTION ((AE_INFO, Status,
695 1.1 jruoho "Missing or null operand"));
696 1.1 jruoho return_ACPI_STATUS (Status);
697 1.1 jruoho }
698 1.1 jruoho }
699 1.1 jruoho else
700 1.1 jruoho {
701 1.1 jruoho /* Create an ACPI_INTERNAL_OBJECT for the argument */
702 1.1 jruoho
703 1.1 jruoho ObjDesc = AcpiUtCreateInternalObject (OpInfo->ObjectType);
704 1.1 jruoho if (!ObjDesc)
705 1.1 jruoho {
706 1.1 jruoho return_ACPI_STATUS (AE_NO_MEMORY);
707 1.1 jruoho }
708 1.1 jruoho
709 1.1 jruoho /* Initialize the new object */
710 1.1 jruoho
711 1.1 jruoho Status = AcpiDsInitObjectFromOp (
712 1.1 jruoho WalkState, Arg, Opcode, &ObjDesc);
713 1.1 jruoho if (ACPI_FAILURE (Status))
714 1.1 jruoho {
715 1.1 jruoho AcpiUtDeleteObjectDesc (ObjDesc);
716 1.1 jruoho return_ACPI_STATUS (Status);
717 1.1 jruoho }
718 1.1 jruoho }
719 1.1 jruoho
720 1.1 jruoho /* Put the operand object on the object stack */
721 1.1 jruoho
722 1.1 jruoho Status = AcpiDsObjStackPush (ObjDesc, WalkState);
723 1.1 jruoho if (ACPI_FAILURE (Status))
724 1.1 jruoho {
725 1.1 jruoho return_ACPI_STATUS (Status);
726 1.1 jruoho }
727 1.1 jruoho
728 1.1 jruoho ACPI_DEBUGGER_EXEC (AcpiDbDisplayArgumentObject (ObjDesc, WalkState));
729 1.1 jruoho }
730 1.1 jruoho
731 1.1 jruoho return_ACPI_STATUS (AE_OK);
732 1.1 jruoho }
733 1.1 jruoho
734 1.1 jruoho
735 1.1 jruoho /*******************************************************************************
736 1.1 jruoho *
737 1.1 jruoho * FUNCTION: AcpiDsCreateOperands
738 1.1 jruoho *
739 1.1 jruoho * PARAMETERS: WalkState - Current state
740 1.1 jruoho * FirstArg - First argument of a parser argument tree
741 1.1 jruoho *
742 1.1 jruoho * RETURN: Status
743 1.1 jruoho *
744 1.1 jruoho * DESCRIPTION: Convert an operator's arguments from a parse tree format to
745 1.1 jruoho * namespace objects and place those argument object on the object
746 1.1 jruoho * stack in preparation for evaluation by the interpreter.
747 1.1 jruoho *
748 1.1 jruoho ******************************************************************************/
749 1.1 jruoho
750 1.1 jruoho ACPI_STATUS
751 1.1 jruoho AcpiDsCreateOperands (
752 1.1 jruoho ACPI_WALK_STATE *WalkState,
753 1.1 jruoho ACPI_PARSE_OBJECT *FirstArg)
754 1.1 jruoho {
755 1.1 jruoho ACPI_STATUS Status = AE_OK;
756 1.1 jruoho ACPI_PARSE_OBJECT *Arg;
757 1.1 jruoho ACPI_PARSE_OBJECT *Arguments[ACPI_OBJ_NUM_OPERANDS];
758 1.1 jruoho UINT32 ArgCount = 0;
759 1.1 jruoho UINT32 Index = WalkState->NumOperands;
760 1.1 jruoho UINT32 i;
761 1.1 jruoho
762 1.1 jruoho
763 1.1 jruoho ACPI_FUNCTION_TRACE_PTR (DsCreateOperands, FirstArg);
764 1.1 jruoho
765 1.1 jruoho
766 1.1 jruoho /* Get all arguments in the list */
767 1.1 jruoho
768 1.1 jruoho Arg = FirstArg;
769 1.1 jruoho while (Arg)
770 1.1 jruoho {
771 1.1 jruoho if (Index >= ACPI_OBJ_NUM_OPERANDS)
772 1.1 jruoho {
773 1.1 jruoho return_ACPI_STATUS (AE_BAD_DATA);
774 1.1 jruoho }
775 1.1 jruoho
776 1.1 jruoho Arguments[Index] = Arg;
777 1.1 jruoho WalkState->Operands [Index] = NULL;
778 1.1 jruoho
779 1.1 jruoho /* Move on to next argument, if any */
780 1.1 jruoho
781 1.1 jruoho Arg = Arg->Common.Next;
782 1.1 jruoho ArgCount++;
783 1.1 jruoho Index++;
784 1.1 jruoho }
785 1.1 jruoho
786 1.1 jruoho Index--;
787 1.1 jruoho
788 1.1 jruoho /* It is the appropriate order to get objects from the Result stack */
789 1.1 jruoho
790 1.1 jruoho for (i = 0; i < ArgCount; i++)
791 1.1 jruoho {
792 1.1 jruoho Arg = Arguments[Index];
793 1.1 jruoho
794 1.1 jruoho /* Force the filling of the operand stack in inverse order */
795 1.1 jruoho
796 1.1 jruoho WalkState->OperandIndex = (UINT8) Index;
797 1.1 jruoho
798 1.1 jruoho Status = AcpiDsCreateOperand (WalkState, Arg, Index);
799 1.1 jruoho if (ACPI_FAILURE (Status))
800 1.1 jruoho {
801 1.1 jruoho goto Cleanup;
802 1.1 jruoho }
803 1.1 jruoho
804 1.1 jruoho Index--;
805 1.1 jruoho
806 1.1 jruoho ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Arg #%u (%p) done, Arg1=%p\n",
807 1.1 jruoho Index, Arg, FirstArg));
808 1.1 jruoho }
809 1.1 jruoho
810 1.1 jruoho return_ACPI_STATUS (Status);
811 1.1 jruoho
812 1.1 jruoho
813 1.1 jruoho Cleanup:
814 1.1 jruoho /*
815 1.1 jruoho * We must undo everything done above; meaning that we must
816 1.1 jruoho * pop everything off of the operand stack and delete those
817 1.1 jruoho * objects
818 1.1 jruoho */
819 1.1 jruoho AcpiDsObjStackPopAndDelete (ArgCount, WalkState);
820 1.1 jruoho
821 1.1 jruoho ACPI_EXCEPTION ((AE_INFO, Status, "While creating Arg %u", Index));
822 1.1 jruoho return_ACPI_STATUS (Status);
823 1.1 jruoho }
824 1.1 jruoho
825 1.1 jruoho
826 1.1 jruoho /*****************************************************************************
827 1.1 jruoho *
828 1.1 jruoho * FUNCTION: AcpiDsEvaluateNamePath
829 1.1 jruoho *
830 1.1 jruoho * PARAMETERS: WalkState - Current state of the parse tree walk,
831 1.1 jruoho * the opcode of current operation should be
832 1.1 jruoho * AML_INT_NAMEPATH_OP
833 1.1 jruoho *
834 1.1 jruoho * RETURN: Status
835 1.1 jruoho *
836 1.1 jruoho * DESCRIPTION: Translate the -NamePath- parse tree object to the equivalent
837 1.1 jruoho * interpreter object, convert it to value, if needed, duplicate
838 1.1 jruoho * it, if needed, and push it onto the current result stack.
839 1.1 jruoho *
840 1.1 jruoho ****************************************************************************/
841 1.1 jruoho
842 1.1 jruoho ACPI_STATUS
843 1.1 jruoho AcpiDsEvaluateNamePath (
844 1.1 jruoho ACPI_WALK_STATE *WalkState)
845 1.1 jruoho {
846 1.1 jruoho ACPI_STATUS Status = AE_OK;
847 1.1 jruoho ACPI_PARSE_OBJECT *Op = WalkState->Op;
848 1.1 jruoho ACPI_OPERAND_OBJECT **Operand = &WalkState->Operands[0];
849 1.1 jruoho ACPI_OPERAND_OBJECT *NewObjDesc;
850 1.1 jruoho UINT8 Type;
851 1.1 jruoho
852 1.1 jruoho
853 1.1 jruoho ACPI_FUNCTION_TRACE_PTR (DsEvaluateNamePath, WalkState);
854 1.1 jruoho
855 1.1 jruoho
856 1.1 jruoho if (!Op->Common.Parent)
857 1.1 jruoho {
858 1.1 jruoho /* This happens after certain exception processing */
859 1.1 jruoho
860 1.1 jruoho goto Exit;
861 1.1 jruoho }
862 1.1 jruoho
863 1.1 jruoho if ((Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
864 1.1 jruoho (Op->Common.Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP) ||
865 1.1 jruoho (Op->Common.Parent->Common.AmlOpcode == AML_REF_OF_OP))
866 1.1 jruoho {
867 1.1 jruoho /* TBD: Should we specify this feature as a bit of OpInfo->Flags of these opcodes? */
868 1.1 jruoho
869 1.1 jruoho goto Exit;
870 1.1 jruoho }
871 1.1 jruoho
872 1.1 jruoho Status = AcpiDsCreateOperand (WalkState, Op, 0);
873 1.1 jruoho if (ACPI_FAILURE (Status))
874 1.1 jruoho {
875 1.1 jruoho goto Exit;
876 1.1 jruoho }
877 1.1 jruoho
878 1.1 jruoho if (Op->Common.Flags & ACPI_PARSEOP_TARGET)
879 1.1 jruoho {
880 1.1 jruoho NewObjDesc = *Operand;
881 1.1 jruoho goto PushResult;
882 1.1 jruoho }
883 1.1 jruoho
884 1.1 jruoho Type = (*Operand)->Common.Type;
885 1.1 jruoho
886 1.1 jruoho Status = AcpiExResolveToValue (Operand, WalkState);
887 1.1 jruoho if (ACPI_FAILURE (Status))
888 1.1 jruoho {
889 1.1 jruoho goto Exit;
890 1.1 jruoho }
891 1.1 jruoho
892 1.1 jruoho if (Type == ACPI_TYPE_INTEGER)
893 1.1 jruoho {
894 1.1 jruoho /* It was incremented by AcpiExResolveToValue */
895 1.1 jruoho
896 1.1 jruoho AcpiUtRemoveReference (*Operand);
897 1.1 jruoho
898 1.1 jruoho Status = AcpiUtCopyIobjectToIobject (*Operand, &NewObjDesc, WalkState);
899 1.1 jruoho if (ACPI_FAILURE (Status))
900 1.1 jruoho {
901 1.1 jruoho goto Exit;
902 1.1 jruoho }
903 1.1 jruoho }
904 1.1 jruoho else
905 1.1 jruoho {
906 1.1 jruoho /*
907 1.1 jruoho * The object either was anew created or is
908 1.1 jruoho * a Namespace node - don't decrement it.
909 1.1 jruoho */
910 1.1 jruoho NewObjDesc = *Operand;
911 1.1 jruoho }
912 1.1 jruoho
913 1.1 jruoho /* Cleanup for name-path operand */
914 1.1 jruoho
915 1.1 jruoho Status = AcpiDsObjStackPop (1, WalkState);
916 1.1 jruoho if (ACPI_FAILURE (Status))
917 1.1 jruoho {
918 1.1 jruoho WalkState->ResultObj = NewObjDesc;
919 1.1 jruoho goto Exit;
920 1.1 jruoho }
921 1.1 jruoho
922 1.1 jruoho PushResult:
923 1.1 jruoho
924 1.1 jruoho WalkState->ResultObj = NewObjDesc;
925 1.1 jruoho
926 1.1 jruoho Status = AcpiDsResultPush (WalkState->ResultObj, WalkState);
927 1.1 jruoho if (ACPI_SUCCESS (Status))
928 1.1 jruoho {
929 1.1 jruoho /* Force to take it from stack */
930 1.1 jruoho
931 1.1 jruoho Op->Common.Flags |= ACPI_PARSEOP_IN_STACK;
932 1.1 jruoho }
933 1.1 jruoho
934 1.1 jruoho Exit:
935 1.1 jruoho
936 1.1 jruoho return_ACPI_STATUS (Status);
937 1.1 jruoho }
938