exresop.c revision 104470
1
2/******************************************************************************
3 *
4 * Module Name: exresop - AML Interpreter operand/object resolution
5 *              $Revision: 58 $
6 *
7 *****************************************************************************/
8
9/******************************************************************************
10 *
11 * 1. Copyright Notice
12 *
13 * Some or all of this work - Copyright (c) 1999 - 2002, Intel Corp.
14 * All rights reserved.
15 *
16 * 2. License
17 *
18 * 2.1. This is your license from Intel Corp. under its intellectual property
19 * rights.  You may have additional license terms from the party that provided
20 * you this software, covering your right to use that party's intellectual
21 * property rights.
22 *
23 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
24 * copy of the source code appearing in this file ("Covered Code") an
25 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
26 * base code distributed originally by Intel ("Original Intel Code") to copy,
27 * make derivatives, distribute, use and display any portion of the Covered
28 * Code in any form, with the right to sublicense such rights; and
29 *
30 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
31 * license (with the right to sublicense), under only those claims of Intel
32 * patents that are infringed by the Original Intel Code, to make, use, sell,
33 * offer to sell, and import the Covered Code and derivative works thereof
34 * solely to the minimum extent necessary to exercise the above copyright
35 * license, and in no event shall the patent license extend to any additions
36 * to or modifications of the Original Intel Code.  No other license or right
37 * is granted directly or by implication, estoppel or otherwise;
38 *
39 * The above copyright and patent license is granted only if the following
40 * conditions are met:
41 *
42 * 3. Conditions
43 *
44 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
45 * Redistribution of source code of any substantial portion of the Covered
46 * Code or modification with rights to further distribute source must include
47 * the above Copyright Notice, the above License, this list of Conditions,
48 * and the following Disclaimer and Export Compliance provision.  In addition,
49 * Licensee must cause all Covered Code to which Licensee contributes to
50 * contain a file documenting the changes Licensee made to create that Covered
51 * Code and the date of any change.  Licensee must include in that file the
52 * documentation of any changes made by any predecessor Licensee.  Licensee
53 * must include a prominent statement that the modification is derived,
54 * directly or indirectly, from Original Intel Code.
55 *
56 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
57 * Redistribution of source code of any substantial portion of the Covered
58 * Code or modification without rights to further distribute source must
59 * include the following Disclaimer and Export Compliance provision in the
60 * documentation and/or other materials provided with distribution.  In
61 * addition, Licensee may not authorize further sublicense of source of any
62 * portion of the Covered Code, and must include terms to the effect that the
63 * license from Licensee to its licensee is limited to the intellectual
64 * property embodied in the software Licensee provides to its licensee, and
65 * not to intellectual property embodied in modifications its licensee may
66 * make.
67 *
68 * 3.3. Redistribution of Executable. Redistribution in executable form of any
69 * substantial portion of the Covered Code or modification must reproduce the
70 * above Copyright Notice, and the following Disclaimer and Export Compliance
71 * provision in the documentation and/or other materials provided with the
72 * distribution.
73 *
74 * 3.4. Intel retains all right, title, and interest in and to the Original
75 * Intel Code.
76 *
77 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
78 * Intel shall be used in advertising or otherwise to promote the sale, use or
79 * other dealings in products derived from or relating to the Covered Code
80 * without prior written authorization from Intel.
81 *
82 * 4. Disclaimer and Export Compliance
83 *
84 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
85 * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
86 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE,
87 * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY
88 * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY
89 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
90 * PARTICULAR PURPOSE.
91 *
92 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
93 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
94 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
95 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
96 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
97 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.  THESE LIMITATIONS
98 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
99 * LIMITED REMEDY.
100 *
101 * 4.3. Licensee shall not export, either directly or indirectly, any of this
102 * software or system incorporating such software without first obtaining any
103 * required license or other approval from the U. S. Department of Commerce or
104 * any other agency or department of the United States Government.  In the
105 * event Licensee exports any such software from the United States or
106 * re-exports any such software from a foreign destination, Licensee shall
107 * ensure that the distribution and export/re-export of the software is in
108 * compliance with all laws, regulations, orders, or other restrictions of the
109 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
110 * any of its subsidiaries will export/re-export any technical data, process,
111 * software, or service, directly or indirectly, to any country for which the
112 * United States government or any agency thereof requires an export license,
113 * other governmental approval, or letter of assurance, without first obtaining
114 * such license, approval or letter.
115 *
116 *****************************************************************************/
117
118#define __EXRESOP_C__
119
120#include "acpi.h"
121#include "amlcode.h"
122#include "acparser.h"
123#include "acinterp.h"
124
125
126#define _COMPONENT          ACPI_EXECUTER
127        ACPI_MODULE_NAME    ("exresop")
128
129
130/*******************************************************************************
131 *
132 * FUNCTION:    AcpiExCheckObjectType
133 *
134 * PARAMETERS:  TypeNeeded          Object type needed
135 *              ThisType            Actual object type
136 *              Object              Object pointer
137 *
138 * RETURN:      Status
139 *
140 * DESCRIPTION: Check required type against actual type
141 *
142 ******************************************************************************/
143
144ACPI_STATUS
145AcpiExCheckObjectType (
146    ACPI_OBJECT_TYPE        TypeNeeded,
147    ACPI_OBJECT_TYPE        ThisType,
148    void                    *Object)
149{
150    ACPI_FUNCTION_NAME ("ExCheckObjectType");
151
152
153    if (TypeNeeded == ACPI_TYPE_ANY)
154    {
155        /* All types OK, so we don't perform any typechecks */
156
157        return (AE_OK);
158    }
159
160    if (TypeNeeded == INTERNAL_TYPE_REFERENCE)
161    {
162        /*
163         * Allow the AML "Constant" opcodes (Zero, One, etc.) to be reference
164         * objects and thus allow them to be targets.  (As per the ACPI
165         * specification, a store to a constant is a noop.)
166         */
167        if ((ThisType == ACPI_TYPE_INTEGER) &&
168            (((ACPI_OPERAND_OBJECT *) Object)->Common.Flags & AOPOBJ_AML_CONSTANT))
169        {
170            return (AE_OK);
171        }
172    }
173
174    if (TypeNeeded != ThisType)
175    {
176        ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
177            "Needed [%s], found [%s] %p\n",
178            AcpiUtGetTypeName (TypeNeeded),
179            AcpiUtGetTypeName (ThisType), Object));
180
181        return (AE_AML_OPERAND_TYPE);
182    }
183
184    return (AE_OK);
185}
186
187
188/*******************************************************************************
189 *
190 * FUNCTION:    AcpiExResolveOperands
191 *
192 * PARAMETERS:  Opcode              - Opcode being interpreted
193 *              StackPtr            - Pointer to the operand stack to be
194 *                                    resolved
195 *              WalkState           - Current state
196 *
197 * RETURN:      Status
198 *
199 * DESCRIPTION: Convert multiple input operands to the types required by the
200 *              target operator.
201 *
202 *      Each 5-bit group in ArgTypes represents one required
203 *      operand and indicates the required Type. The corresponding operand
204 *      will be converted to the required type if possible, otherwise we
205 *      abort with an exception.
206 *
207 ******************************************************************************/
208
209ACPI_STATUS
210AcpiExResolveOperands (
211    UINT16                  Opcode,
212    ACPI_OPERAND_OBJECT     **StackPtr,
213    ACPI_WALK_STATE         *WalkState)
214{
215    ACPI_OPERAND_OBJECT     *ObjDesc;
216    ACPI_STATUS             Status = AE_OK;
217    UINT8                   ObjectType;
218    void                    *TempNode;
219    UINT32                  ArgTypes;
220    const ACPI_OPCODE_INFO  *OpInfo;
221    UINT32                  ThisArgType;
222    ACPI_OBJECT_TYPE        TypeNeeded;
223
224
225    ACPI_FUNCTION_TRACE_U32 ("ExResolveOperands", Opcode);
226
227
228    OpInfo = AcpiPsGetOpcodeInfo (Opcode);
229    if (OpInfo->Class == AML_CLASS_UNKNOWN)
230    {
231        return_ACPI_STATUS (AE_AML_BAD_OPCODE);
232    }
233
234    ArgTypes = OpInfo->RuntimeArgs;
235    if (ArgTypes == ARGI_INVALID_OPCODE)
236    {
237        ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Internal - %X is not a valid AML opcode\n",
238            Opcode));
239
240        return_ACPI_STATUS (AE_AML_INTERNAL);
241    }
242
243    ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Opcode %X [%s] OperandTypes=%X \n",
244        Opcode, OpInfo->Name, ArgTypes));
245
246    /*
247     * Normal exit is with (ArgTypes == 0) at end of argument list.
248     * Function will return an exception from within the loop upon
249     * finding an entry which is not (or cannot be converted
250     * to) the required type; if stack underflows; or upon
251     * finding a NULL stack entry (which should not happen).
252     */
253    while (GET_CURRENT_ARG_TYPE (ArgTypes))
254    {
255        if (!StackPtr || !*StackPtr)
256        {
257            ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Internal - null stack entry at %p\n",
258                StackPtr));
259
260            return_ACPI_STATUS (AE_AML_INTERNAL);
261        }
262
263        /* Extract useful items */
264
265        ObjDesc = *StackPtr;
266
267        /* Decode the descriptor type */
268
269        switch (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc))
270        {
271        case ACPI_DESC_TYPE_NAMED:
272
273            /* Node */
274
275            ObjectType = ((ACPI_NAMESPACE_NODE *) ObjDesc)->Type;
276            break;
277
278
279        case ACPI_DESC_TYPE_OPERAND:
280
281            /* ACPI internal object */
282
283            ObjectType = ACPI_GET_OBJECT_TYPE (ObjDesc);
284
285            /* Check for bad ACPI_OBJECT_TYPE */
286
287            if (!AcpiExValidateObjectType (ObjectType))
288            {
289                ACPI_DEBUG_PRINT ((ACPI_DB_ERROR, "Bad operand object type [%X]\n",
290                    ObjectType));
291
292                return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
293            }
294
295            if (ObjectType == (UINT8) INTERNAL_TYPE_REFERENCE)
296            {
297                /*
298                 * Decode the Reference
299                 */
300                OpInfo = AcpiPsGetOpcodeInfo (Opcode);
301                if (OpInfo->Class == AML_CLASS_UNKNOWN)
302                {
303                    return_ACPI_STATUS (AE_AML_BAD_OPCODE);
304                }
305
306                switch (ObjDesc->Reference.Opcode)
307                {
308                case AML_DEBUG_OP:
309                case AML_NAME_OP:
310                case AML_INDEX_OP:
311                case AML_REF_OF_OP:
312                case AML_ARG_OP:
313                case AML_LOCAL_OP:
314
315                    ACPI_DEBUG_ONLY_MEMBERS (ACPI_DEBUG_PRINT ((ACPI_DB_EXEC,
316                        "Reference Opcode: %s\n", OpInfo->Name)));
317                    break;
318
319                default:
320                    ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
321                        "Unknown Reference Opcode %X\n",
322                        ObjDesc->Reference.Opcode));
323
324                    return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
325                }
326            }
327            break;
328
329
330        default:
331
332            /* Invalid descriptor */
333
334            ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
335                "Bad descriptor type %X in Obj %p\n",
336                ACPI_GET_DESCRIPTOR_TYPE (ObjDesc), ObjDesc));
337
338            return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
339        }
340
341
342        /*
343         * Get one argument type, point to the next
344         */
345        ThisArgType = GET_CURRENT_ARG_TYPE (ArgTypes);
346        INCREMENT_ARG_LIST (ArgTypes);
347
348        /*
349         * Handle cases where the object does not need to be
350         * resolved to a value
351         */
352        switch (ThisArgType)
353        {
354        case ARGI_REF_OR_STRING:        /* Can be a String or Reference */
355
356            if ((ACPI_GET_DESCRIPTOR_TYPE (ObjDesc) == ACPI_DESC_TYPE_OPERAND) &&
357                (ACPI_GET_OBJECT_TYPE (ObjDesc) == ACPI_TYPE_STRING))
358            {
359                /*
360                 * String found - the string references a named object and must be
361                 * resolved to a node
362                 */
363                goto NextOperand;
364            }
365
366            /* Else not a string - fall through to the normal Reference case below */
367            /*lint -fallthrough */
368
369        case ARGI_REFERENCE:            /* References: */
370        case ARGI_INTEGER_REF:
371        case ARGI_OBJECT_REF:
372        case ARGI_DEVICE_REF:
373        case ARGI_TARGETREF:            /* Allows implicit conversion rules before store */
374        case ARGI_FIXED_TARGET:         /* No implicit conversion before store to target */
375        case ARGI_SIMPLE_TARGET:        /* Name, Local, or Arg - no implicit conversion  */
376
377            /* Need an operand of type INTERNAL_TYPE_REFERENCE */
378
379            if (ACPI_GET_DESCRIPTOR_TYPE (ObjDesc) == ACPI_DESC_TYPE_NAMED) /* Node (name) ptr OK as-is */
380            {
381                goto NextOperand;
382            }
383
384            Status = AcpiExCheckObjectType (INTERNAL_TYPE_REFERENCE,
385                            ObjectType, ObjDesc);
386            if (ACPI_FAILURE (Status))
387            {
388                return_ACPI_STATUS (Status);
389            }
390
391            if (AML_NAME_OP == ObjDesc->Reference.Opcode)
392            {
393                /*
394                 * Convert an indirect name ptr to direct name ptr and put
395                 * it on the stack
396                 */
397                TempNode = ObjDesc->Reference.Object;
398                AcpiUtRemoveReference (ObjDesc);
399                (*StackPtr) = TempNode;
400            }
401            goto NextOperand;
402
403
404        case ARGI_ANYTYPE:
405
406            /*
407             * We don't want to resolve IndexOp reference objects during
408             * a store because this would be an implicit DeRefOf operation.
409             * Instead, we just want to store the reference object.
410             * -- All others must be resolved below.
411             */
412            if ((Opcode == AML_STORE_OP) &&
413                (ACPI_GET_OBJECT_TYPE (*StackPtr) == INTERNAL_TYPE_REFERENCE) &&
414                ((*StackPtr)->Reference.Opcode == AML_INDEX_OP))
415            {
416                goto NextOperand;
417            }
418            break;
419
420        default:
421            /* All cases covered above */
422            break;
423        }
424
425
426        /*
427         * Resolve this object to a value
428         */
429        Status = AcpiExResolveToValue (StackPtr, WalkState);
430        if (ACPI_FAILURE (Status))
431        {
432            return_ACPI_STATUS (Status);
433        }
434
435        /* Get the resolved object */
436
437        ObjDesc = *StackPtr;
438
439        /*
440         * Check the resulting object (value) type
441         */
442        switch (ThisArgType)
443        {
444        /*
445         * For the simple cases, only one type of resolved object
446         * is allowed
447         */
448        case ARGI_MUTEX:
449
450            /* Need an operand of type ACPI_TYPE_MUTEX */
451
452            TypeNeeded = ACPI_TYPE_MUTEX;
453            break;
454
455        case ARGI_EVENT:
456
457            /* Need an operand of type ACPI_TYPE_EVENT */
458
459            TypeNeeded = ACPI_TYPE_EVENT;
460            break;
461
462        case ARGI_REGION:
463
464            /* Need an operand of type ACPI_TYPE_REGION */
465
466            TypeNeeded = ACPI_TYPE_REGION;
467            break;
468
469        case ARGI_IF:   /* If */
470
471            /* Need an operand of type INTERNAL_TYPE_IF */
472
473            TypeNeeded = INTERNAL_TYPE_IF;
474            break;
475
476        case ARGI_PACKAGE:   /* Package */
477
478            /* Need an operand of type ACPI_TYPE_PACKAGE */
479
480            TypeNeeded = ACPI_TYPE_PACKAGE;
481            break;
482
483        case ARGI_ANYTYPE:
484
485            /* Any operand type will do */
486
487            TypeNeeded = ACPI_TYPE_ANY;
488            break;
489
490
491        /*
492         * The more complex cases allow multiple resolved object types
493         */
494        case ARGI_INTEGER:   /* Number */
495
496            /*
497             * Need an operand of type ACPI_TYPE_INTEGER,
498             * But we can implicitly convert from a STRING or BUFFER
499             * Aka - "Implicit Source Operand Conversion"
500             */
501            Status = AcpiExConvertToInteger (ObjDesc, StackPtr, WalkState);
502            if (ACPI_FAILURE (Status))
503            {
504                if (Status == AE_TYPE)
505                {
506                    ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
507                        "Needed [Integer/String/Buffer], found [%s] %p\n",
508                        AcpiUtGetObjectTypeName (ObjDesc), ObjDesc));
509
510                    return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
511                }
512
513                return_ACPI_STATUS (Status);
514            }
515
516            if (ObjDesc != *StackPtr)
517            {
518                /*
519                 * We just created a new object, remove a reference
520                 * on the original operand object
521                 */
522                AcpiUtRemoveReference (ObjDesc);
523            }
524            goto NextOperand;
525
526
527        case ARGI_BUFFER:
528
529            /*
530             * Need an operand of type ACPI_TYPE_BUFFER,
531             * But we can implicitly convert from a STRING or INTEGER
532             * Aka - "Implicit Source Operand Conversion"
533             */
534            Status = AcpiExConvertToBuffer (ObjDesc, StackPtr, WalkState);
535            if (ACPI_FAILURE (Status))
536            {
537                if (Status == AE_TYPE)
538                {
539                    ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
540                        "Needed [Integer/String/Buffer], found [%s] %p\n",
541                        AcpiUtGetObjectTypeName (ObjDesc), ObjDesc));
542
543                    return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
544                }
545
546                return_ACPI_STATUS (Status);
547            }
548
549            if (ObjDesc != *StackPtr)
550            {
551                /*
552                 * We just created a new object, remove a reference
553                 * on the original operand object
554                 */
555                AcpiUtRemoveReference (ObjDesc);
556            }
557            goto NextOperand;
558
559
560        case ARGI_STRING:
561
562            /*
563             * Need an operand of type ACPI_TYPE_STRING,
564             * But we can implicitly convert from a BUFFER or INTEGER
565             * Aka - "Implicit Source Operand Conversion"
566             */
567            Status = AcpiExConvertToString (ObjDesc, StackPtr, 16, ACPI_UINT32_MAX, WalkState);
568            if (ACPI_FAILURE (Status))
569            {
570                if (Status == AE_TYPE)
571                {
572                    ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
573                        "Needed [Integer/String/Buffer], found [%s] %p\n",
574                        AcpiUtGetObjectTypeName (ObjDesc), ObjDesc));
575
576                    return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
577                }
578
579                return_ACPI_STATUS (Status);
580            }
581
582            if (ObjDesc != *StackPtr)
583            {
584                /*
585                 * We just created a new object, remove a reference
586                 * on the original operand object
587                 */
588                AcpiUtRemoveReference (ObjDesc);
589            }
590            goto NextOperand;
591
592
593        case ARGI_COMPUTEDATA:
594
595            /* Need an operand of type INTEGER, STRING or BUFFER */
596
597            switch (ACPI_GET_OBJECT_TYPE (ObjDesc))
598            {
599            case ACPI_TYPE_INTEGER:
600            case ACPI_TYPE_STRING:
601            case ACPI_TYPE_BUFFER:
602
603                /* Valid operand */
604               break;
605
606            default:
607                ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
608                    "Needed [Integer/String/Buffer], found [%s] %p\n",
609                    AcpiUtGetObjectTypeName (ObjDesc), ObjDesc));
610
611                return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
612            }
613            goto NextOperand;
614
615
616        case ARGI_DATAOBJECT:
617            /*
618             * ARGI_DATAOBJECT is only used by the SizeOf operator.
619             * Need a buffer, string, package, or RefOf reference.
620             *
621             * The only reference allowed here is a direct reference to
622             * a namespace node.
623             */
624            switch (ACPI_GET_OBJECT_TYPE (ObjDesc))
625            {
626            case ACPI_TYPE_PACKAGE:
627            case ACPI_TYPE_STRING:
628            case ACPI_TYPE_BUFFER:
629            case INTERNAL_TYPE_REFERENCE:
630
631                /* Valid operand */
632                break;
633
634            default:
635                ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
636                    "Needed [Buf/Str/Pkg], found [%s] %p\n",
637                    AcpiUtGetObjectTypeName (ObjDesc), ObjDesc));
638
639                return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
640            }
641            goto NextOperand;
642
643
644        case ARGI_COMPLEXOBJ:
645
646            /* Need a buffer or package or (ACPI 2.0) String */
647
648            switch (ACPI_GET_OBJECT_TYPE (ObjDesc))
649            {
650            case ACPI_TYPE_PACKAGE:
651            case ACPI_TYPE_STRING:
652            case ACPI_TYPE_BUFFER:
653
654                /* Valid operand */
655                break;
656
657            default:
658                ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
659                    "Needed [Buf/Str/Pkg], found [%s] %p\n",
660                    AcpiUtGetObjectTypeName (ObjDesc), ObjDesc));
661
662                return_ACPI_STATUS (AE_AML_OPERAND_TYPE);
663            }
664            goto NextOperand;
665
666
667        default:
668
669            /* Unknown type */
670
671            ACPI_DEBUG_PRINT ((ACPI_DB_ERROR,
672                "Internal - Unknown ARGI (required operand) type %X\n",
673                ThisArgType));
674
675            return_ACPI_STATUS (AE_BAD_PARAMETER);
676        }
677
678        /*
679         * Make sure that the original object was resolved to the
680         * required object type (Simple cases only).
681         */
682        Status = AcpiExCheckObjectType (TypeNeeded,
683                        ACPI_GET_OBJECT_TYPE (*StackPtr), *StackPtr);
684        if (ACPI_FAILURE (Status))
685        {
686            return_ACPI_STATUS (Status);
687        }
688
689NextOperand:
690        /*
691         * If more operands needed, decrement StackPtr to point
692         * to next operand on stack
693         */
694        if (GET_CURRENT_ARG_TYPE (ArgTypes))
695        {
696            StackPtr--;
697        }
698
699    }   /* while (*Types) */
700
701    return_ACPI_STATUS (Status);
702}
703
704
705