153289f6aSNate Lawson /******************************************************************************
253289f6aSNate Lawson *
353289f6aSNate Lawson * Module Name: aslmain - compiler main and utilities
453289f6aSNate Lawson *
553289f6aSNate Lawson *****************************************************************************/
653289f6aSNate Lawson
70d84335fSJung-uk Kim /******************************************************************************
80d84335fSJung-uk Kim *
90d84335fSJung-uk Kim * 1. Copyright Notice
100d84335fSJung-uk Kim *
11*722b1667SJung-uk Kim * Some or all of this work - Copyright (c) 1999 - 2023, Intel Corp.
1253289f6aSNate Lawson * All rights reserved.
1353289f6aSNate Lawson *
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 *
119d244b227SJung-uk Kim * Redistribution and use in source and binary forms, with or without
120d244b227SJung-uk Kim * modification, are permitted provided that the following conditions
121d244b227SJung-uk Kim * are met:
122d244b227SJung-uk Kim * 1. Redistributions of source code must retain the above copyright
123d244b227SJung-uk Kim * notice, this list of conditions, and the following disclaimer,
124d244b227SJung-uk Kim * without modification.
125d244b227SJung-uk Kim * 2. Redistributions in binary form must reproduce at minimum a disclaimer
126d244b227SJung-uk Kim * substantially similar to the "NO WARRANTY" disclaimer below
127d244b227SJung-uk Kim * ("Disclaimer") and any redistribution must be conditioned upon
128d244b227SJung-uk Kim * including a substantially similar Disclaimer requirement for further
129d244b227SJung-uk Kim * binary redistribution.
130d244b227SJung-uk Kim * 3. Neither the names of the above-listed copyright holders nor the names
131d244b227SJung-uk Kim * of any contributors may be used to endorse or promote products derived
132d244b227SJung-uk Kim * from this software without specific prior written permission.
13353289f6aSNate Lawson *
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
147d244b227SJung-uk Kim * GNU General Public License ("GPL") version 2 as published by the Free
148d244b227SJung-uk Kim * Software Foundation.
14953289f6aSNate Lawson *
1500d84335fSJung-uk Kim *****************************************************************************/
15153289f6aSNate Lawson
15253289f6aSNate Lawson #define _DECLARE_GLOBALS
15353289f6aSNate Lawson
154ab6f3bf9SJung-uk Kim #include <contrib/dev/acpica/compiler/aslcompiler.h>
155ab6f3bf9SJung-uk Kim #include <contrib/dev/acpica/include/acapps.h>
156709fac06SJung-uk Kim #include <contrib/dev/acpica/include/acdisasm.h>
157042ff955SJung-uk Kim #include <signal.h>
15853289f6aSNate Lawson
15953289f6aSNate Lawson #define _COMPONENT ACPI_COMPILER
16053289f6aSNate Lawson ACPI_MODULE_NAME ("aslmain")
16153289f6aSNate Lawson
162313a0c13SJung-uk Kim /*
163313a0c13SJung-uk Kim * Main routine for the iASL compiler.
164313a0c13SJung-uk Kim *
165313a0c13SJung-uk Kim * Portability note: The compiler depends upon the host for command-line
166313a0c13SJung-uk Kim * wildcard support - it is not implemented locally. For example:
167313a0c13SJung-uk Kim *
168313a0c13SJung-uk Kim * Linux/Unix systems: Shell expands wildcards automatically.
169313a0c13SJung-uk Kim *
170313a0c13SJung-uk Kim * Windows: The setargv.obj module must be linked in to automatically
171313a0c13SJung-uk Kim * expand wildcards.
172313a0c13SJung-uk Kim */
173a9d8d09cSJung-uk Kim
174fba7fc7eSJung-uk Kim /* Local prototypes */
175fba7fc7eSJung-uk Kim
176042ff955SJung-uk Kim static void ACPI_SYSTEM_XFACE
177042ff955SJung-uk Kim AslSignalHandler (
178042ff955SJung-uk Kim int Sig);
179042ff955SJung-uk Kim
180fba7fc7eSJung-uk Kim static void
181fba7fc7eSJung-uk Kim AslInitialize (
182fba7fc7eSJung-uk Kim void);
183fba7fc7eSJung-uk Kim
18453289f6aSNate Lawson
18553289f6aSNate Lawson /*******************************************************************************
18653289f6aSNate Lawson *
187493deb39SJung-uk Kim * FUNCTION: main
18853289f6aSNate Lawson *
189493deb39SJung-uk Kim * PARAMETERS: Standard argc/argv
19053289f6aSNate Lawson *
191493deb39SJung-uk Kim * RETURN: Program termination code
19253289f6aSNate Lawson *
193493deb39SJung-uk Kim * DESCRIPTION: C main routine for the iASL Compiler/Disassembler. Process
194493deb39SJung-uk Kim * command line options and begin the compile/disassembly for each file on
195493deb39SJung-uk Kim * the command line (wildcards supported).
19653289f6aSNate Lawson *
19753289f6aSNate Lawson ******************************************************************************/
19853289f6aSNate Lawson
199493deb39SJung-uk Kim int ACPI_SYSTEM_XFACE
main(int argc,char ** argv)200493deb39SJung-uk Kim main (
201493deb39SJung-uk Kim int argc,
202493deb39SJung-uk Kim char **argv)
20353289f6aSNate Lawson {
204493deb39SJung-uk Kim ACPI_STATUS Status;
205493deb39SJung-uk Kim int Index1;
206493deb39SJung-uk Kim int Index2;
207493deb39SJung-uk Kim int ReturnStatus = 0;
20853289f6aSNate Lawson
209313a0c13SJung-uk Kim
210af051161SJung-uk Kim signal (SIGINT, AslSignalHandler);
211af051161SJung-uk Kim
212493deb39SJung-uk Kim /*
213493deb39SJung-uk Kim * Big-endian machines are not currently supported. ACPI tables must
214493deb39SJung-uk Kim * be little-endian, and support for big-endian machines needs to
215493deb39SJung-uk Kim * be implemented.
216493deb39SJung-uk Kim */
217493deb39SJung-uk Kim if (UtIsBigEndianMachine ())
218493deb39SJung-uk Kim {
219493deb39SJung-uk Kim fprintf (stderr,
220493deb39SJung-uk Kim "iASL is not currently supported on big-endian machines.\n");
221493deb39SJung-uk Kim return (-1);
222493deb39SJung-uk Kim }
223d6dd1baeSJung-uk Kim
224493deb39SJung-uk Kim AcpiOsInitialize ();
225493deb39SJung-uk Kim ACPI_DEBUG_INITIALIZE (); /* For debug version only */
2264c52cad2SJung-uk Kim
227493deb39SJung-uk Kim /* Initialize preprocessor and compiler before command line processing */
22853289f6aSNate Lawson
229493deb39SJung-uk Kim AcpiGbl_ExternalFileList = NULL;
230493deb39SJung-uk Kim AcpiDbgLevel = 0;
231493deb39SJung-uk Kim PrInitializePreprocessor ();
232493deb39SJung-uk Kim AslInitialize ();
23353289f6aSNate Lawson
234493deb39SJung-uk Kim Index1 = Index2 =
235493deb39SJung-uk Kim AslCommandLine (argc, argv);
2369c48c75eSJung-uk Kim
237493deb39SJung-uk Kim /* Allocate the line buffer(s), must be after command line */
23853289f6aSNate Lawson
2396f1f1a63SJung-uk Kim AslGbl_LineBufferSize /= 2;
240493deb39SJung-uk Kim UtExpandLineBuffers ();
241a88e22b7SJung-uk Kim
242493deb39SJung-uk Kim /* Perform global actions first/only */
24353289f6aSNate Lawson
2446f1f1a63SJung-uk Kim if (AslGbl_DisassembleAll)
245493deb39SJung-uk Kim {
246493deb39SJung-uk Kim while (argv[Index1])
247493deb39SJung-uk Kim {
248493deb39SJung-uk Kim Status = AcpiDmAddToExternalFileList (argv[Index1]);
249493deb39SJung-uk Kim if (ACPI_FAILURE (Status))
250493deb39SJung-uk Kim {
251493deb39SJung-uk Kim return (-1);
252493deb39SJung-uk Kim }
253493deb39SJung-uk Kim
254493deb39SJung-uk Kim Index1++;
255493deb39SJung-uk Kim }
256493deb39SJung-uk Kim }
257493deb39SJung-uk Kim
25844b0f624SJung-uk Kim /* ACPICA subsystem initialization */
25944b0f624SJung-uk Kim
26044b0f624SJung-uk Kim Status = AdInitialize ();
26144b0f624SJung-uk Kim if (ACPI_FAILURE (Status))
26244b0f624SJung-uk Kim {
26344b0f624SJung-uk Kim return (Status);
26444b0f624SJung-uk Kim }
26544b0f624SJung-uk Kim
266af051161SJung-uk Kim
267493deb39SJung-uk Kim /* Process each pathname/filename in the list, with possible wildcards */
268493deb39SJung-uk Kim
269493deb39SJung-uk Kim while (argv[Index2])
270493deb39SJung-uk Kim {
271493deb39SJung-uk Kim /*
272493deb39SJung-uk Kim * If -p not specified, we will use the input filename as the
273493deb39SJung-uk Kim * output filename prefix
274493deb39SJung-uk Kim */
2756f1f1a63SJung-uk Kim if (AslGbl_UseDefaultAmlFilename)
276493deb39SJung-uk Kim {
2776f1f1a63SJung-uk Kim AslGbl_OutputFilenamePrefix = argv[Index2];
2786f1f1a63SJung-uk Kim UtConvertBackslashes (AslGbl_OutputFilenamePrefix);
279493deb39SJung-uk Kim }
280493deb39SJung-uk Kim
281493deb39SJung-uk Kim Status = AslDoOneFile (argv[Index2]);
282493deb39SJung-uk Kim if (ACPI_FAILURE (Status))
283493deb39SJung-uk Kim {
284493deb39SJung-uk Kim ReturnStatus = -1;
285493deb39SJung-uk Kim }
286493deb39SJung-uk Kim
287493deb39SJung-uk Kim Index2++;
28853289f6aSNate Lawson }
28953289f6aSNate Lawson
29044b0f624SJung-uk Kim /*
29144b0f624SJung-uk Kim * At this point, compilation of a data table or disassembly is complete.
292a009b7dcSJung-uk Kim * However, if there is a parse tree, perform compiler analysis and
293a009b7dcSJung-uk Kim * generate AML.
29444b0f624SJung-uk Kim */
295a009b7dcSJung-uk Kim if (AslGbl_PreprocessOnly || AcpiGbl_DisasmFlag || !AslGbl_ParseTreeRoot)
29644b0f624SJung-uk Kim {
29744b0f624SJung-uk Kim goto CleanupAndExit;
29844b0f624SJung-uk Kim }
29944b0f624SJung-uk Kim
30044b0f624SJung-uk Kim CmDoAslMiddleAndBackEnd ();
30144b0f624SJung-uk Kim
30244b0f624SJung-uk Kim /*
30344b0f624SJung-uk Kim * At this point, all semantic analysis has been completed. Check
30444b0f624SJung-uk Kim * expected error messages before cleanup or conversion.
30544b0f624SJung-uk Kim */
30644b0f624SJung-uk Kim AslCheckExpectedExceptions ();
30744b0f624SJung-uk Kim
30844b0f624SJung-uk Kim /* ASL-to-ASL+ conversion - Perform immediate disassembly */
30944b0f624SJung-uk Kim
31044b0f624SJung-uk Kim if (AslGbl_DoAslConversion)
31144b0f624SJung-uk Kim {
31244b0f624SJung-uk Kim /* re-initialize ACPICA subsystem for disassembler */
31344b0f624SJung-uk Kim
31444b0f624SJung-uk Kim Status = AdInitialize ();
31544b0f624SJung-uk Kim if (ACPI_FAILURE (Status))
31644b0f624SJung-uk Kim {
31744b0f624SJung-uk Kim return (Status);
31844b0f624SJung-uk Kim }
31944b0f624SJung-uk Kim
32044b0f624SJung-uk Kim /*
32144b0f624SJung-uk Kim * New input file is the output AML file from above.
32244b0f624SJung-uk Kim * New output is from the input ASL file from above.
32344b0f624SJung-uk Kim */
32444b0f624SJung-uk Kim AslGbl_OutputFilenamePrefix = AslGbl_Files[ASL_FILE_INPUT].Filename;
32544b0f624SJung-uk Kim AslGbl_Files[ASL_FILE_INPUT].Filename =
32644b0f624SJung-uk Kim AslGbl_Files[ASL_FILE_AML_OUTPUT].Filename;
32744b0f624SJung-uk Kim
32844b0f624SJung-uk Kim CvDbgPrint ("Output filename: %s\n", AslGbl_OutputFilenamePrefix);
32944b0f624SJung-uk Kim fprintf (stderr, "\n");
33044b0f624SJung-uk Kim
33144b0f624SJung-uk Kim AcpiGbl_DisasmFlag = TRUE;
33244b0f624SJung-uk Kim AslDoDisassembly ();
33344b0f624SJung-uk Kim AcpiGbl_DisasmFlag = FALSE;
33444b0f624SJung-uk Kim
33544b0f624SJung-uk Kim /* delete the AML file. This AML file should never be utilized by AML interpreters. */
33644b0f624SJung-uk Kim
33744b0f624SJung-uk Kim FlDeleteFile (ASL_FILE_AML_OUTPUT);
33844b0f624SJung-uk Kim }
33944b0f624SJung-uk Kim
34044b0f624SJung-uk Kim
341493deb39SJung-uk Kim CleanupAndExit:
34253289f6aSNate Lawson
343493deb39SJung-uk Kim UtFreeLineBuffers ();
344493deb39SJung-uk Kim AslParserCleanup ();
345493deb39SJung-uk Kim AcpiDmClearExternalFileList();
34644b0f624SJung-uk Kim (void) AcpiTerminate ();
34744b0f624SJung-uk Kim
34844b0f624SJung-uk Kim /* CmCleanupAndExit is intended for the compiler only */
34944b0f624SJung-uk Kim
35044b0f624SJung-uk Kim if (!AcpiGbl_DisasmFlag)
35144b0f624SJung-uk Kim {
352a009b7dcSJung-uk Kim ReturnStatus = CmCleanupAndExit ();
353493deb39SJung-uk Kim }
35453289f6aSNate Lawson
35544b0f624SJung-uk Kim
356493deb39SJung-uk Kim return (ReturnStatus);
35753289f6aSNate Lawson }
35853289f6aSNate Lawson
35953289f6aSNate Lawson
360042ff955SJung-uk Kim /******************************************************************************
361042ff955SJung-uk Kim *
362042ff955SJung-uk Kim * FUNCTION: AslSignalHandler
363042ff955SJung-uk Kim *
364042ff955SJung-uk Kim * PARAMETERS: Sig - Signal that invoked this handler
365042ff955SJung-uk Kim *
366042ff955SJung-uk Kim * RETURN: None
367042ff955SJung-uk Kim *
368af051161SJung-uk Kim * DESCRIPTION: Signal interrupt handler. Delete any intermediate files and
369af051161SJung-uk Kim * any output files that may be left in an indeterminate state.
370da9b0901SJung-uk Kim * Currently handles SIGINT (control-c).
371042ff955SJung-uk Kim *
372042ff955SJung-uk Kim *****************************************************************************/
373042ff955SJung-uk Kim
374042ff955SJung-uk Kim static void ACPI_SYSTEM_XFACE
AslSignalHandler(int Sig)375042ff955SJung-uk Kim AslSignalHandler (
376042ff955SJung-uk Kim int Sig)
377042ff955SJung-uk Kim {
378042ff955SJung-uk Kim UINT32 i;
379042ff955SJung-uk Kim
380042ff955SJung-uk Kim
381042ff955SJung-uk Kim signal (Sig, SIG_IGN);
382af051161SJung-uk Kim fflush (stdout);
383af051161SJung-uk Kim fflush (stderr);
384042ff955SJung-uk Kim
385af051161SJung-uk Kim switch (Sig)
386af051161SJung-uk Kim {
387af051161SJung-uk Kim case SIGINT:
388042ff955SJung-uk Kim
389af051161SJung-uk Kim printf ("\n" ASL_PREFIX "<Control-C>\n");
390af051161SJung-uk Kim break;
391af051161SJung-uk Kim
392af051161SJung-uk Kim default:
393af051161SJung-uk Kim
3944a38ee6dSJung-uk Kim printf (ASL_PREFIX "Unknown interrupt signal (%d)\n", Sig);
395da9b0901SJung-uk Kim break;
396af051161SJung-uk Kim }
397af051161SJung-uk Kim
398af051161SJung-uk Kim /*
399af051161SJung-uk Kim * Close all open files
400af051161SJung-uk Kim * Note: the .pre file is the same as the input source file
401af051161SJung-uk Kim */
402a009b7dcSJung-uk Kim if (AslGbl_Files)
403a009b7dcSJung-uk Kim {
4046f1f1a63SJung-uk Kim AslGbl_Files[ASL_FILE_PREPROCESSOR].Handle = NULL;
405042ff955SJung-uk Kim
406042ff955SJung-uk Kim for (i = ASL_FILE_INPUT; i < ASL_MAX_FILE_TYPE; i++)
407042ff955SJung-uk Kim {
408042ff955SJung-uk Kim FlCloseFile (i);
409042ff955SJung-uk Kim }
410042ff955SJung-uk Kim
411042ff955SJung-uk Kim /* Delete any output files */
412042ff955SJung-uk Kim
413042ff955SJung-uk Kim for (i = ASL_FILE_AML_OUTPUT; i < ASL_MAX_FILE_TYPE; i++)
414042ff955SJung-uk Kim {
415042ff955SJung-uk Kim FlDeleteFile (i);
416042ff955SJung-uk Kim }
417a009b7dcSJung-uk Kim }
418042ff955SJung-uk Kim
419af051161SJung-uk Kim printf (ASL_PREFIX "Terminating\n");
420ab71bbb7SJung-uk Kim _exit (0);
421042ff955SJung-uk Kim }
422042ff955SJung-uk Kim
423042ff955SJung-uk Kim
42453289f6aSNate Lawson /*******************************************************************************
42553289f6aSNate Lawson *
42653289f6aSNate Lawson * FUNCTION: AslInitialize
42753289f6aSNate Lawson *
42853289f6aSNate Lawson * PARAMETERS: None
42953289f6aSNate Lawson *
43053289f6aSNate Lawson * RETURN: None
43153289f6aSNate Lawson *
43253289f6aSNate Lawson * DESCRIPTION: Initialize compiler globals
43353289f6aSNate Lawson *
43453289f6aSNate Lawson ******************************************************************************/
43553289f6aSNate Lawson
436fba7fc7eSJung-uk Kim static void
AslInitialize(void)437fba7fc7eSJung-uk Kim AslInitialize (
438fba7fc7eSJung-uk Kim void)
43953289f6aSNate Lawson {
44070e6ab8fSJung-uk Kim AcpiGbl_DmOpt_Verbose = FALSE;
44170e6ab8fSJung-uk Kim
4422f6a1a81SJung-uk Kim /* Default integer width is 32 bits */
443f8146b88SJung-uk Kim
4442f6a1a81SJung-uk Kim AcpiGbl_IntegerBitWidth = 32;
4452f6a1a81SJung-uk Kim AcpiGbl_IntegerNybbleWidth = 8;
4462f6a1a81SJung-uk Kim AcpiGbl_IntegerByteWidth = 4;
44753289f6aSNate Lawson }
448