10d84335fSJung-uk Kim /******************************************************************************
20d84335fSJung-uk Kim  *
30d84335fSJung-uk Kim  * Module Name: cvcompiler - ASL-/ASL+ converter functions
40d84335fSJung-uk Kim  *
50d84335fSJung-uk Kim  *****************************************************************************/
60d84335fSJung-uk Kim 
70d84335fSJung-uk Kim /******************************************************************************
80d84335fSJung-uk Kim  *
90d84335fSJung-uk Kim  * 1. Copyright Notice
100d84335fSJung-uk Kim  *
11722b1667SJung-uk Kim  * Some or all of this work - Copyright (c) 1999 - 2023, Intel Corp.
120d84335fSJung-uk Kim  * All rights reserved.
130d84335fSJung-uk Kim  *
140d84335fSJung-uk Kim  * 2. License
150d84335fSJung-uk Kim  *
160d84335fSJung-uk Kim  * 2.1. This is your license from Intel Corp. under its intellectual property
170d84335fSJung-uk Kim  * rights. You may have additional license terms from the party that provided
180d84335fSJung-uk Kim  * you this software, covering your right to use that party's intellectual
190d84335fSJung-uk Kim  * property rights.
200d84335fSJung-uk Kim  *
210d84335fSJung-uk Kim  * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
220d84335fSJung-uk Kim  * copy of the source code appearing in this file ("Covered Code") an
230d84335fSJung-uk Kim  * irrevocable, perpetual, worldwide license under Intel's copyrights in the
240d84335fSJung-uk Kim  * base code distributed originally by Intel ("Original Intel Code") to copy,
250d84335fSJung-uk Kim  * make derivatives, distribute, use and display any portion of the Covered
260d84335fSJung-uk Kim  * Code in any form, with the right to sublicense such rights; and
270d84335fSJung-uk Kim  *
280d84335fSJung-uk Kim  * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
290d84335fSJung-uk Kim  * license (with the right to sublicense), under only those claims of Intel
300d84335fSJung-uk Kim  * patents that are infringed by the Original Intel Code, to make, use, sell,
310d84335fSJung-uk Kim  * offer to sell, and import the Covered Code and derivative works thereof
320d84335fSJung-uk Kim  * solely to the minimum extent necessary to exercise the above copyright
330d84335fSJung-uk Kim  * license, and in no event shall the patent license extend to any additions
340d84335fSJung-uk Kim  * to or modifications of the Original Intel Code. No other license or right
350d84335fSJung-uk Kim  * is granted directly or by implication, estoppel or otherwise;
360d84335fSJung-uk Kim  *
370d84335fSJung-uk Kim  * The above copyright and patent license is granted only if the following
380d84335fSJung-uk Kim  * conditions are met:
390d84335fSJung-uk Kim  *
400d84335fSJung-uk Kim  * 3. Conditions
410d84335fSJung-uk Kim  *
420d84335fSJung-uk Kim  * 3.1. Redistribution of Source with Rights to Further Distribute Source.
430d84335fSJung-uk Kim  * Redistribution of source code of any substantial portion of the Covered
440d84335fSJung-uk Kim  * Code or modification with rights to further distribute source must include
450d84335fSJung-uk Kim  * the above Copyright Notice, the above License, this list of Conditions,
460d84335fSJung-uk Kim  * and the following Disclaimer and Export Compliance provision. In addition,
470d84335fSJung-uk Kim  * Licensee must cause all Covered Code to which Licensee contributes to
480d84335fSJung-uk Kim  * contain a file documenting the changes Licensee made to create that Covered
490d84335fSJung-uk Kim  * Code and the date of any change. Licensee must include in that file the
500d84335fSJung-uk Kim  * documentation of any changes made by any predecessor Licensee. Licensee
510d84335fSJung-uk Kim  * must include a prominent statement that the modification is derived,
520d84335fSJung-uk Kim  * directly or indirectly, from Original Intel Code.
530d84335fSJung-uk Kim  *
540d84335fSJung-uk Kim  * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
550d84335fSJung-uk Kim  * Redistribution of source code of any substantial portion of the Covered
560d84335fSJung-uk Kim  * Code or modification without rights to further distribute source must
570d84335fSJung-uk Kim  * include the following Disclaimer and Export Compliance provision in the
580d84335fSJung-uk Kim  * documentation and/or other materials provided with distribution. In
590d84335fSJung-uk Kim  * addition, Licensee may not authorize further sublicense of source of any
600d84335fSJung-uk Kim  * portion of the Covered Code, and must include terms to the effect that the
610d84335fSJung-uk Kim  * license from Licensee to its licensee is limited to the intellectual
620d84335fSJung-uk Kim  * property embodied in the software Licensee provides to its licensee, and
630d84335fSJung-uk Kim  * not to intellectual property embodied in modifications its licensee may
640d84335fSJung-uk Kim  * make.
650d84335fSJung-uk Kim  *
660d84335fSJung-uk Kim  * 3.3. Redistribution of Executable. Redistribution in executable form of any
670d84335fSJung-uk Kim  * substantial portion of the Covered Code or modification must reproduce the
680d84335fSJung-uk Kim  * above Copyright Notice, and the following Disclaimer and Export Compliance
690d84335fSJung-uk Kim  * provision in the documentation and/or other materials provided with the
700d84335fSJung-uk Kim  * distribution.
710d84335fSJung-uk Kim  *
720d84335fSJung-uk Kim  * 3.4. Intel retains all right, title, and interest in and to the Original
730d84335fSJung-uk Kim  * Intel Code.
740d84335fSJung-uk Kim  *
750d84335fSJung-uk Kim  * 3.5. Neither the name Intel nor any other trademark owned or controlled by
760d84335fSJung-uk Kim  * Intel shall be used in advertising or otherwise to promote the sale, use or
770d84335fSJung-uk Kim  * other dealings in products derived from or relating to the Covered Code
780d84335fSJung-uk Kim  * without prior written authorization from Intel.
790d84335fSJung-uk Kim  *
800d84335fSJung-uk Kim  * 4. Disclaimer and Export Compliance
810d84335fSJung-uk Kim  *
820d84335fSJung-uk Kim  * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
830d84335fSJung-uk Kim  * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
840d84335fSJung-uk Kim  * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
850d84335fSJung-uk Kim  * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
860d84335fSJung-uk Kim  * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
870d84335fSJung-uk Kim  * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
880d84335fSJung-uk Kim  * PARTICULAR PURPOSE.
890d84335fSJung-uk Kim  *
900d84335fSJung-uk Kim  * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
910d84335fSJung-uk Kim  * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
920d84335fSJung-uk Kim  * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
930d84335fSJung-uk Kim  * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
940d84335fSJung-uk Kim  * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
950d84335fSJung-uk Kim  * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
960d84335fSJung-uk Kim  * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
970d84335fSJung-uk Kim  * LIMITED REMEDY.
980d84335fSJung-uk Kim  *
990d84335fSJung-uk Kim  * 4.3. Licensee shall not export, either directly or indirectly, any of this
1000d84335fSJung-uk Kim  * software or system incorporating such software without first obtaining any
1010d84335fSJung-uk Kim  * required license or other approval from the U. S. Department of Commerce or
1020d84335fSJung-uk Kim  * any other agency or department of the United States Government. In the
1030d84335fSJung-uk Kim  * event Licensee exports any such software from the United States or
1040d84335fSJung-uk Kim  * re-exports any such software from a foreign destination, Licensee shall
1050d84335fSJung-uk Kim  * ensure that the distribution and export/re-export of the software is in
1060d84335fSJung-uk Kim  * compliance with all laws, regulations, orders, or other restrictions of the
1070d84335fSJung-uk Kim  * U.S. Export Administration Regulations. Licensee agrees that neither it nor
1080d84335fSJung-uk Kim  * any of its subsidiaries will export/re-export any technical data, process,
1090d84335fSJung-uk Kim  * software, or service, directly or indirectly, to any country for which the
1100d84335fSJung-uk Kim  * United States government or any agency thereof requires an export license,
1110d84335fSJung-uk Kim  * other governmental approval, or letter of assurance, without first obtaining
1120d84335fSJung-uk Kim  * such license, approval or letter.
1130d84335fSJung-uk Kim  *
1140d84335fSJung-uk Kim  *****************************************************************************
1150d84335fSJung-uk Kim  *
1160d84335fSJung-uk Kim  * Alternatively, you may choose to be licensed under the terms of the
1170d84335fSJung-uk Kim  * following license:
1180d84335fSJung-uk Kim  *
1190d84335fSJung-uk Kim  * Redistribution and use in source and binary forms, with or without
1200d84335fSJung-uk Kim  * modification, are permitted provided that the following conditions
1210d84335fSJung-uk Kim  * are met:
1220d84335fSJung-uk Kim  * 1. Redistributions of source code must retain the above copyright
1230d84335fSJung-uk Kim  *    notice, this list of conditions, and the following disclaimer,
1240d84335fSJung-uk Kim  *    without modification.
1250d84335fSJung-uk Kim  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
1260d84335fSJung-uk Kim  *    substantially similar to the "NO WARRANTY" disclaimer below
1270d84335fSJung-uk Kim  *    ("Disclaimer") and any redistribution must be conditioned upon
1280d84335fSJung-uk Kim  *    including a substantially similar Disclaimer requirement for further
1290d84335fSJung-uk Kim  *    binary redistribution.
1300d84335fSJung-uk Kim  * 3. Neither the names of the above-listed copyright holders nor the names
1310d84335fSJung-uk Kim  *    of any contributors may be used to endorse or promote products derived
1320d84335fSJung-uk Kim  *    from this software without specific prior written permission.
1330d84335fSJung-uk Kim  *
1340d84335fSJung-uk Kim  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
1350d84335fSJung-uk Kim  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
1360d84335fSJung-uk Kim  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
1370d84335fSJung-uk Kim  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
1380d84335fSJung-uk Kim  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
1390d84335fSJung-uk Kim  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
1400d84335fSJung-uk Kim  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
1410d84335fSJung-uk Kim  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
1420d84335fSJung-uk Kim  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
1430d84335fSJung-uk Kim  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
1440d84335fSJung-uk Kim  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
1450d84335fSJung-uk Kim  *
1460d84335fSJung-uk Kim  * Alternatively, you may choose to be licensed under the terms of the
1470d84335fSJung-uk Kim  * GNU General Public License ("GPL") version 2 as published by the Free
1480d84335fSJung-uk Kim  * Software Foundation.
1490d84335fSJung-uk Kim  *
1500d84335fSJung-uk Kim  *****************************************************************************/
1510d84335fSJung-uk Kim 
1520d84335fSJung-uk Kim #include <contrib/dev/acpica/compiler/aslcompiler.h>
1530d84335fSJung-uk Kim #include <contrib/dev/acpica/include/acparser.h>
1540d84335fSJung-uk Kim #include <contrib/dev/acpica/include/amlcode.h>
1550d84335fSJung-uk Kim #include <contrib/dev/acpica/include/acdebug.h>
1560d84335fSJung-uk Kim #include <contrib/dev/acpica/include/acconvert.h>
1570d84335fSJung-uk Kim 
1580d84335fSJung-uk Kim 
1595f9b24faSJung-uk Kim /* Local prototypes */
1605f9b24faSJung-uk Kim 
1610d84335fSJung-uk Kim static void
1620d84335fSJung-uk Kim CvPrintInclude(
1630d84335fSJung-uk Kim     ACPI_FILE_NODE          *FNode,
1640d84335fSJung-uk Kim     UINT32                  Level);
1650d84335fSJung-uk Kim 
1660d84335fSJung-uk Kim static BOOLEAN
1670d84335fSJung-uk Kim CvListIsSingleton (
1680d84335fSJung-uk Kim     ACPI_COMMENT_NODE       *CommentList);
1690d84335fSJung-uk Kim 
1700d84335fSJung-uk Kim 
1710d84335fSJung-uk Kim /*******************************************************************************
1720d84335fSJung-uk Kim  *
1730d84335fSJung-uk Kim  * FUNCTION:    CvPrintOneCommentList
1740d84335fSJung-uk Kim  *
1750d84335fSJung-uk Kim  * PARAMETERS:  CommentList
1760d84335fSJung-uk Kim  *              Level
1770d84335fSJung-uk Kim  *
1780d84335fSJung-uk Kim  * RETURN:      None
1790d84335fSJung-uk Kim  *
1800d84335fSJung-uk Kim  * DESCRIPTION: Prints all comments within the given list.
1810d84335fSJung-uk Kim  *              This is referred as ASL_CV_PRINT_ONE_COMMENT_LIST.
1820d84335fSJung-uk Kim  *
1830d84335fSJung-uk Kim  ******************************************************************************/
1840d84335fSJung-uk Kim 
1850d84335fSJung-uk Kim void
CvPrintOneCommentList(ACPI_COMMENT_NODE * CommentList,UINT32 Level)1860d84335fSJung-uk Kim CvPrintOneCommentList (
1870d84335fSJung-uk Kim     ACPI_COMMENT_NODE       *CommentList,
1880d84335fSJung-uk Kim     UINT32                  Level)
1890d84335fSJung-uk Kim {
1900d84335fSJung-uk Kim     ACPI_COMMENT_NODE       *Current = CommentList;
1910d84335fSJung-uk Kim     ACPI_COMMENT_NODE       *Previous;
1920d84335fSJung-uk Kim 
1930d84335fSJung-uk Kim 
1940d84335fSJung-uk Kim     while (Current)
1950d84335fSJung-uk Kim     {
1960d84335fSJung-uk Kim         Previous = Current;
1970d84335fSJung-uk Kim         if (Current->Comment)
1980d84335fSJung-uk Kim         {
1990d84335fSJung-uk Kim             AcpiDmIndent(Level);
2000d84335fSJung-uk Kim             AcpiOsPrintf("%s\n", Current->Comment);
2010d84335fSJung-uk Kim             Current->Comment = NULL;
2020d84335fSJung-uk Kim         }
2035f9b24faSJung-uk Kim 
2040d84335fSJung-uk Kim         Current = Current->Next;
2050d84335fSJung-uk Kim         AcpiOsReleaseObject(AcpiGbl_RegCommentCache, Previous);
2060d84335fSJung-uk Kim     }
2070d84335fSJung-uk Kim }
2080d84335fSJung-uk Kim 
2090d84335fSJung-uk Kim 
2100d84335fSJung-uk Kim /*******************************************************************************
2110d84335fSJung-uk Kim  *
2120d84335fSJung-uk Kim  * FUNCTION:    CvListIsSingleton
2130d84335fSJung-uk Kim  *
2145f9b24faSJung-uk Kim  * PARAMETERS:  CommentList     - check to see if this is a single item list.
2150d84335fSJung-uk Kim  *
2160d84335fSJung-uk Kim  * RETURN:      BOOLEAN
2170d84335fSJung-uk Kim  *
2180d84335fSJung-uk Kim  * DESCRIPTION: Returns TRUE if CommentList only contains 1 node.
2190d84335fSJung-uk Kim  *
2200d84335fSJung-uk Kim  ******************************************************************************/
2210d84335fSJung-uk Kim 
2220d84335fSJung-uk Kim static BOOLEAN
CvListIsSingleton(ACPI_COMMENT_NODE * CommentList)2230d84335fSJung-uk Kim CvListIsSingleton (
2240d84335fSJung-uk Kim     ACPI_COMMENT_NODE       *CommentList)
2250d84335fSJung-uk Kim 
2260d84335fSJung-uk Kim {
2275f9b24faSJung-uk Kim 
2280d84335fSJung-uk Kim     if (!CommentList)
2290d84335fSJung-uk Kim     {
2305f9b24faSJung-uk Kim         return (FALSE);
2310d84335fSJung-uk Kim     }
2320d84335fSJung-uk Kim     else if (CommentList->Next)
2330d84335fSJung-uk Kim     {
2345f9b24faSJung-uk Kim         return (FALSE);
2350d84335fSJung-uk Kim     }
2360d84335fSJung-uk Kim 
2375f9b24faSJung-uk Kim     return (TRUE);
2380d84335fSJung-uk Kim }
2390d84335fSJung-uk Kim 
2400d84335fSJung-uk Kim 
2410d84335fSJung-uk Kim /*******************************************************************************
2420d84335fSJung-uk Kim  *
2430d84335fSJung-uk Kim  * FUNCTION:    CvPrintOneCommentType
2440d84335fSJung-uk Kim  *
2450d84335fSJung-uk Kim  * PARAMETERS:  Op
2460d84335fSJung-uk Kim  *              CommentType
2470d84335fSJung-uk Kim  *              EndStr - String to print after printing the comment
2480d84335fSJung-uk Kim  *              Level  - indentation level for comment lists.
2490d84335fSJung-uk Kim  *
2500d84335fSJung-uk Kim  * RETURN:      None
2510d84335fSJung-uk Kim  *
2520d84335fSJung-uk Kim  * DESCRIPTION: Prints all comments of CommentType within the given Op and
2530d84335fSJung-uk Kim  *              clears the printed comment from the Op.
2540d84335fSJung-uk Kim  *              This is referred as ASL_CV_PRINT_ONE_COMMENT.
2550d84335fSJung-uk Kim  *
2560d84335fSJung-uk Kim  ******************************************************************************/
2570d84335fSJung-uk Kim 
2580d84335fSJung-uk Kim void
CvPrintOneCommentType(ACPI_PARSE_OBJECT * Op,UINT8 CommentType,char * EndStr,UINT32 Level)2590d84335fSJung-uk Kim CvPrintOneCommentType (
2600d84335fSJung-uk Kim     ACPI_PARSE_OBJECT       *Op,
2610d84335fSJung-uk Kim     UINT8                   CommentType,
2620d84335fSJung-uk Kim     char*                   EndStr,
2630d84335fSJung-uk Kim     UINT32                  Level)
2640d84335fSJung-uk Kim {
2650d84335fSJung-uk Kim     BOOLEAN                 CommentExists = FALSE;
2660d84335fSJung-uk Kim     char                    **CommentToPrint = NULL;
2670d84335fSJung-uk Kim 
2680d84335fSJung-uk Kim 
2690d84335fSJung-uk Kim     switch (CommentType)
2700d84335fSJung-uk Kim     {
2710d84335fSJung-uk Kim     case AML_COMMENT_STANDARD:
2720d84335fSJung-uk Kim 
2730d84335fSJung-uk Kim         if (CvListIsSingleton (Op->Common.CommentList))
2740d84335fSJung-uk Kim         {
2750d84335fSJung-uk Kim             CvPrintOneCommentList (Op->Common.CommentList, Level);
2760d84335fSJung-uk Kim             AcpiOsPrintf ("\n");
2770d84335fSJung-uk Kim         }
2780d84335fSJung-uk Kim         else
2790d84335fSJung-uk Kim         {
2800d84335fSJung-uk Kim             CvPrintOneCommentList (Op->Common.CommentList, Level);
2810d84335fSJung-uk Kim         }
2825f9b24faSJung-uk Kim 
2830d84335fSJung-uk Kim         Op->Common.CommentList = NULL;
2840d84335fSJung-uk Kim         return;
2850d84335fSJung-uk Kim 
2860d84335fSJung-uk Kim     case AML_COMMENT_ENDBLK:
2870d84335fSJung-uk Kim 
2880d84335fSJung-uk Kim         if (Op->Common.EndBlkComment)
2890d84335fSJung-uk Kim         {
2900d84335fSJung-uk Kim             CvPrintOneCommentList (Op->Common.EndBlkComment, Level);
2910d84335fSJung-uk Kim             Op->Common.EndBlkComment = NULL;
2920d84335fSJung-uk Kim             AcpiDmIndent(Level);
2930d84335fSJung-uk Kim         }
2940d84335fSJung-uk Kim         return;
2950d84335fSJung-uk Kim 
2960d84335fSJung-uk Kim     case AMLCOMMENT_INLINE:
2970d84335fSJung-uk Kim 
2980d84335fSJung-uk Kim         CommentToPrint = &Op->Common.InlineComment;
2990d84335fSJung-uk Kim         break;
3000d84335fSJung-uk Kim 
3010d84335fSJung-uk Kim     case AML_COMMENT_END_NODE:
3020d84335fSJung-uk Kim 
3030d84335fSJung-uk Kim         CommentToPrint = &Op->Common.EndNodeComment;
3040d84335fSJung-uk Kim         break;
3050d84335fSJung-uk Kim 
3060d84335fSJung-uk Kim     case AML_NAMECOMMENT:
3070d84335fSJung-uk Kim 
3080d84335fSJung-uk Kim         CommentToPrint = &Op->Common.NameComment;
3090d84335fSJung-uk Kim         break;
3100d84335fSJung-uk Kim 
3110d84335fSJung-uk Kim     case AML_COMMENT_CLOSE_BRACE:
3120d84335fSJung-uk Kim 
3130d84335fSJung-uk Kim         CommentToPrint = &Op->Common.CloseBraceComment;
3140d84335fSJung-uk Kim         break;
3150d84335fSJung-uk Kim 
3160d84335fSJung-uk Kim     default:
3170d84335fSJung-uk Kim         return;
3180d84335fSJung-uk Kim     }
3190d84335fSJung-uk Kim 
3200d84335fSJung-uk Kim     if (*CommentToPrint)
3210d84335fSJung-uk Kim     {
322af051161SJung-uk Kim         CommentExists = TRUE;
3230d84335fSJung-uk Kim         AcpiOsPrintf ("%s", *CommentToPrint);
3240d84335fSJung-uk Kim         *CommentToPrint = NULL;
3250d84335fSJung-uk Kim     }
3260d84335fSJung-uk Kim 
3270d84335fSJung-uk Kim     if (CommentExists && EndStr)
3280d84335fSJung-uk Kim     {
3290d84335fSJung-uk Kim         AcpiOsPrintf ("%s", EndStr);
3300d84335fSJung-uk Kim     }
3310d84335fSJung-uk Kim }
3320d84335fSJung-uk Kim 
3330d84335fSJung-uk Kim 
3340d84335fSJung-uk Kim /*******************************************************************************
3350d84335fSJung-uk Kim  *
3360d84335fSJung-uk Kim  * FUNCTION:    CvCloseBraceWriteComment
3370d84335fSJung-uk Kim  *
3380d84335fSJung-uk Kim  * PARAMETERS:  Op
3390d84335fSJung-uk Kim  *              Level
3400d84335fSJung-uk Kim  *
3415f9b24faSJung-uk Kim  * RETURN:      None
3420d84335fSJung-uk Kim  *
3430d84335fSJung-uk Kim  * DESCRIPTION: Print a close brace } and any open brace comments associated
3440d84335fSJung-uk Kim  *              with this parse object.
3450d84335fSJung-uk Kim  *              This is referred as ASL_CV_CLOSE_BRACE.
3460d84335fSJung-uk Kim  *
3470d84335fSJung-uk Kim  ******************************************************************************/
3480d84335fSJung-uk Kim 
3490d84335fSJung-uk Kim void
CvCloseBraceWriteComment(ACPI_PARSE_OBJECT * Op,UINT32 Level)3500d84335fSJung-uk Kim CvCloseBraceWriteComment(
3510d84335fSJung-uk Kim     ACPI_PARSE_OBJECT       *Op,
3520d84335fSJung-uk Kim     UINT32                  Level)
3530d84335fSJung-uk Kim {
3545f9b24faSJung-uk Kim 
355f1db5ef7SJung-uk Kim     if (!AcpiGbl_CaptureComments)
3560d84335fSJung-uk Kim     {
3570d84335fSJung-uk Kim         AcpiOsPrintf ("}");
3580d84335fSJung-uk Kim         return;
3590d84335fSJung-uk Kim     }
3600d84335fSJung-uk Kim 
3610d84335fSJung-uk Kim     CvPrintOneCommentType (Op, AML_COMMENT_ENDBLK, NULL, Level);
3620d84335fSJung-uk Kim     AcpiOsPrintf ("}");
3630d84335fSJung-uk Kim     CvPrintOneCommentType (Op, AML_COMMENT_CLOSE_BRACE, NULL, Level);
3640d84335fSJung-uk Kim }
3650d84335fSJung-uk Kim 
3660d84335fSJung-uk Kim 
3670d84335fSJung-uk Kim /*******************************************************************************
3680d84335fSJung-uk Kim  *
3690d84335fSJung-uk Kim  * FUNCTION:    CvCloseParenWriteComment
3700d84335fSJung-uk Kim  *
3710d84335fSJung-uk Kim  * PARAMETERS:  Op
3720d84335fSJung-uk Kim  *              Level
3730d84335fSJung-uk Kim  *
3745f9b24faSJung-uk Kim  * RETURN:      None
3750d84335fSJung-uk Kim  *
3760d84335fSJung-uk Kim  * DESCRIPTION: Print a closing paren ) and any end node comments associated
3770d84335fSJung-uk Kim  *              with this parse object.
3780d84335fSJung-uk Kim  *              This is referred as ASL_CV_CLOSE_PAREN.
3790d84335fSJung-uk Kim  *
3800d84335fSJung-uk Kim  ******************************************************************************/
3810d84335fSJung-uk Kim 
3820d84335fSJung-uk Kim void
CvCloseParenWriteComment(ACPI_PARSE_OBJECT * Op,UINT32 Level)3830d84335fSJung-uk Kim CvCloseParenWriteComment(
3840d84335fSJung-uk Kim     ACPI_PARSE_OBJECT       *Op,
3850d84335fSJung-uk Kim     UINT32                  Level)
3860d84335fSJung-uk Kim {
3875f9b24faSJung-uk Kim 
388f1db5ef7SJung-uk Kim     if (!AcpiGbl_CaptureComments)
3890d84335fSJung-uk Kim     {
3900d84335fSJung-uk Kim         AcpiOsPrintf (")");
3910d84335fSJung-uk Kim         return;
3920d84335fSJung-uk Kim     }
3930d84335fSJung-uk Kim 
3940d84335fSJung-uk Kim     /*
3950d84335fSJung-uk Kim      * If this op has a BLOCK_BRACE, then output the comment when the
3960d84335fSJung-uk Kim      * disassembler calls CvCloseBraceWriteComment
3970d84335fSJung-uk Kim      */
3980d84335fSJung-uk Kim     if (AcpiDmBlockType (Op) == BLOCK_PAREN)
3990d84335fSJung-uk Kim     {
4000d84335fSJung-uk Kim         CvPrintOneCommentType (Op, AML_COMMENT_ENDBLK, NULL, Level);
4010d84335fSJung-uk Kim     }
4020d84335fSJung-uk Kim 
4030d84335fSJung-uk Kim     AcpiOsPrintf (")");
4040d84335fSJung-uk Kim 
4050d84335fSJung-uk Kim     if (Op->Common.EndNodeComment)
4060d84335fSJung-uk Kim     {
4070d84335fSJung-uk Kim         CvPrintOneCommentType (Op, AML_COMMENT_END_NODE, NULL, Level);
4080d84335fSJung-uk Kim     }
4090d84335fSJung-uk Kim     else if ((Op->Common.Parent->Common.AmlOpcode == AML_IF_OP) &&
4100d84335fSJung-uk Kim          Op->Common.Parent->Common.EndNodeComment)
4110d84335fSJung-uk Kim     {
4120d84335fSJung-uk Kim         CvPrintOneCommentType (Op->Common.Parent,
4130d84335fSJung-uk Kim             AML_COMMENT_END_NODE, NULL, Level);
4140d84335fSJung-uk Kim     }
4150d84335fSJung-uk Kim }
4160d84335fSJung-uk Kim 
4170d84335fSJung-uk Kim 
4180d84335fSJung-uk Kim /*******************************************************************************
4190d84335fSJung-uk Kim  *
4200d84335fSJung-uk Kim  * FUNCTION:    CvFileHasSwitched
4210d84335fSJung-uk Kim  *
4220d84335fSJung-uk Kim  * PARAMETERS:  Op
4230d84335fSJung-uk Kim  *
4240d84335fSJung-uk Kim  * RETURN:      BOOLEAN
4250d84335fSJung-uk Kim  *
4260d84335fSJung-uk Kim  * DESCRIPTION: Determine whether if a file has switched.
4270d84335fSJung-uk Kim  *              TRUE - file has switched.
4280d84335fSJung-uk Kim  *              FALSE - file has not switched.
4290d84335fSJung-uk Kim  *              This is referred as ASL_CV_FILE_HAS_SWITCHED.
4300d84335fSJung-uk Kim  *
4310d84335fSJung-uk Kim  ******************************************************************************/
4320d84335fSJung-uk Kim 
4330d84335fSJung-uk Kim BOOLEAN
CvFileHasSwitched(ACPI_PARSE_OBJECT * Op)4340d84335fSJung-uk Kim CvFileHasSwitched(
4350d84335fSJung-uk Kim     ACPI_PARSE_OBJECT       *Op)
4360d84335fSJung-uk Kim {
4375f9b24faSJung-uk Kim 
4380d84335fSJung-uk Kim     if (Op->Common.CvFilename   &&
4390d84335fSJung-uk Kim         AcpiGbl_CurrentFilename &&
4400d84335fSJung-uk Kim         AcpiUtStricmp(Op->Common.CvFilename, AcpiGbl_CurrentFilename))
4410d84335fSJung-uk Kim     {
4425f9b24faSJung-uk Kim         return (TRUE);
4430d84335fSJung-uk Kim     }
4445f9b24faSJung-uk Kim 
4455f9b24faSJung-uk Kim     return (FALSE);
4460d84335fSJung-uk Kim }
4470d84335fSJung-uk Kim 
4480d84335fSJung-uk Kim 
4490d84335fSJung-uk Kim /*******************************************************************************
4500d84335fSJung-uk Kim  *
4510d84335fSJung-uk Kim  * FUNCTION:    CvPrintInclude
4520d84335fSJung-uk Kim  *
4530d84335fSJung-uk Kim  * PARAMETERS:  FNode - Write an Include statement for the file that is pointed
4540d84335fSJung-uk Kim  *                      by FNode->File.
4550d84335fSJung-uk Kim  *              Level - indentation level
4560d84335fSJung-uk Kim  *
4570d84335fSJung-uk Kim  * RETURN:      None
4580d84335fSJung-uk Kim  *
4590d84335fSJung-uk Kim  * DESCRIPTION: Write the ASL Include statement for FNode->File in the file
4600d84335fSJung-uk Kim  *              indicated by FNode->Parent->File. Note this function emits
4610d84335fSJung-uk Kim  *              actual ASL code rather than comments. This switches the output
4620d84335fSJung-uk Kim  *              file to FNode->Parent->File.
4630d84335fSJung-uk Kim  *
4640d84335fSJung-uk Kim  ******************************************************************************/
4650d84335fSJung-uk Kim 
4660d84335fSJung-uk Kim static void
CvPrintInclude(ACPI_FILE_NODE * FNode,UINT32 Level)4670d84335fSJung-uk Kim CvPrintInclude(
4680d84335fSJung-uk Kim     ACPI_FILE_NODE          *FNode,
4690d84335fSJung-uk Kim     UINT32                  Level)
4700d84335fSJung-uk Kim {
4715f9b24faSJung-uk Kim 
4720d84335fSJung-uk Kim     if (!FNode || FNode->IncludeWritten)
4730d84335fSJung-uk Kim     {
4740d84335fSJung-uk Kim         return;
4750d84335fSJung-uk Kim     }
4760d84335fSJung-uk Kim 
4775f9b24faSJung-uk Kim     CvDbgPrint ("Writing include for %s within %s\n",
4785f9b24faSJung-uk Kim         FNode->Filename, FNode->Parent->Filename);
4790d84335fSJung-uk Kim     AcpiOsRedirectOutput (FNode->Parent->File);
4800d84335fSJung-uk Kim     CvPrintOneCommentList (FNode->IncludeComment, Level);
4815f9b24faSJung-uk Kim 
4820d84335fSJung-uk Kim     AcpiDmIndent (Level);
4830d84335fSJung-uk Kim     AcpiOsPrintf ("Include (\"%s\")\n", FNode->Filename);
4845f9b24faSJung-uk Kim     CvDbgPrint ("emitted the following: Include (\"%s\")\n",
4855f9b24faSJung-uk Kim         FNode->Filename);
4860d84335fSJung-uk Kim     FNode->IncludeWritten = TRUE;
4870d84335fSJung-uk Kim }
4880d84335fSJung-uk Kim 
4890d84335fSJung-uk Kim 
4900d84335fSJung-uk Kim /*******************************************************************************
4910d84335fSJung-uk Kim  *
4920d84335fSJung-uk Kim  * FUNCTION:    CvSwitchFiles
4930d84335fSJung-uk Kim  *
4940d84335fSJung-uk Kim  * PARAMETERS:  Level                   - indentation level
4950d84335fSJung-uk Kim  *              Op
4960d84335fSJung-uk Kim  *
4970d84335fSJung-uk Kim  * RETURN:      None
4980d84335fSJung-uk Kim  *
4990d84335fSJung-uk Kim  * DESCRIPTION: Switch the outputfile and write ASL Include statement. Note,
5000d84335fSJung-uk Kim  *              this function emits actual ASL code rather than comments.
5010d84335fSJung-uk Kim  *              This is referred as ASL_CV_SWITCH_FILES.
5020d84335fSJung-uk Kim  *
5030d84335fSJung-uk Kim  ******************************************************************************/
5040d84335fSJung-uk Kim 
5050d84335fSJung-uk Kim void
CvSwitchFiles(UINT32 Level,ACPI_PARSE_OBJECT * Op)5060d84335fSJung-uk Kim CvSwitchFiles(
5070d84335fSJung-uk Kim     UINT32                  Level,
5080d84335fSJung-uk Kim     ACPI_PARSE_OBJECT       *Op)
5090d84335fSJung-uk Kim {
5100d84335fSJung-uk Kim     char                    *Filename = Op->Common.CvFilename;
5110d84335fSJung-uk Kim     ACPI_FILE_NODE          *FNode;
512af051161SJung-uk Kim     ACPI_FILE_NODE          *Current;
5130d84335fSJung-uk Kim 
5145f9b24faSJung-uk Kim 
5155f9b24faSJung-uk Kim     CvDbgPrint ("Switching from %s to %s\n", AcpiGbl_CurrentFilename,
5165f9b24faSJung-uk Kim         Filename);
5170d84335fSJung-uk Kim     FNode = CvFilenameExists (Filename, AcpiGbl_FileTreeRoot);
5180d84335fSJung-uk Kim     if (!FNode)
5190d84335fSJung-uk Kim     {
5200d84335fSJung-uk Kim         /*
5210d84335fSJung-uk Kim          * At this point, each Filename should exist in AcpiGbl_FileTreeRoot
5220d84335fSJung-uk Kim          * if it does not exist, then abort.
5230d84335fSJung-uk Kim          */
5240d84335fSJung-uk Kim         FlDeleteFile (ASL_FILE_AML_OUTPUT);
5256f1f1a63SJung-uk Kim         sprintf (AslGbl_MsgBuffer, "\"Cannot find %s\" - %s",
5265f9b24faSJung-uk Kim             Filename, strerror (errno));
5275f9b24faSJung-uk Kim         AslCommonError (ASL_ERROR, ASL_MSG_OPEN, 0, 0, 0, 0,
5286f1f1a63SJung-uk Kim             NULL, AslGbl_MsgBuffer);
5290d84335fSJung-uk Kim         AslAbort ();
5300d84335fSJung-uk Kim     }
5315f9b24faSJung-uk Kim 
532af051161SJung-uk Kim     Current = FNode;
5330d84335fSJung-uk Kim 
5340d84335fSJung-uk Kim     /*
5350d84335fSJung-uk Kim      * If the previous file is a descendent of the current file,
5360d84335fSJung-uk Kim      * make sure that Include statements from the current file
5370d84335fSJung-uk Kim      * to the previous have been emitted.
5380d84335fSJung-uk Kim      */
539af051161SJung-uk Kim     while (Current &&
540af051161SJung-uk Kim            Current->Parent &&
541af051161SJung-uk Kim            AcpiUtStricmp (Current->Filename, AcpiGbl_CurrentFilename))
5420d84335fSJung-uk Kim     {
543af051161SJung-uk Kim         CvPrintInclude (Current, Level);
544af051161SJung-uk Kim         Current = Current->Parent;
5450d84335fSJung-uk Kim     }
5460d84335fSJung-uk Kim 
547a009b7dcSJung-uk Kim     if (FNode)
548a009b7dcSJung-uk Kim     {
549af051161SJung-uk Kim         /* Redirect output to Op->Common.CvFilename */
5500d84335fSJung-uk Kim 
5510d84335fSJung-uk Kim         AcpiOsRedirectOutput (FNode->File);
5520d84335fSJung-uk Kim         AcpiGbl_CurrentFilename = FNode->Filename;
5530d84335fSJung-uk Kim     }
554a009b7dcSJung-uk Kim }
555