diff options
author | jkim <jkim@FreeBSD.org> | 2012-04-23 23:05:14 +0000 |
---|---|---|
committer | jkim <jkim@FreeBSD.org> | 2012-04-23 23:05:14 +0000 |
commit | 6ad6e5ad458430028d7210712b32b42a6a5bd27f (patch) | |
tree | 56922987e2cfefbddd9a8298beb2dce0ea965339 /sys/contrib/dev/acpica/compiler/prutils.c | |
parent | 22fae261d4ee03ee88b67242e0842711fe24b0f3 (diff) | |
parent | eb364ef2c90291c41e896d265d93fe21e48d02a7 (diff) | |
download | FreeBSD-src-6ad6e5ad458430028d7210712b32b42a6a5bd27f.zip FreeBSD-src-6ad6e5ad458430028d7210712b32b42a6a5bd27f.tar.gz |
Merge ACPICA 20120420.
Diffstat (limited to 'sys/contrib/dev/acpica/compiler/prutils.c')
-rw-r--r-- | sys/contrib/dev/acpica/compiler/prutils.c | 110 |
1 files changed, 14 insertions, 96 deletions
diff --git a/sys/contrib/dev/acpica/compiler/prutils.c b/sys/contrib/dev/acpica/compiler/prutils.c index f070458..0bbd8f5 100644 --- a/sys/contrib/dev/acpica/compiler/prutils.c +++ b/sys/contrib/dev/acpica/compiler/prutils.c @@ -49,100 +49,6 @@ ACPI_MODULE_NAME ("prutils") -/******************************************************************************* - * - * FUNCTION: PrSetLineNumber - * - * PARAMETERS: OriginalLineNumber - Line number in original source file, - * or include file - * PreprocessorLineNumber - Line number in the preprocessed file - * - * RETURN: None - * - * DESCRIPTION: Insert this mapping into the mapping data structure, for use - * in possible error/warning messages. - * - * Line number mapping functions. - * For error messages, we need to keep track of the line number in the - * original file, versus the preprocessed (.i) file. - * - ******************************************************************************/ - -void -PrSetLineNumber ( - UINT32 OriginalLineNumber, - UINT32 PreprocessorLineNumber) -{ - UINT32 Entry; - PR_LINE_MAPPING *Block; - UINT32 Index; - UINT32 i; - - - Entry = PreprocessorLineNumber / PR_LINES_PER_BLOCK; - Index = PreprocessorLineNumber % PR_LINES_PER_BLOCK; - Block = Gbl_MapBlockHead; - - for (i = 0; i < Entry; i++) - { - /* Allocate new mapping blocks as necessary */ - - if (!Block->Next) - { - Block->Next = UtLocalCalloc (sizeof (PR_LINE_MAPPING)); - Block->Next->Map = UtLocalCalloc (PR_LINES_PER_BLOCK * sizeof (UINT32)); - } - - Block = Block->Next; - } - - Block->Map[Index] = OriginalLineNumber; -} - - -/******************************************************************************* - * - * FUNCTION: PrGetLineNumber - * - * PARAMETERS: PreprocessorLineNumber - Line number in the preprocessed file - * (or, the "logical line number) - * - * RETURN: The line number in the original source file or include file. - * - * DESCRIPTION: Return the mapped value of a line number in the preprocessed - * source file to the actual line number in the original source - * file. - * - ******************************************************************************/ - -UINT32 -PrGetLineNumber ( - UINT32 PreprocessorLineNumber) -{ - UINT32 Entry; - PR_LINE_MAPPING *Block; - UINT32 Index; - UINT32 i; - - - Entry = PreprocessorLineNumber / PR_LINES_PER_BLOCK; - Index = PreprocessorLineNumber % PR_LINES_PER_BLOCK; - Block = Gbl_MapBlockHead; - - for (i = 0; i < Entry; i++) - { - Block = Block->Next; - if (!Block) - { - /* Bad error, should not happen */ - return (0); - } - } - - return (Block->Map[Index]); -} - - /****************************************************************************** * * FUNCTION: PrGetNextToken @@ -486,14 +392,20 @@ PrPushInputFileStack ( Gbl_InputFileList = Fnode; DbgPrint (ASL_PARSE_OUTPUT, PR_PREFIX_ID - "Push InputFile Stack, returning %p\n\n", + "Push InputFile Stack: handle %p\n\n", Gbl_CurrentLineNumber, InputFile); /* Reset the global line count and filename */ Gbl_Files[ASL_FILE_INPUT].Filename = Filename; Gbl_Files[ASL_FILE_INPUT].Handle = InputFile; - Gbl_CurrentLineNumber = 1; + Gbl_PreviousLineNumber = 0; + Gbl_CurrentLineNumber = 0; + + /* Emit a new #line directive for the include file */ + + FlPrintFile (ASL_FILE_PREPROCESSOR, "#line %u \"%s\"\n", + 1, Filename); } @@ -542,6 +454,12 @@ PrPopInputFileStack ( Gbl_Files[ASL_FILE_INPUT].Filename = Fnode->Filename; Gbl_Files[ASL_FILE_INPUT].Handle = Fnode->File; Gbl_CurrentLineNumber = Fnode->CurrentLineNumber; + 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); /* All done with this node */ |