psargs.c revision 77424
1/******************************************************************************
2 *
3 * Module Name: psargs - Parse AML opcode arguments
4 *              $Revision: 47 $
5 *
6 *****************************************************************************/
7
8/******************************************************************************
9 *
10 * 1. Copyright Notice
11 *
12 * Some or all of this work - Copyright (c) 1999, 2000, 2001, Intel Corp.
13 * All rights reserved.
14 *
15 * 2. License
16 *
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights.  You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
20 * property rights.
21 *
22 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
23 * copy of the source code appearing in this file ("Covered Code") an
24 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
25 * base code distributed originally by Intel ("Original Intel Code") to copy,
26 * make derivatives, distribute, use and display any portion of the Covered
27 * Code in any form, with the right to sublicense such rights; and
28 *
29 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
30 * license (with the right to sublicense), under only those claims of Intel
31 * patents that are infringed by the Original Intel Code, to make, use, sell,
32 * offer to sell, and import the Covered Code and derivative works thereof
33 * solely to the minimum extent necessary to exercise the above copyright
34 * license, and in no event shall the patent license extend to any additions
35 * to or modifications of the Original Intel Code.  No other license or right
36 * is granted directly or by implication, estoppel or otherwise;
37 *
38 * The above copyright and patent license is granted only if the following
39 * conditions are met:
40 *
41 * 3. Conditions
42 *
43 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
44 * Redistribution of source code of any substantial portion of the Covered
45 * Code or modification with rights to further distribute source must include
46 * the above Copyright Notice, the above License, this list of Conditions,
47 * and the following Disclaimer and Export Compliance provision.  In addition,
48 * Licensee must cause all Covered Code to which Licensee contributes to
49 * contain a file documenting the changes Licensee made to create that Covered
50 * Code and the date of any change.  Licensee must include in that file the
51 * documentation of any changes made by any predecessor Licensee.  Licensee
52 * must include a prominent statement that the modification is derived,
53 * directly or indirectly, from Original Intel Code.
54 *
55 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
56 * Redistribution of source code of any substantial portion of the Covered
57 * Code or modification without rights to further distribute source must
58 * include the following Disclaimer and Export Compliance provision in the
59 * documentation and/or other materials provided with distribution.  In
60 * addition, Licensee may not authorize further sublicense of source of any
61 * portion of the Covered Code, and must include terms to the effect that the
62 * license from Licensee to its licensee is limited to the intellectual
63 * property embodied in the software Licensee provides to its licensee, and
64 * not to intellectual property embodied in modifications its licensee may
65 * make.
66 *
67 * 3.3. Redistribution of Executable. Redistribution in executable form of any
68 * substantial portion of the Covered Code or modification must reproduce the
69 * above Copyright Notice, and the following Disclaimer and Export Compliance
70 * provision in the documentation and/or other materials provided with the
71 * distribution.
72 *
73 * 3.4. Intel retains all right, title, and interest in and to the Original
74 * Intel Code.
75 *
76 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
77 * Intel shall be used in advertising or otherwise to promote the sale, use or
78 * other dealings in products derived from or relating to the Covered Code
79 * without prior written authorization from Intel.
80 *
81 * 4. Disclaimer and Export Compliance
82 *
83 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
84 * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
85 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE,
86 * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY
87 * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY
88 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
89 * PARTICULAR PURPOSE.
90 *
91 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
92 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
93 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
94 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
95 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
96 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.  THESE LIMITATIONS
97 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
98 * LIMITED REMEDY.
99 *
100 * 4.3. Licensee shall not export, either directly or indirectly, any of this
101 * software or system incorporating such software without first obtaining any
102 * required license or other approval from the U. S. Department of Commerce or
103 * any other agency or department of the United States Government.  In the
104 * event Licensee exports any such software from the United States or
105 * re-exports any such software from a foreign destination, Licensee shall
106 * ensure that the distribution and export/re-export of the software is in
107 * compliance with all laws, regulations, orders, or other restrictions of the
108 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
109 * any of its subsidiaries will export/re-export any technical data, process,
110 * software, or service, directly or indirectly, to any country for which the
111 * United States government or any agency thereof requires an export license,
112 * other governmental approval, or letter of assurance, without first obtaining
113 * such license, approval or letter.
114 *
115 *****************************************************************************/
116
117#define __PSARGS_C__
118
119#include "acpi.h"
120#include "acparser.h"
121#include "amlcode.h"
122#include "acnamesp.h"
123
124#define _COMPONENT          ACPI_PARSER
125        MODULE_NAME         ("psargs")
126
127
128/*******************************************************************************
129 *
130 * FUNCTION:    AcpiPsGetNextPackageLength
131 *
132 * PARAMETERS:  ParserState         - Current parser state object
133 *
134 * RETURN:      Decoded package length.  On completion, the AML pointer points
135 *              past the length byte or bytes.
136 *
137 * DESCRIPTION: Decode and return a package length field
138 *
139 ******************************************************************************/
140
141UINT32
142AcpiPsGetNextPackageLength (
143    ACPI_PARSE_STATE        *ParserState)
144{
145    UINT32                  EncodedLength;
146    UINT32                  Length = 0;
147
148
149    FUNCTION_TRACE ("PsGetNextPackageLength");
150
151
152    EncodedLength = (UINT32) GET8 (ParserState->Aml);
153    ParserState->Aml++;
154
155
156    switch (EncodedLength >> 6) /* bits 6-7 contain encoding scheme */
157    {
158    case 0: /* 1-byte encoding (bits 0-5) */
159
160        Length = (EncodedLength & 0x3F);
161        break;
162
163
164    case 1: /* 2-byte encoding (next byte + bits 0-3) */
165
166        Length = ((GET8 (ParserState->Aml) << 04) |
167                 (EncodedLength & 0x0F));
168        ParserState->Aml++;
169        break;
170
171
172    case 2: /* 3-byte encoding (next 2 bytes + bits 0-3) */
173
174        Length = ((GET8 (ParserState->Aml + 1) << 12) |
175                  (GET8 (ParserState->Aml)     << 04) |
176                  (EncodedLength & 0x0F));
177        ParserState->Aml += 2;
178        break;
179
180
181    case 3: /* 4-byte encoding (next 3 bytes + bits 0-3) */
182
183        Length = ((GET8 (ParserState->Aml + 2) << 20) |
184                  (GET8 (ParserState->Aml + 1) << 12) |
185                  (GET8 (ParserState->Aml)     << 04) |
186                  (EncodedLength & 0x0F));
187        ParserState->Aml += 3;
188        break;
189    }
190
191    return_VALUE (Length);
192}
193
194
195/*******************************************************************************
196 *
197 * FUNCTION:    AcpiPsGetNextPackageEnd
198 *
199 * PARAMETERS:  ParserState         - Current parser state object
200 *
201 * RETURN:      Pointer to end-of-package +1
202 *
203 * DESCRIPTION: Get next package length and return a pointer past the end of
204 *              the package.  Consumes the package length field
205 *
206 ******************************************************************************/
207
208UINT8 *
209AcpiPsGetNextPackageEnd (
210    ACPI_PARSE_STATE        *ParserState)
211{
212    UINT8                   *Start = ParserState->Aml;
213    NATIVE_UINT             Length;
214
215
216    FUNCTION_TRACE ("PsGetNextPackageEnd");
217
218
219    Length = (NATIVE_UINT) AcpiPsGetNextPackageLength (ParserState);
220
221    return_PTR (Start + Length); /* end of package */
222}
223
224
225/*******************************************************************************
226 *
227 * FUNCTION:    AcpiPsGetNextNamestring
228 *
229 * PARAMETERS:  ParserState         - Current parser state object
230 *
231 * RETURN:      Pointer to the start of the name string (pointer points into
232 *              the AML.
233 *
234 * DESCRIPTION: Get next raw namestring within the AML stream.  Handles all name
235 *              prefix characters.  Set parser state to point past the string.
236 *              (Name is consumed from the AML.)
237 *
238 ******************************************************************************/
239
240NATIVE_CHAR *
241AcpiPsGetNextNamestring (
242    ACPI_PARSE_STATE        *ParserState)
243{
244    UINT8                    *Start = ParserState->Aml;
245    UINT8                    *End = ParserState->Aml;
246    UINT32                  Length;
247
248
249    FUNCTION_TRACE ("PsGetNextNamestring");
250
251
252    /* Handle multiple prefix characters */
253
254    while (AcpiPsIsPrefixChar (GET8 (End)))
255    {
256        /* include prefix '\\' or '^' */
257
258        End++;
259    }
260
261    /* Decode the path */
262
263    switch (GET8 (End))
264    {
265    case 0:
266
267        /* NullName */
268
269        if (End == Start)
270        {
271            Start = NULL;
272        }
273        End++;
274        break;
275
276
277    case AML_DUAL_NAME_PREFIX:
278
279        /* two name segments */
280
281        End += 9;
282        break;
283
284
285    case AML_MULTI_NAME_PREFIX_OP:
286
287        /* multiple name segments */
288
289        Length = (UINT32) GET8 (End + 1) * 4;
290        End += 2 + Length;
291        break;
292
293
294    default:
295
296        /* single name segment */
297        /* assert (AcpiPsIsLead (GET8 (End))); */
298
299        End += 4;
300        break;
301    }
302
303    ParserState->Aml = (UINT8*) End;
304
305    return_PTR ((NATIVE_CHAR *) Start);
306}
307
308
309/*******************************************************************************
310 *
311 * FUNCTION:    AcpiPsGetNextNamepath
312 *
313 * PARAMETERS:  ParserState         - Current parser state object
314 *              Arg                 - Where the namepath will be stored
315 *              ArgCount            - If the namepath points to a control method
316 *                                    the method's argument is returned here.
317 *              MethodCall          - Whether the namepath can be the start
318 *                                    of a method call
319 *
320 * RETURN:      None
321 *
322 * DESCRIPTION: Get next name (if method call, push appropriate # args).  Names
323 *              are looked up in either the parsed or internal namespace to
324 *              determine if the name represents a control method.  If a method
325 *              is found, the number of arguments to the method is returned.
326 *              This information is critical for parsing to continue correctly.
327 *
328 ******************************************************************************/
329
330
331#ifdef PARSER_ONLY
332
333void
334AcpiPsGetNextNamepath (
335    ACPI_PARSE_STATE        *ParserState,
336    ACPI_PARSE_OBJECT       *Arg,
337    UINT32                  *ArgCount,
338    BOOLEAN                 MethodCall)
339{
340    NATIVE_CHAR             *Path;
341    ACPI_PARSE_OBJECT       *NameOp;
342    ACPI_PARSE_OBJECT       *Op;
343    ACPI_PARSE_OBJECT       *Count;
344
345
346    FUNCTION_TRACE ("PsGetNextNamepath");
347
348
349    Path = AcpiPsGetNextNamestring (ParserState);
350    if (!Path || !MethodCall)
351    {
352        /* Null name case, create a null namepath object */
353
354        AcpiPsInitOp (Arg, AML_INT_NAMEPATH_OP);
355        Arg->Value.Name = Path;
356        return_VOID;
357    }
358
359
360    if (AcpiGbl_ParsedNamespaceRoot)
361    {
362        /*
363         * Lookup the name in the parsed namespace
364         */
365
366        Op = NULL;
367        if (MethodCall)
368        {
369            Op = AcpiPsFind (AcpiPsGetParentScope (ParserState),
370                                Path, AML_METHOD_OP, 0);
371        }
372
373        if (Op)
374        {
375            if (Op->Opcode == AML_METHOD_OP)
376            {
377                /*
378                 * The name refers to a control method, so this namepath is a
379                 * method invocation.  We need to 1) Get the number of arguments
380                 * associated with this method, and 2) Change the NAMEPATH
381                 * object into a METHODCALL object.
382                 */
383
384                Count = AcpiPsGetArg (Op, 0);
385                if (Count && Count->Opcode == AML_BYTE_OP)
386                {
387                    NameOp = AcpiPsAllocOp (AML_INT_NAMEPATH_OP);
388                    if (NameOp)
389                    {
390                        /* Change arg into a METHOD CALL and attach the name */
391
392                        AcpiPsInitOp (Arg, AML_INT_METHODCALL_OP);
393
394                        NameOp->Value.Name = Path;
395
396                        /* Point METHODCALL/NAME to the METHOD Node */
397
398                        NameOp->Node = (ACPI_NAMESPACE_NODE *) Op;
399                        AcpiPsAppendArg (Arg, NameOp);
400
401                        *ArgCount = Count->Value.Integer &
402                                    METHOD_FLAGS_ARG_COUNT;
403                    }
404                }
405
406                return_VOID;
407            }
408
409            /*
410             * Else this is normal named object reference.
411             * Just init the NAMEPATH object with the pathname.
412             * (See code below)
413             */
414        }
415    }
416
417
418    /*
419     * Either we didn't find the object in the namespace, or the object is
420     * something other than a control method.  Just initialize the Op with the
421     * pathname
422     */
423
424    AcpiPsInitOp (Arg, AML_INT_NAMEPATH_OP);
425    Arg->Value.Name = Path;
426
427
428    return_VOID;
429}
430
431
432#else
433
434
435void
436AcpiPsGetNextNamepath (
437    ACPI_PARSE_STATE        *ParserState,
438    ACPI_PARSE_OBJECT       *Arg,
439    UINT32                  *ArgCount,
440    BOOLEAN                 MethodCall)
441{
442    NATIVE_CHAR             *Path;
443    ACPI_PARSE_OBJECT       *NameOp;
444    ACPI_STATUS             Status;
445    ACPI_NAMESPACE_NODE     *MethodNode = NULL;
446    ACPI_NAMESPACE_NODE     *Node;
447    ACPI_GENERIC_STATE      ScopeInfo;
448
449
450    FUNCTION_TRACE ("PsGetNextNamepath");
451
452
453    Path = AcpiPsGetNextNamestring (ParserState);
454    if (!Path || !MethodCall)
455    {
456        /* Null name case, create a null namepath object */
457
458        AcpiPsInitOp (Arg, AML_INT_NAMEPATH_OP);
459        Arg->Value.Name = Path;
460        return_VOID;
461    }
462
463
464    if (MethodCall)
465    {
466        /*
467         * Lookup the name in the internal namespace
468         */
469        ScopeInfo.Scope.Node = NULL;
470        Node = ParserState->StartNode;
471        if (Node)
472        {
473            ScopeInfo.Scope.Node = Node;
474        }
475
476        /*
477         * Lookup object.  We don't want to add anything new to the namespace
478         * here, however.  So we use MODE_EXECUTE.  Allow searching of the
479         * parent tree, but don't open a new scope -- we just want to lookup the
480         * object  (MUST BE mode EXECUTE to perform upsearch)
481         */
482
483        Status = AcpiNsLookup (&ScopeInfo, Path, ACPI_TYPE_ANY, IMODE_EXECUTE,
484                                NS_SEARCH_PARENT | NS_DONT_OPEN_SCOPE, NULL,
485                                &Node);
486        if (ACPI_SUCCESS (Status))
487        {
488            if (Node->Type == ACPI_TYPE_METHOD)
489            {
490                MethodNode = Node;
491                DEBUG_PRINTP (TRACE_PARSE, ("method - %p Path=%p\n",
492                    MethodNode, Path));
493
494                NameOp = AcpiPsAllocOp (AML_INT_NAMEPATH_OP);
495                if (NameOp)
496                {
497                    /* Change arg into a METHOD CALL and attach name to it */
498
499                    AcpiPsInitOp (Arg, AML_INT_METHODCALL_OP);
500
501                    NameOp->Value.Name = Path;
502
503                    /* Point METHODCALL/NAME to the METHOD Node */
504
505                    NameOp->Node = MethodNode;
506                    AcpiPsAppendArg (Arg, NameOp);
507
508                    if (!(ACPI_OPERAND_OBJECT  *) MethodNode->Object)
509                    {
510                        return_VOID;
511                    }
512
513                    *ArgCount = ((ACPI_OPERAND_OBJECT  *) MethodNode->Object)->Method.ParamCount;
514                }
515
516                return_VOID;
517            }
518
519            /*
520             * Else this is normal named object reference.
521             * Just init the NAMEPATH object with the pathname.
522             * (See code below)
523             */
524        }
525    }
526
527    /*
528     * Either we didn't find the object in the namespace, or the object is
529     * something other than a control method.  Just initialize the Op with the
530     * pathname.
531     */
532
533    AcpiPsInitOp (Arg, AML_INT_NAMEPATH_OP);
534    Arg->Value.Name = Path;
535
536
537    return_VOID;
538}
539
540#endif
541
542/*******************************************************************************
543 *
544 * FUNCTION:    AcpiPsGetNextSimpleArg
545 *
546 * PARAMETERS:  ParserState         - Current parser state object
547 *              ArgType             - The argument type (AML_*_ARG)
548 *              Arg                 - Where the argument is returned
549 *
550 * RETURN:      None
551 *
552 * DESCRIPTION: Get the next simple argument (constant, string, or namestring)
553 *
554 ******************************************************************************/
555
556void
557AcpiPsGetNextSimpleArg (
558    ACPI_PARSE_STATE        *ParserState,
559    UINT32                  ArgType,
560    ACPI_PARSE_OBJECT       *Arg)
561{
562
563
564    FUNCTION_TRACE_U32 ("PsGetNextSimpleArg", ArgType);
565
566
567    switch (ArgType)
568    {
569
570    case ARGP_BYTEDATA:
571
572        AcpiPsInitOp (Arg, AML_BYTE_OP);
573        Arg->Value.Integer = (UINT32) GET8 (ParserState->Aml);
574        ParserState->Aml++;
575        break;
576
577
578    case ARGP_WORDDATA:
579
580        AcpiPsInitOp (Arg, AML_WORD_OP);
581
582        /* Get 2 bytes from the AML stream */
583
584        MOVE_UNALIGNED16_TO_32 (&Arg->Value.Integer, ParserState->Aml);
585        ParserState->Aml += 2;
586        break;
587
588
589    case ARGP_DWORDDATA:
590
591        AcpiPsInitOp (Arg, AML_DWORD_OP);
592
593        /* Get 4 bytes from the AML stream */
594
595        MOVE_UNALIGNED32_TO_32 (&Arg->Value.Integer, ParserState->Aml);
596        ParserState->Aml += 4;
597        break;
598
599
600    case ARGP_CHARLIST:
601
602        AcpiPsInitOp (Arg, AML_STRING_OP);
603        Arg->Value.String = (char*) ParserState->Aml;
604
605        while (GET8 (ParserState->Aml) != '\0')
606        {
607            ParserState->Aml++;
608        }
609        ParserState->Aml++;
610        break;
611
612
613    case ARGP_NAME:
614    case ARGP_NAMESTRING:
615
616        AcpiPsInitOp (Arg, AML_INT_NAMEPATH_OP);
617        Arg->Value.Name = AcpiPsGetNextNamestring (ParserState);
618        break;
619    }
620
621    return_VOID;
622}
623
624
625/*******************************************************************************
626 *
627 * FUNCTION:    AcpiPsGetNextField
628 *
629 * PARAMETERS:  ParserState         - Current parser state object
630 *
631 * RETURN:      A newly allocated FIELD op
632 *
633 * DESCRIPTION: Get next field (NamedField, ReservedField, or AccessField)
634 *
635 ******************************************************************************/
636
637ACPI_PARSE_OBJECT *
638AcpiPsGetNextField (
639    ACPI_PARSE_STATE        *ParserState)
640{
641    UINT32                  AmlOffset = ParserState->Aml -
642                                        ParserState->AmlStart;
643    ACPI_PARSE_OBJECT       *Field;
644    UINT16                  Opcode;
645    UINT32                  Name;
646
647
648    FUNCTION_TRACE ("PsGetNextField");
649
650
651    /* determine field type */
652
653    switch (GET8 (ParserState->Aml))
654    {
655
656    default:
657
658        Opcode = AML_INT_NAMEDFIELD_OP;
659        break;
660
661
662    case 0x00:
663
664        Opcode = AML_INT_RESERVEDFIELD_OP;
665        ParserState->Aml++;
666        break;
667
668
669    case 0x01:
670
671        Opcode = AML_INT_ACCESSFIELD_OP;
672        ParserState->Aml++;
673        break;
674    }
675
676
677    /* Allocate a new field op */
678
679    Field = AcpiPsAllocOp (Opcode);
680    if (Field)
681    {
682        Field->AmlOffset = AmlOffset;
683
684        /* Decode the field type */
685
686        switch (Opcode)
687        {
688        case AML_INT_NAMEDFIELD_OP:
689
690            /* Get the 4-character name */
691
692            MOVE_UNALIGNED32_TO_32 (&Name, ParserState->Aml);
693            AcpiPsSetName (Field, Name);
694            ParserState->Aml += 4;
695
696            /* Get the length which is encoded as a package length */
697
698            Field->Value.Size = AcpiPsGetNextPackageLength (ParserState);
699            break;
700
701
702        case AML_INT_RESERVEDFIELD_OP:
703
704            /* Get the length which is encoded as a package length */
705
706            Field->Value.Size = AcpiPsGetNextPackageLength (ParserState);
707            break;
708
709
710        case AML_INT_ACCESSFIELD_OP:
711
712            /* Get AccessType and AccessAtrib and merge into the field Op */
713
714            Field->Value.Integer = ((GET8 (ParserState->Aml) << 8) |
715                                     GET8 (ParserState->Aml));
716            ParserState->Aml += 2;
717            break;
718        }
719    }
720
721    return_PTR (Field);
722}
723
724
725/*******************************************************************************
726 *
727 * FUNCTION:    AcpiPsGetNextArg
728 *
729 * PARAMETERS:  ParserState         - Current parser state object
730 *              ArgType             - The argument type (AML_*_ARG)
731 *              ArgCount            - If the argument points to a control method
732 *                                    the method's argument is returned here.
733 *
734 * RETURN:      An op object containing the next argument.
735 *
736 * DESCRIPTION: Get next argument (including complex list arguments that require
737 *              pushing the parser stack)
738 *
739 ******************************************************************************/
740
741ACPI_PARSE_OBJECT *
742AcpiPsGetNextArg (
743    ACPI_PARSE_STATE        *ParserState,
744    UINT32                  ArgType,
745    UINT32                  *ArgCount)
746{
747    ACPI_PARSE_OBJECT       *Arg = NULL;
748    ACPI_PARSE_OBJECT       *Prev = NULL;
749    ACPI_PARSE_OBJECT       *Field;
750    UINT32                  Subop;
751
752
753    FUNCTION_TRACE_PTR ("PsGetNextArg", ParserState);
754
755
756    switch (ArgType)
757    {
758    case ARGP_BYTEDATA:
759    case ARGP_WORDDATA:
760    case ARGP_DWORDDATA:
761    case ARGP_CHARLIST:
762    case ARGP_NAME:
763    case ARGP_NAMESTRING:
764
765        /* constants, strings, and namestrings are all the same size */
766
767        Arg = AcpiPsAllocOp (AML_BYTE_OP);
768        if (Arg)
769        {
770            AcpiPsGetNextSimpleArg (ParserState, ArgType, Arg);
771        }
772        break;
773
774
775    case ARGP_PKGLENGTH:
776
777        /* package length, nothing returned */
778
779        ParserState->PkgEnd = AcpiPsGetNextPackageEnd (ParserState);
780        break;
781
782
783    case ARGP_FIELDLIST:
784
785        if (ParserState->Aml < ParserState->PkgEnd)
786        {
787            /* non-empty list */
788
789            while (ParserState->Aml < ParserState->PkgEnd)
790            {
791                Field = AcpiPsGetNextField (ParserState);
792                if (!Field)
793                {
794                    break;
795                }
796
797                if (Prev)
798                {
799                    Prev->Next = Field;
800                }
801
802                else
803                {
804                    Arg = Field;
805                }
806
807                Prev = Field;
808            }
809
810            /* skip to End of byte data */
811
812            ParserState->Aml = ParserState->PkgEnd;
813        }
814        break;
815
816
817    case ARGP_BYTELIST:
818
819        if (ParserState->Aml < ParserState->PkgEnd)
820        {
821            /* non-empty list */
822
823            Arg = AcpiPsAllocOp (AML_INT_BYTELIST_OP);
824            if (Arg)
825            {
826                /* fill in bytelist data */
827
828                Arg->Value.Size = (ParserState->PkgEnd - ParserState->Aml);
829                ((ACPI_PARSE2_OBJECT *) Arg)->Data = ParserState->Aml;
830            }
831
832            /* skip to End of byte data */
833
834            ParserState->Aml = ParserState->PkgEnd;
835        }
836        break;
837
838
839    case ARGP_TARGET:
840    case ARGP_SUPERNAME:
841        {
842            Subop = AcpiPsPeekOpcode (ParserState);
843            if (Subop == 0              ||
844                AcpiPsIsLeadingChar (Subop) ||
845                AcpiPsIsPrefixChar (Subop))
846            {
847                /* NullName or NameString */
848
849                Arg = AcpiPsAllocOp (AML_INT_NAMEPATH_OP);
850                if (Arg)
851                {
852                    AcpiPsGetNextNamepath (ParserState, Arg, ArgCount, 0);
853                }
854            }
855
856            else
857            {
858                /* single complex argument, nothing returned */
859
860                *ArgCount = 1;
861            }
862        }
863        break;
864
865
866    case ARGP_DATAOBJ:
867    case ARGP_TERMARG:
868
869        /* single complex argument, nothing returned */
870
871        *ArgCount = 1;
872        break;
873
874
875    case ARGP_DATAOBJLIST:
876    case ARGP_TERMLIST:
877    case ARGP_OBJLIST:
878
879        if (ParserState->Aml < ParserState->PkgEnd)
880        {
881            /* non-empty list of variable arguments, nothing returned */
882
883            *ArgCount = ACPI_VAR_ARGS;
884        }
885        break;
886    }
887
888    return_PTR (Arg);
889}
890