freebsd-dev/source/compiler/aslcompile.c

1029 lines
26 KiB
C
Raw Normal View History

/******************************************************************************
*
* Module Name: aslcompile - top level compile module
*
*****************************************************************************/
2011-01-13 16:12:34 +00:00
/*
2014-01-15 00:10:20 +00:00
* Copyright (C) 2000 - 2014, Intel Corp.
* All rights reserved.
*
2011-01-13 16:12:34 +00:00
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions, and the following disclaimer,
* without modification.
* 2. Redistributions in binary form must reproduce at minimum a disclaimer
* substantially similar to the "NO WARRANTY" disclaimer below
* ("Disclaimer") and any redistribution must be conditioned upon
* including a substantially similar Disclaimer requirement for further
* binary redistribution.
* 3. Neither the names of the above-listed copyright holders nor the names
* of any contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* Alternatively, this software may be distributed under the terms of the
* GNU General Public License ("GPL") version 2 as published by the Free
* Software Foundation.
*
* NO WARRANTY
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
* IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGES.
*/
#include "aslcompiler.h"
2013-02-15 19:12:35 +00:00
#include "dtcompiler.h"
#include <stdio.h>
#include <time.h>
2010-10-13 20:35:34 +00:00
#include <acapps.h>
#define _COMPONENT ACPI_COMPILER
ACPI_MODULE_NAME ("aslcompile")
2012-11-14 22:20:16 +00:00
/*
* Main parser entry
* External is here in case the parser emits the same external in the
* generated header. (Newer versions of Bison)
*/
int
AslCompilerparse(
void);
/* Local prototypes */
static void
CmFlushSourceCode (
void);
2010-09-15 20:49:34 +00:00
static void
FlConsumeAnsiComment (
2012-05-19 05:44:32 +00:00
FILE *Handle,
ASL_FILE_STATUS *Status);
2010-09-15 20:49:34 +00:00
static void
FlConsumeNewComment (
2012-05-19 05:44:32 +00:00
FILE *Handle,
ASL_FILE_STATUS *Status);
2012-06-20 17:51:04 +00:00
static void
CmDumpAllEvents (
void);
/*******************************************************************************
*
* FUNCTION: AslCompilerSignon
*
* PARAMETERS: FileId - ID of the output file
*
* RETURN: None
*
* DESCRIPTION: Display compiler signon
*
******************************************************************************/
void
AslCompilerSignon (
UINT32 FileId)
{
char *Prefix = "";
2010-10-13 20:35:34 +00:00
char *UtilityName;
/* Set line prefix depending on the destination file type */
switch (FileId)
{
case ASL_FILE_ASM_SOURCE_OUTPUT:
case ASL_FILE_ASM_INCLUDE_OUTPUT:
Prefix = "; ";
break;
case ASL_FILE_HEX_OUTPUT:
if (Gbl_HexOutputFlag == HEX_OUTPUT_ASM)
{
Prefix = "; ";
}
2010-04-28 21:50:57 +00:00
else if ((Gbl_HexOutputFlag == HEX_OUTPUT_C) ||
(Gbl_HexOutputFlag == HEX_OUTPUT_ASL))
{
FlPrintFile (ASL_FILE_HEX_OUTPUT, "/*\n");
Prefix = " * ";
}
break;
case ASL_FILE_C_SOURCE_OUTPUT:
2013-04-04 21:18:57 +00:00
case ASL_FILE_C_OFFSET_OUTPUT:
case ASL_FILE_C_INCLUDE_OUTPUT:
Prefix = " * ";
break;
default:
2013-05-17 23:13:40 +00:00
/* No other output types supported */
2013-05-17 23:13:40 +00:00
break;
}
/* Running compiler or disassembler? */
if (Gbl_DisasmFlag)
{
2010-10-13 20:35:34 +00:00
UtilityName = AML_DISASSEMBLER_NAME;
}
else
{
2010-10-13 20:35:34 +00:00
UtilityName = ASL_COMPILER_NAME;
}
2010-10-13 20:35:34 +00:00
/* Compiler signon with copyright */
2010-10-13 20:35:34 +00:00
FlPrintFile (FileId, "%s\n", Prefix);
FlPrintFile (FileId, ACPI_COMMON_HEADER (UtilityName, Prefix));
}
/*******************************************************************************
*
* FUNCTION: AslCompilerFileHeader
*
* PARAMETERS: FileId - ID of the output file
*
* RETURN: None
*
* DESCRIPTION: Header used at the beginning of output files
*
******************************************************************************/
void
AslCompilerFileHeader (
UINT32 FileId)
{
struct tm *NewTime;
time_t Aclock;
char *Prefix = "";
/* Set line prefix depending on the destination file type */
switch (FileId)
{
case ASL_FILE_ASM_SOURCE_OUTPUT:
case ASL_FILE_ASM_INCLUDE_OUTPUT:
Prefix = "; ";
break;
case ASL_FILE_HEX_OUTPUT:
if (Gbl_HexOutputFlag == HEX_OUTPUT_ASM)
{
Prefix = "; ";
}
2010-04-28 21:50:57 +00:00
else if ((Gbl_HexOutputFlag == HEX_OUTPUT_C) ||
(Gbl_HexOutputFlag == HEX_OUTPUT_ASL))
{
Prefix = " * ";
}
break;
case ASL_FILE_C_SOURCE_OUTPUT:
2013-04-04 21:18:57 +00:00
case ASL_FILE_C_OFFSET_OUTPUT:
case ASL_FILE_C_INCLUDE_OUTPUT:
Prefix = " * ";
break;
default:
2013-05-17 23:13:40 +00:00
/* No other output types supported */
2013-05-17 23:13:40 +00:00
break;
}
/* Compilation header with timestamp */
(void) time (&Aclock);
NewTime = localtime (&Aclock);
FlPrintFile (FileId,
"%sCompilation of \"%s\" - %s%s\n",
Prefix, Gbl_Files[ASL_FILE_INPUT].Filename, asctime (NewTime),
Prefix);
switch (FileId)
{
case ASL_FILE_C_SOURCE_OUTPUT:
2013-04-04 21:18:57 +00:00
case ASL_FILE_C_OFFSET_OUTPUT:
case ASL_FILE_C_INCLUDE_OUTPUT:
2013-05-17 23:13:40 +00:00
FlPrintFile (FileId, " */\n");
break;
default:
2013-05-17 23:13:40 +00:00
/* Nothing to do for other output types */
2013-05-17 23:13:40 +00:00
break;
}
}
/*******************************************************************************
*
* FUNCTION: CmFlushSourceCode
*
* PARAMETERS: None
*
* RETURN: None
*
* DESCRIPTION: Read in any remaining source code after the parse tree
* has been constructed.
*
******************************************************************************/
static void
CmFlushSourceCode (
void)
{
char Buffer;
while (FlReadFile (ASL_FILE_INPUT, &Buffer, 1) != AE_ERROR)
{
2012-04-20 23:39:48 +00:00
AslInsertLineBuffer ((int) Buffer);
}
2012-04-20 23:39:48 +00:00
AslResetCurrentLineBuffer ();
}
/*******************************************************************************
*
* FUNCTION: FlConsume*
*
2012-05-19 05:44:32 +00:00
* PARAMETERS: Handle - Open input file
* Status - File current status struct
*
* RETURN: Number of lines consumed
*
* DESCRIPTION: Step over both types of comment during check for ascii chars
*
******************************************************************************/
2010-09-15 20:49:34 +00:00
static void
FlConsumeAnsiComment (
2012-05-19 05:44:32 +00:00
FILE *Handle,
ASL_FILE_STATUS *Status)
{
UINT8 Byte;
BOOLEAN ClosingComment = FALSE;
2012-11-14 22:20:16 +00:00
while (fread (&Byte, 1, 1, Handle) == 1)
{
/* Scan until comment close is found */
if (ClosingComment)
{
if (Byte == '/')
{
return;
}
if (Byte != '*')
{
/* Reset */
ClosingComment = FALSE;
}
}
else if (Byte == '*')
{
ClosingComment = TRUE;
}
/* Maintain line count */
if (Byte == 0x0A)
{
Status->Line++;
}
Status->Offset++;
}
}
2010-09-15 20:49:34 +00:00
static void
FlConsumeNewComment (
2012-05-19 05:44:32 +00:00
FILE *Handle,
ASL_FILE_STATUS *Status)
{
UINT8 Byte;
2012-11-14 22:20:16 +00:00
while (fread (&Byte, 1, 1, Handle) == 1)
{
Status->Offset++;
/* Comment ends at newline */
if (Byte == 0x0A)
{
Status->Line++;
return;
}
}
}
2013-02-15 19:12:35 +00:00
/*******************************************************************************
*
* FUNCTION: FlCheckForAcpiTable
*
* PARAMETERS: Handle - Open input file
*
* RETURN: Status
*
* DESCRIPTION: Determine if a file seems to be a binary ACPI table, via the
* following checks on what would be the table header:
* 0) File must be at least as long as an ACPI_TABLE_HEADER
* 1) The header length field must match the file size
* 2) Signature, OemId, OemTableId, AslCompilerId must be ASCII
*
******************************************************************************/
ACPI_STATUS
FlCheckForAcpiTable (
FILE *Handle)
{
ACPI_TABLE_HEADER Table;
UINT32 FileSize;
size_t Actual;
UINT32 i;
/* Read a potential table header */
Actual = fread (&Table, 1, sizeof (ACPI_TABLE_HEADER), Handle);
fseek (Handle, 0, SEEK_SET);
if (Actual < sizeof (ACPI_TABLE_HEADER))
{
return (AE_ERROR);
}
/* Header length field must match the file size */
FileSize = DtGetFileSize (Handle);
if (Table.Length != FileSize)
{
return (AE_ERROR);
}
/*
* These fields must be ASCII:
* Signature, OemId, OemTableId, AslCompilerId.
* We allow a NULL terminator in OemId and OemTableId.
*/
for (i = 0; i < ACPI_NAME_SIZE; i++)
{
if (!ACPI_IS_ASCII ((UINT8) Table.Signature[i]))
{
return (AE_ERROR);
}
if (!ACPI_IS_ASCII ((UINT8) Table.AslCompilerId[i]))
{
return (AE_ERROR);
}
}
for (i = 0; (i < ACPI_OEM_ID_SIZE) && (Table.OemId[i]); i++)
{
if (!ACPI_IS_ASCII ((UINT8) Table.OemId[i]))
{
return (AE_ERROR);
}
}
for (i = 0; (i < ACPI_OEM_TABLE_ID_SIZE) && (Table.OemTableId[i]); i++)
{
if (!ACPI_IS_ASCII ((UINT8) Table.OemTableId[i]))
{
return (AE_ERROR);
}
}
printf ("Binary file appears to be a valid ACPI table, disassembling\n");
return (AE_OK);
}
2003-12-09 02:45:16 +00:00
/*******************************************************************************
*
* FUNCTION: FlCheckForAscii
*
2012-05-19 05:44:32 +00:00
* PARAMETERS: Handle - Open input file
* Filename - Input filename
* DisplayErrors - TRUE if error messages desired
2003-12-09 02:45:16 +00:00
*
* RETURN: Status
2003-12-09 02:45:16 +00:00
*
* DESCRIPTION: Verify that the input file is entirely ASCII. Ignores characters
* within comments. Note: does not handle nested comments and does
* not handle comment delimiters within string literals. However,
* on the rare chance this happens and an invalid character is
* missed, the parser will catch the error by failing in some
* spectactular manner.
2003-12-09 02:45:16 +00:00
*
******************************************************************************/
2010-05-28 18:46:48 +00:00
ACPI_STATUS
2003-12-09 02:45:16 +00:00
FlCheckForAscii (
2012-05-19 05:44:32 +00:00
FILE *Handle,
char *Filename,
BOOLEAN DisplayErrors)
2003-12-09 02:45:16 +00:00
{
UINT8 Byte;
ACPI_SIZE BadBytes = 0;
BOOLEAN OpeningComment = FALSE;
ASL_FILE_STATUS Status;
2003-12-09 02:45:16 +00:00
Status.Line = 1;
Status.Offset = 0;
2003-12-09 02:45:16 +00:00
/* Read the entire file */
2012-11-14 22:20:16 +00:00
while (fread (&Byte, 1, 1, Handle) == 1)
2003-12-09 02:45:16 +00:00
{
/* Ignore comment fields (allow non-ascii within) */
if (OpeningComment)
{
/* Check for second comment open delimiter */
if (Byte == '*')
{
2012-05-19 05:44:32 +00:00
FlConsumeAnsiComment (Handle, &Status);
}
if (Byte == '/')
{
2012-05-19 05:44:32 +00:00
FlConsumeNewComment (Handle, &Status);
}
/* Reset */
OpeningComment = FALSE;
}
else if (Byte == '/')
{
OpeningComment = TRUE;
}
2003-12-09 02:45:16 +00:00
/* Check for an ASCII character */
if (!ACPI_IS_ASCII (Byte))
2003-12-09 02:45:16 +00:00
{
2012-05-19 05:44:32 +00:00
if ((BadBytes < 10) && (DisplayErrors))
2003-12-09 02:45:16 +00:00
{
AcpiOsPrintf (
"Non-ASCII character [0x%2.2X] found in line %u, file offset 0x%.2X\n",
Byte, Status.Line, Status.Offset);
2003-12-09 02:45:16 +00:00
}
2003-12-09 02:45:16 +00:00
BadBytes++;
}
/* Update line counter */
else if (Byte == 0x0A)
{
Status.Line++;
}
Status.Offset++;
2003-12-09 02:45:16 +00:00
}
/* Seek back to the beginning of the source file */
2012-05-19 05:44:32 +00:00
fseek (Handle, 0, SEEK_SET);
2003-12-09 02:45:16 +00:00
/* Were there any non-ASCII characters in the file? */
if (BadBytes)
{
2012-05-19 05:44:32 +00:00
if (DisplayErrors)
{
AcpiOsPrintf (
"%u non-ASCII characters found in input source text, could be a binary file\n",
BadBytes);
AslError (ASL_ERROR, ASL_MSG_NON_ASCII, NULL, Filename);
}
2003-12-09 02:45:16 +00:00
return (AE_BAD_CHARACTER);
}
2012-05-19 05:44:32 +00:00
/* File is OK (100% ASCII) */
2003-12-09 02:45:16 +00:00
return (AE_OK);
}
/*******************************************************************************
*
* FUNCTION: CmDoCompile
*
* PARAMETERS: None
*
* RETURN: Status (0 = OK)
*
* DESCRIPTION: This procedure performs the entire compile
*
******************************************************************************/
int
CmDoCompile (
void)
{
ACPI_STATUS Status;
UINT8 FullCompile;
UINT8 Event;
FullCompile = UtBeginEvent ("*** Total Compile time ***");
Event = UtBeginEvent ("Open input and output files");
UtEndEvent (Event);
2012-03-20 18:17:33 +00:00
Event = UtBeginEvent ("Preprocess input file");
2012-04-20 23:39:48 +00:00
if (Gbl_PreprocessFlag)
2012-03-20 18:17:33 +00:00
{
2012-04-20 23:39:48 +00:00
/* Preprocessor */
PrDoPreprocess ();
if (Gbl_PreprocessOnly)
{
UtEndEvent (Event);
CmCleanupAndExit ();
2012-10-19 18:47:57 +00:00
return (0);
2012-04-20 23:39:48 +00:00
}
2012-03-20 18:17:33 +00:00
}
2012-04-20 23:39:48 +00:00
UtEndEvent (Event);
2012-03-20 18:17:33 +00:00
/* Build the parse tree */
Event = UtBeginEvent ("Parse source code and build parse tree");
AslCompilerparse();
UtEndEvent (Event);
2013-08-23 18:01:58 +00:00
/* Check for parse errors */
2013-08-23 18:01:58 +00:00
Status = AslCheckForErrorExit ();
if (ACPI_FAILURE (Status))
{
fprintf (stderr, "Compiler aborting due to parser-detected syntax error(s)\n");
LsDumpParseTree ();
goto ErrorExit;
}
/* Did the parse tree get successfully constructed? */
if (!RootNode)
{
2012-04-20 23:39:48 +00:00
/*
* If there are no errors, then we have some sort of
* internal problem.
*/
2013-08-23 18:01:58 +00:00
AslError (ASL_ERROR, ASL_MSG_COMPILER_INTERNAL,
NULL, "- Could not resolve parse tree root node");
2012-04-20 23:39:48 +00:00
2012-03-20 18:17:33 +00:00
goto ErrorExit;
}
2013-08-23 18:01:58 +00:00
/* Flush out any remaining source after parse tree is complete */
Event = UtBeginEvent ("Flush source input");
CmFlushSourceCode ();
/* Optional parse tree dump, compiler debug output only */
LsDumpParseTree ();
OpcGetIntegerWidth (RootNode);
UtEndEvent (Event);
/* Pre-process parse tree for any operator transforms */
Event = UtBeginEvent ("Parse tree transforms");
DbgPrint (ASL_DEBUG_OUTPUT, "\nParse tree transforms\n\n");
TrWalkParseTree (RootNode, ASL_WALK_VISIT_DOWNWARD,
TrAmlTransformWalk, NULL, NULL);
UtEndEvent (Event);
/* Generate AML opcodes corresponding to the parse tokens */
Event = UtBeginEvent ("Generate AML opcodes");
DbgPrint (ASL_DEBUG_OUTPUT, "\nGenerating AML opcodes\n\n");
TrWalkParseTree (RootNode, ASL_WALK_VISIT_UPWARD, NULL,
OpcAmlOpcodeWalk, NULL);
UtEndEvent (Event);
/*
* Now that the input is parsed, we can open the AML output file.
* Note: by default, the name of this file comes from the table descriptor
* within the input file.
*/
Event = UtBeginEvent ("Open AML output file");
Status = FlOpenAmlOutputFile (Gbl_OutputFilenamePrefix);
2012-03-20 18:17:33 +00:00
UtEndEvent (Event);
if (ACPI_FAILURE (Status))
{
AePrintErrorLog (ASL_FILE_STDERR);
2012-10-19 18:47:57 +00:00
return (-1);
}
/* Interpret and generate all compile-time constants */
Event = UtBeginEvent ("Constant folding via AML interpreter");
DbgPrint (ASL_DEBUG_OUTPUT,
"\nInterpreting compile-time constant expressions\n\n");
TrWalkParseTree (RootNode, ASL_WALK_VISIT_DOWNWARD,
OpcAmlConstantWalk, NULL, NULL);
UtEndEvent (Event);
/* Update AML opcodes if necessary, after constant folding */
Event = UtBeginEvent ("Updating AML opcodes after constant folding");
DbgPrint (ASL_DEBUG_OUTPUT,
"\nUpdating AML opcodes after constant folding\n\n");
TrWalkParseTree (RootNode, ASL_WALK_VISIT_UPWARD,
NULL, OpcAmlOpcodeUpdateWalk, NULL);
UtEndEvent (Event);
/* Calculate all AML package lengths */
Event = UtBeginEvent ("Generate AML package lengths");
DbgPrint (ASL_DEBUG_OUTPUT, "\nGenerating Package lengths\n\n");
TrWalkParseTree (RootNode, ASL_WALK_VISIT_UPWARD, NULL,
LnPackageLengthWalk, NULL);
UtEndEvent (Event);
if (Gbl_ParseOnlyFlag)
{
2012-04-20 23:39:48 +00:00
AePrintErrorLog (ASL_FILE_STDERR);
UtDisplaySummary (ASL_FILE_STDERR);
if (Gbl_DebugFlag)
{
2012-04-20 23:39:48 +00:00
/* Print error summary to the stdout also */
2012-04-20 23:39:48 +00:00
AePrintErrorLog (ASL_FILE_STDOUT);
UtDisplaySummary (ASL_FILE_STDOUT);
}
2012-03-20 18:17:33 +00:00
UtEndEvent (FullCompile);
2012-10-19 18:47:57 +00:00
return (0);
}
/*
* Create an internal namespace and use it as a symbol table
*/
/* Namespace loading */
Event = UtBeginEvent ("Create ACPI Namespace");
Status = LdLoadNamespace (RootNode);
UtEndEvent (Event);
if (ACPI_FAILURE (Status))
{
2012-03-20 18:17:33 +00:00
goto ErrorExit;
}
/* Namespace cross-reference */
AslGbl_NamespaceEvent = UtBeginEvent ("Cross reference parse tree and Namespace");
2013-01-02 19:01:21 +00:00
Status = XfCrossReferenceNamespace ();
if (ACPI_FAILURE (Status))
{
2012-03-20 18:17:33 +00:00
goto ErrorExit;
}
/* Namespace - Check for non-referenced objects */
LkFindUnreferencedObjects ();
UtEndEvent (AslGbl_NamespaceEvent);
/*
2012-10-19 18:47:57 +00:00
* Semantic analysis. This can happen only after the
* namespace has been loaded and cross-referenced.
*
* part one - check control methods
*/
Event = UtBeginEvent ("Analyze control method return types");
AnalysisWalkInfo.MethodStack = NULL;
DbgPrint (ASL_DEBUG_OUTPUT, "\nSemantic analysis - Method analysis\n\n");
TrWalkParseTree (RootNode, ASL_WALK_VISIT_TWICE,
2013-01-02 19:01:21 +00:00
MtMethodAnalysisWalkBegin,
MtMethodAnalysisWalkEnd, &AnalysisWalkInfo);
UtEndEvent (Event);
/* Semantic error checking part two - typing of method returns */
Event = UtBeginEvent ("Determine object types returned by methods");
DbgPrint (ASL_DEBUG_OUTPUT, "\nSemantic analysis - Method typing\n\n");
2011-02-11 22:56:14 +00:00
TrWalkParseTree (RootNode, ASL_WALK_VISIT_UPWARD,
NULL, AnMethodTypingWalkEnd, NULL);
UtEndEvent (Event);
/* Semantic error checking part three - operand type checking */
Event = UtBeginEvent ("Analyze AML operand types");
DbgPrint (ASL_DEBUG_OUTPUT, "\nSemantic analysis - Operand type checking\n\n");
2011-02-11 22:56:14 +00:00
TrWalkParseTree (RootNode, ASL_WALK_VISIT_UPWARD,
NULL, AnOperandTypecheckWalkEnd, &AnalysisWalkInfo);
UtEndEvent (Event);
/* Semantic error checking part four - other miscellaneous checks */
Event = UtBeginEvent ("Miscellaneous analysis");
DbgPrint (ASL_DEBUG_OUTPUT, "\nSemantic analysis - miscellaneous\n\n");
2011-02-11 22:56:14 +00:00
TrWalkParseTree (RootNode, ASL_WALK_VISIT_DOWNWARD,
AnOtherSemanticAnalysisWalkBegin,
2011-02-11 22:56:14 +00:00
NULL, &AnalysisWalkInfo);
UtEndEvent (Event);
/* Calculate all AML package lengths */
Event = UtBeginEvent ("Finish AML package length generation");
DbgPrint (ASL_DEBUG_OUTPUT, "\nGenerating Package lengths\n\n");
TrWalkParseTree (RootNode, ASL_WALK_VISIT_UPWARD, NULL,
LnInitLengthsWalk, NULL);
TrWalkParseTree (RootNode, ASL_WALK_VISIT_UPWARD, NULL,
LnPackageLengthWalk, NULL);
UtEndEvent (Event);
/* Code generation - emit the AML */
Event = UtBeginEvent ("Generate AML code and write output files");
CgGenerateAmlOutput ();
UtEndEvent (Event);
Event = UtBeginEvent ("Write optional output files");
CmDoOutputFiles ();
UtEndEvent (Event);
UtEndEvent (FullCompile);
CmCleanupAndExit ();
2012-10-19 18:47:57 +00:00
return (0);
2012-03-20 18:17:33 +00:00
ErrorExit:
UtEndEvent (FullCompile);
CmCleanupAndExit ();
return (-1);
}
/*******************************************************************************
*
* FUNCTION: CmDoOutputFiles
*
* PARAMETERS: None
*
* RETURN: None.
*
* DESCRIPTION: Create all "listing" type files
*
******************************************************************************/
void
CmDoOutputFiles (
void)
{
/* Create listings and hex files */
LsDoListings ();
2013-01-02 19:01:21 +00:00
HxDoHexOutput ();
/* Dump the namespace to the .nsp file if requested */
2013-01-02 19:01:21 +00:00
(void) NsDisplayNamespace ();
}
/*******************************************************************************
*
2012-06-20 17:51:04 +00:00
* FUNCTION: CmDumpAllEvents
*
2012-06-20 17:51:04 +00:00
* PARAMETERS: None
*
* RETURN: None.
*
2012-06-20 17:51:04 +00:00
* DESCRIPTION: Dump all compiler events
*
******************************************************************************/
static void
2012-06-20 17:51:04 +00:00
CmDumpAllEvents (
void)
{
2012-06-20 17:51:04 +00:00
ASL_EVENT_INFO *Event;
UINT32 Delta;
UINT32 USec;
UINT32 MSec;
2012-06-20 17:51:04 +00:00
UINT32 i;
2012-06-20 17:51:04 +00:00
Event = AslGbl_Events;
DbgPrint (ASL_DEBUG_OUTPUT, "\n\nElapsed time for major events\n\n");
if (Gbl_CompileTimesFlag)
{
2012-06-20 17:51:04 +00:00
printf ("\nElapsed time for major events\n\n");
}
2012-06-20 17:51:04 +00:00
for (i = 0; i < AslGbl_NextEvent; i++)
{
if (Event->Valid)
{
/* Delta will be in 100-nanosecond units */
2012-06-20 17:51:04 +00:00
Delta = (UINT32) (Event->EndTime - Event->StartTime);
2013-01-02 19:01:21 +00:00
USec = Delta / ACPI_100NSEC_PER_USEC;
MSec = Delta / ACPI_100NSEC_PER_MSEC;
2012-06-20 17:51:04 +00:00
/* Round milliseconds up */
2013-01-02 19:01:21 +00:00
if ((USec - (MSec * ACPI_USEC_PER_MSEC)) >= 500)
2012-06-20 17:51:04 +00:00
{
MSec++;
}
DbgPrint (ASL_DEBUG_OUTPUT, "%8u usec %8u msec - %s\n",
USec, MSec, Event->EventName);
if (Gbl_CompileTimesFlag)
{
printf ("%8u usec %8u msec - %s\n",
USec, MSec, Event->EventName);
}
}
2012-06-20 17:51:04 +00:00
Event++;
}
}
/*******************************************************************************
*
* FUNCTION: CmCleanupAndExit
*
* PARAMETERS: None
*
* RETURN: None.
*
* DESCRIPTION: Close all open files and exit the compiler
*
******************************************************************************/
void
CmCleanupAndExit (
void)
{
UINT32 i;
2012-09-14 22:53:11 +00:00
BOOLEAN DeleteAmlFile = FALSE;
2012-04-20 23:39:48 +00:00
AePrintErrorLog (ASL_FILE_STDERR);
if (Gbl_DebugFlag)
{
2012-04-20 23:39:48 +00:00
/* Print error summary to stdout also */
2012-04-20 23:39:48 +00:00
AePrintErrorLog (ASL_FILE_STDOUT);
}
2012-06-20 17:51:04 +00:00
/* Emit compile times if enabled */
CmDumpAllEvents ();
if (Gbl_CompileTimesFlag)
{
printf ("\nMiscellaneous compile statistics\n\n");
printf ("%11u : %s\n", TotalParseNodes, "Parse nodes");
printf ("%11u : %s\n", Gbl_NsLookupCount, "Namespace searches");
printf ("%11u : %s\n", TotalNamedObjects, "Named objects");
printf ("%11u : %s\n", TotalMethods, "Control methods");
printf ("%11u : %s\n", TotalAllocations, "Memory Allocations");
printf ("%11u : %s\n", TotalAllocated, "Total allocated memory");
printf ("%11u : %s\n", TotalFolds, "Constant subtrees folded");
printf ("\n");
}
if (Gbl_NsLookupCount)
{
2010-05-28 18:46:48 +00:00
DbgPrint (ASL_DEBUG_OUTPUT,
"\n\nMiscellaneous compile statistics\n\n");
DbgPrint (ASL_DEBUG_OUTPUT,
"%32s : %u\n", "Total Namespace searches",
Gbl_NsLookupCount);
2010-05-28 18:46:48 +00:00
DbgPrint (ASL_DEBUG_OUTPUT,
"%32s : %u usec\n", "Time per search", ((UINT32)
(AslGbl_Events[AslGbl_NamespaceEvent].EndTime -
AslGbl_Events[AslGbl_NamespaceEvent].StartTime) / 10) /
Gbl_NsLookupCount);
}
if (Gbl_ExceptionCount[ASL_ERROR] > ASL_MAX_ERROR_COUNT)
{
2010-05-28 18:46:48 +00:00
printf ("\nMaximum error count (%u) exceeded\n",
ASL_MAX_ERROR_COUNT);
}
UtDisplaySummary (ASL_FILE_STDOUT);
2009-11-16 18:28:41 +00:00
2012-09-14 22:53:11 +00:00
/*
* We will delete the AML file if there are errors and the
* force AML output option has not been used.
*/
if ((Gbl_ExceptionCount[ASL_ERROR] > 0) && (!Gbl_IgnoreErrors) &&
Gbl_Files[ASL_FILE_AML_OUTPUT].Handle)
{
DeleteAmlFile = TRUE;
}
2009-11-16 18:28:41 +00:00
/* Close all open files */
2013-06-26 19:01:10 +00:00
/*
* Take care with the preprocessor file (.i), it might be the same
* as the "input" file, depending on where the compiler has terminated
* or aborted. Prevent attempt to close the same file twice in
* loop below.
*/
if (Gbl_Files[ASL_FILE_PREPROCESSOR].Handle ==
Gbl_Files[ASL_FILE_INPUT].Handle)
{
Gbl_Files[ASL_FILE_PREPROCESSOR].Handle = NULL;
}
/* Close the standard I/O files */
2012-03-20 18:17:33 +00:00
for (i = ASL_FILE_INPUT; i < ASL_MAX_FILE_TYPE; i++)
2009-11-16 18:28:41 +00:00
{
FlCloseFile (i);
}
2009-12-14 22:07:33 +00:00
/* Delete AML file if there are errors */
2012-09-14 22:53:11 +00:00
if (DeleteAmlFile)
2009-12-14 22:07:33 +00:00
{
2012-09-14 22:53:11 +00:00
FlDeleteFile (ASL_FILE_AML_OUTPUT);
2009-12-14 22:07:33 +00:00
}
2012-03-20 18:17:33 +00:00
/* Delete the preprocessor output file (.i) unless -li flag is set */
2012-04-20 23:39:48 +00:00
if (!Gbl_PreprocessorOutputFlag &&
2012-09-14 22:53:11 +00:00
Gbl_PreprocessFlag)
2012-03-20 18:17:33 +00:00
{
2012-09-14 22:53:11 +00:00
FlDeleteFile (ASL_FILE_PREPROCESSOR);
2012-03-20 18:17:33 +00:00
}
2009-12-14 22:07:33 +00:00
/*
* Delete intermediate ("combined") source file (if -ls flag not set)
2010-07-06 17:18:05 +00:00
* This file is created during normal ASL/AML compiles. It is not
* created by the data table compiler.
*
* If the -ls flag is set, then the .SRC file should not be deleted.
* In this case, Gbl_SourceOutputFlag is set to TRUE.
*
* Note: Handles are cleared by FlCloseFile above, so we look at the
* filename instead, to determine if the .SRC file was actually
* created.
2009-12-14 22:07:33 +00:00
*
* TBD: SourceOutput should be .TMP, then rename if we want to keep it?
*/
2012-09-14 22:53:11 +00:00
if (!Gbl_SourceOutputFlag)
2009-12-14 22:07:33 +00:00
{
2012-09-14 22:53:11 +00:00
FlDeleteFile (ASL_FILE_SOURCE_OUTPUT);
2009-12-14 22:07:33 +00:00
}
}