2012-03-20 18:17:33 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: prutils - Preprocessor utilities
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/*
|
2014-01-15 00:10:20 +00:00
|
|
|
* Copyright (C) 2000 - 2014, Intel Corp.
|
2012-03-20 18:17:33 +00:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* 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"
|
|
|
|
#include "dtcompiler.h"
|
|
|
|
|
|
|
|
|
|
|
|
#define _COMPONENT ASL_PREPROCESSOR
|
|
|
|
ACPI_MODULE_NAME ("prutils")
|
|
|
|
|
|
|
|
|
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: PrGetNextToken
|
|
|
|
*
|
|
|
|
* PARAMETERS: Buffer - Current line buffer
|
|
|
|
* MatchString - String with valid token delimiters
|
|
|
|
* Next - Set to next possible token in buffer
|
|
|
|
*
|
|
|
|
* RETURN: Next token (null-terminated). Modifies the input line.
|
|
|
|
* Remainder of line is stored in *Next.
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Local implementation of strtok() with local storage for the
|
|
|
|
* next pointer. Not only thread-safe, but allows multiple
|
|
|
|
* parsing of substrings such as expressions.
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
char *
|
|
|
|
PrGetNextToken (
|
|
|
|
char *Buffer,
|
|
|
|
char *MatchString,
|
|
|
|
char **Next)
|
|
|
|
{
|
|
|
|
char *TokenStart;
|
|
|
|
|
|
|
|
|
|
|
|
if (!Buffer)
|
|
|
|
{
|
|
|
|
/* Use Next if it is valid */
|
|
|
|
|
|
|
|
Buffer = *Next;
|
|
|
|
if (!(*Next))
|
|
|
|
{
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Skip any leading delimiters */
|
|
|
|
|
|
|
|
while (*Buffer)
|
|
|
|
{
|
|
|
|
if (strchr (MatchString, *Buffer))
|
|
|
|
{
|
|
|
|
Buffer++;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Anything left on the line? */
|
|
|
|
|
|
|
|
if (!(*Buffer))
|
|
|
|
{
|
|
|
|
*Next = NULL;
|
|
|
|
return (NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
TokenStart = Buffer;
|
|
|
|
|
|
|
|
/* Find the end of this token */
|
|
|
|
|
|
|
|
while (*Buffer)
|
|
|
|
{
|
|
|
|
if (strchr (MatchString, *Buffer))
|
|
|
|
{
|
|
|
|
*Buffer = 0;
|
|
|
|
*Next = Buffer+1;
|
|
|
|
if (!**Next)
|
|
|
|
{
|
|
|
|
*Next = NULL;
|
|
|
|
}
|
|
|
|
return (TokenStart);
|
|
|
|
}
|
|
|
|
Buffer++;
|
|
|
|
}
|
|
|
|
|
|
|
|
*Next = NULL;
|
|
|
|
return (TokenStart);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: PrError
|
|
|
|
*
|
|
|
|
* PARAMETERS: Level - Seriousness (Warning/error, etc.)
|
|
|
|
* MessageId - Index into global message buffer
|
|
|
|
* Column - Column in current line
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Preprocessor error reporting. Front end to AslCommonError2
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
PrError (
|
|
|
|
UINT8 Level,
|
2014-04-25 16:53:42 +00:00
|
|
|
UINT16 MessageId,
|
2012-03-20 18:17:33 +00:00
|
|
|
UINT32 Column)
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
AcpiOsPrintf ("%s (%u) : %s", Gbl_Files[ASL_FILE_INPUT].Filename,
|
|
|
|
Gbl_CurrentLineNumber, Gbl_CurrentLineBuffer);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
if (Column > 120)
|
|
|
|
{
|
|
|
|
Column = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* TBD: Need Logical line number? */
|
|
|
|
|
|
|
|
AslCommonError2 (Level, MessageId,
|
|
|
|
Gbl_CurrentLineNumber, Column,
|
|
|
|
Gbl_CurrentLineBuffer,
|
|
|
|
Gbl_Files[ASL_FILE_INPUT].Filename, "Preprocessor");
|
|
|
|
|
|
|
|
Gbl_PreprocessorError = TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: PrReplaceData
|
|
|
|
*
|
|
|
|
* PARAMETERS: Buffer - Original(target) buffer pointer
|
|
|
|
* LengthToRemove - Length to be removed from target buffer
|
|
|
|
* BufferToAdd - Data to be inserted into target buffer
|
|
|
|
* LengthToAdd - Length of BufferToAdd
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Generic buffer data replacement.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
PrReplaceData (
|
|
|
|
char *Buffer,
|
|
|
|
UINT32 LengthToRemove,
|
|
|
|
char *BufferToAdd,
|
|
|
|
UINT32 LengthToAdd)
|
|
|
|
{
|
|
|
|
UINT32 BufferLength;
|
|
|
|
|
|
|
|
|
|
|
|
/* Buffer is a string, so the length must include the terminating zero */
|
|
|
|
|
|
|
|
BufferLength = strlen (Buffer) + 1;
|
|
|
|
|
|
|
|
if (LengthToRemove != LengthToAdd)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Move some of the existing data
|
|
|
|
* 1) If adding more bytes than removing, make room for the new data
|
|
|
|
* 2) if removing more bytes than adding, delete the extra space
|
|
|
|
*/
|
|
|
|
if (LengthToRemove > 0)
|
|
|
|
{
|
|
|
|
memmove ((Buffer + LengthToAdd), (Buffer + LengthToRemove),
|
|
|
|
(BufferLength - LengthToRemove));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Now we can move in the new data */
|
|
|
|
|
|
|
|
if (LengthToAdd > 0)
|
|
|
|
{
|
|
|
|
memmove (Buffer, BufferToAdd, LengthToAdd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: PrOpenIncludeFile
|
|
|
|
*
|
|
|
|
* PARAMETERS: Filename - Filename or pathname for include file
|
|
|
|
*
|
|
|
|
* RETURN: None.
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Open an include file and push it on the input file stack.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
PrOpenIncludeFile (
|
|
|
|
char *Filename)
|
|
|
|
{
|
|
|
|
FILE *IncludeFile;
|
|
|
|
ASL_INCLUDE_DIR *NextDir;
|
|
|
|
|
|
|
|
|
2012-05-19 05:44:32 +00:00
|
|
|
/* Start the actual include file on the next line */
|
|
|
|
|
2012-03-20 18:17:33 +00:00
|
|
|
Gbl_CurrentLineOffset++;
|
|
|
|
|
|
|
|
/* Attempt to open the include file */
|
|
|
|
/* If the file specifies an absolute path, just open it */
|
|
|
|
|
|
|
|
if ((Filename[0] == '/') ||
|
|
|
|
(Filename[0] == '\\') ||
|
|
|
|
(Filename[1] == ':'))
|
|
|
|
{
|
|
|
|
IncludeFile = PrOpenIncludeWithPrefix ("", Filename);
|
|
|
|
if (!IncludeFile)
|
|
|
|
{
|
|
|
|
goto ErrorExit;
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The include filename is not an absolute path.
|
|
|
|
*
|
|
|
|
* First, search for the file within the "local" directory -- meaning
|
|
|
|
* the same directory that contains the source file.
|
|
|
|
*
|
|
|
|
* Construct the file pathname from the global directory name.
|
|
|
|
*/
|
|
|
|
IncludeFile = PrOpenIncludeWithPrefix (Gbl_DirectoryPath, Filename);
|
|
|
|
if (IncludeFile)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Second, search for the file within the (possibly multiple)
|
|
|
|
* directories specified by the -I option on the command line.
|
|
|
|
*/
|
|
|
|
NextDir = Gbl_IncludeDirList;
|
|
|
|
while (NextDir)
|
|
|
|
{
|
|
|
|
IncludeFile = PrOpenIncludeWithPrefix (NextDir->Dir, Filename);
|
|
|
|
if (IncludeFile)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
NextDir = NextDir->Next;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We could not open the include file after trying very hard */
|
|
|
|
|
|
|
|
ErrorExit:
|
|
|
|
sprintf (Gbl_MainTokenBuffer, "%s, %s", Filename, strerror (errno));
|
|
|
|
PrError (ASL_ERROR, ASL_MSG_INCLUDE_FILE_OPEN, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: FlOpenIncludeWithPrefix
|
|
|
|
*
|
|
|
|
* PARAMETERS: PrefixDir - Prefix directory pathname. Can be a zero
|
|
|
|
* length string.
|
|
|
|
* Filename - The include filename from the source ASL.
|
|
|
|
*
|
|
|
|
* RETURN: Valid file descriptor if successful. Null otherwise.
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Open an include file and push it on the input file stack.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
FILE *
|
|
|
|
PrOpenIncludeWithPrefix (
|
|
|
|
char *PrefixDir,
|
|
|
|
char *Filename)
|
|
|
|
{
|
|
|
|
FILE *IncludeFile;
|
|
|
|
char *Pathname;
|
|
|
|
|
|
|
|
|
|
|
|
/* Build the full pathname to the file */
|
|
|
|
|
2012-05-19 05:44:32 +00:00
|
|
|
Pathname = FlMergePathnames (PrefixDir, Filename);
|
2012-03-20 18:17:33 +00:00
|
|
|
|
2012-05-19 05:44:32 +00:00
|
|
|
DbgPrint (ASL_PARSE_OUTPUT, PR_PREFIX_ID
|
|
|
|
"Include: Opening file - \"%s\"\n",
|
2012-03-20 18:17:33 +00:00
|
|
|
Gbl_CurrentLineNumber, Pathname);
|
|
|
|
|
|
|
|
/* Attempt to open the file, push if successful */
|
|
|
|
|
|
|
|
IncludeFile = fopen (Pathname, "r");
|
2012-11-14 22:20:16 +00:00
|
|
|
if (!IncludeFile)
|
2012-03-20 18:17:33 +00:00
|
|
|
{
|
2012-11-14 22:20:16 +00:00
|
|
|
fprintf (stderr, "Could not open include file %s\n", Pathname);
|
|
|
|
return (NULL);
|
2012-03-20 18:17:33 +00:00
|
|
|
}
|
|
|
|
|
2012-11-14 22:20:16 +00:00
|
|
|
/* Push the include file on the open input file stack */
|
|
|
|
|
|
|
|
PrPushInputFileStack (IncludeFile, Pathname);
|
|
|
|
return (IncludeFile);
|
2012-03-20 18:17:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AslPushInputFileStack
|
|
|
|
*
|
|
|
|
* PARAMETERS: InputFile - Open file pointer
|
|
|
|
* Filename - Name of the file
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Push the InputFile onto the file stack, and point the parser
|
|
|
|
* to this file. Called when an include file is successfully
|
|
|
|
* opened.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
void
|
|
|
|
PrPushInputFileStack (
|
|
|
|
FILE *InputFile,
|
|
|
|
char *Filename)
|
|
|
|
{
|
|
|
|
PR_FILE_NODE *Fnode;
|
|
|
|
|
|
|
|
|
|
|
|
/* Save the current state in an Fnode */
|
|
|
|
|
|
|
|
Fnode = UtLocalCalloc (sizeof (PR_FILE_NODE));
|
|
|
|
|
|
|
|
Fnode->File = Gbl_Files[ASL_FILE_INPUT].Handle;
|
|
|
|
Fnode->Next = Gbl_InputFileList;
|
|
|
|
Fnode->Filename = Gbl_Files[ASL_FILE_INPUT].Filename;
|
|
|
|
Fnode->CurrentLineNumber = Gbl_CurrentLineNumber;
|
|
|
|
|
|
|
|
/* Push it on the stack */
|
|
|
|
|
|
|
|
Gbl_InputFileList = Fnode;
|
|
|
|
|
|
|
|
DbgPrint (ASL_PARSE_OUTPUT, PR_PREFIX_ID
|
2012-04-20 23:39:48 +00:00
|
|
|
"Push InputFile Stack: handle %p\n\n",
|
2012-03-20 18:17:33 +00:00
|
|
|
Gbl_CurrentLineNumber, InputFile);
|
|
|
|
|
|
|
|
/* Reset the global line count and filename */
|
|
|
|
|
2014-09-11 21:38:09 +00:00
|
|
|
Gbl_Files[ASL_FILE_INPUT].Filename =
|
|
|
|
UtStringCacheCalloc (strlen (Filename) + 1);
|
|
|
|
strcpy (Gbl_Files[ASL_FILE_INPUT].Filename, Filename);
|
|
|
|
|
2012-03-20 18:17:33 +00:00
|
|
|
Gbl_Files[ASL_FILE_INPUT].Handle = InputFile;
|
2012-04-20 23:39:48 +00:00
|
|
|
Gbl_PreviousLineNumber = 0;
|
|
|
|
Gbl_CurrentLineNumber = 0;
|
|
|
|
|
|
|
|
/* Emit a new #line directive for the include file */
|
|
|
|
|
2014-09-11 21:38:09 +00:00
|
|
|
FlPrintFile (ASL_FILE_PREPROCESSOR, "#line %u \"%s\"\n", 1, Filename);
|
2012-03-20 18:17:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: AslPopInputFileStack
|
|
|
|
*
|
|
|
|
* PARAMETERS: None
|
|
|
|
*
|
|
|
|
* RETURN: 0 if a node was popped, -1 otherwise
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Pop the top of the input file stack and point the parser to
|
2012-10-19 18:47:57 +00:00
|
|
|
* the saved parse buffer contained in the fnode. Also, set the
|
|
|
|
* global line counters to the saved values. This function is
|
2012-03-20 18:17:33 +00:00
|
|
|
* called when an include file reaches EOF.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
BOOLEAN
|
|
|
|
PrPopInputFileStack (
|
|
|
|
void)
|
|
|
|
{
|
|
|
|
PR_FILE_NODE *Fnode;
|
|
|
|
|
|
|
|
|
|
|
|
Fnode = Gbl_InputFileList;
|
|
|
|
DbgPrint (ASL_PARSE_OUTPUT, "\n" PR_PREFIX_ID
|
|
|
|
"Pop InputFile Stack, Fnode %p\n\n",
|
|
|
|
Gbl_CurrentLineNumber, Fnode);
|
|
|
|
|
|
|
|
if (!Fnode)
|
|
|
|
{
|
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Close the current include file */
|
|
|
|
|
|
|
|
fclose (Gbl_Files[ASL_FILE_INPUT].Handle);
|
|
|
|
|
|
|
|
/* Update the top-of-stack */
|
|
|
|
|
|
|
|
Gbl_InputFileList = Fnode->Next;
|
|
|
|
|
|
|
|
/* Reset global line counter and filename */
|
|
|
|
|
|
|
|
Gbl_Files[ASL_FILE_INPUT].Filename = Fnode->Filename;
|
|
|
|
Gbl_Files[ASL_FILE_INPUT].Handle = Fnode->File;
|
|
|
|
Gbl_CurrentLineNumber = Fnode->CurrentLineNumber;
|
2012-04-20 23:39:48 +00:00
|
|
|
Gbl_PreviousLineNumber = 0;
|
|
|
|
|
|
|
|
/* Emit a new #line directive after the include file */
|
|
|
|
|
|
|
|
FlPrintFile (ASL_FILE_PREPROCESSOR, "#line %u \"%s\"\n",
|
|
|
|
Gbl_CurrentLineNumber + 1, Fnode->Filename);
|
2012-03-20 18:17:33 +00:00
|
|
|
|
|
|
|
/* All done with this node */
|
|
|
|
|
|
|
|
ACPI_FREE (Fnode);
|
|
|
|
return (TRUE);
|
|
|
|
}
|