2003-08-07 16:38:31 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
|
|
|
* Module Name: asllisting - Listing file generation
|
|
|
|
*
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2011-01-13 16:12:34 +00:00
|
|
|
/*
|
2014-01-15 00:10:20 +00:00
|
|
|
* Copyright (C) 2000 - 2014, Intel Corp.
|
2003-08-07 16:38:31 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2009-06-01 19:24:26 +00:00
|
|
|
#include "aslcompiler.h"
|
2003-08-07 16:38:31 +00:00
|
|
|
#include "aslcompiler.y.h"
|
2009-06-01 19:24:26 +00:00
|
|
|
#include "amlcode.h"
|
|
|
|
#include "acparser.h"
|
|
|
|
#include "acnamesp.h"
|
2003-08-07 16:38:31 +00:00
|
|
|
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
#define _COMPONENT ACPI_COMPILER
|
|
|
|
ACPI_MODULE_NAME ("asllisting")
|
2003-08-07 16:38:31 +00:00
|
|
|
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
/* Local prototypes */
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
static void
|
2013-04-04 21:18:57 +00:00
|
|
|
LsGenerateListing (
|
|
|
|
UINT32 FileId);
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
static ACPI_STATUS
|
|
|
|
LsAmlListingWalk (
|
|
|
|
ACPI_PARSE_OBJECT *Op,
|
|
|
|
UINT32 Level,
|
|
|
|
void *Context);
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
static ACPI_STATUS
|
|
|
|
LsTreeWriteWalk (
|
|
|
|
ACPI_PARSE_OBJECT *Op,
|
|
|
|
UINT32 Level,
|
|
|
|
void *Context);
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
static void
|
|
|
|
LsWriteNodeToListing (
|
|
|
|
ACPI_PARSE_OBJECT *Op,
|
|
|
|
UINT32 FileId);
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
static void
|
|
|
|
LsFinishSourceListing (
|
|
|
|
UINT32 FileId);
|
2003-08-07 16:38:31 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2013-04-04 21:18:57 +00:00
|
|
|
* FUNCTION: LsDoListings
|
2003-08-07 16:38:31 +00:00
|
|
|
*
|
2013-04-04 21:18:57 +00:00
|
|
|
* PARAMETERS: None. Examines the various output file global flags.
|
2003-08-07 16:38:31 +00:00
|
|
|
*
|
2013-04-04 21:18:57 +00:00
|
|
|
* RETURN: None
|
2003-08-07 16:38:31 +00:00
|
|
|
*
|
2013-04-04 21:18:57 +00:00
|
|
|
* DESCRIPTION: Generate all requested listing files.
|
2003-08-07 16:38:31 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
void
|
|
|
|
LsDoListings (
|
|
|
|
void)
|
2003-08-07 16:38:31 +00:00
|
|
|
{
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
if (Gbl_C_OutputFlag)
|
2013-01-17 21:32:03 +00:00
|
|
|
{
|
2013-04-04 21:18:57 +00:00
|
|
|
LsGenerateListing (ASL_FILE_C_SOURCE_OUTPUT);
|
2013-01-17 21:32:03 +00:00
|
|
|
}
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
if (Gbl_ListingFlag)
|
2003-08-07 16:38:31 +00:00
|
|
|
{
|
2013-04-04 21:18:57 +00:00
|
|
|
LsGenerateListing (ASL_FILE_LISTING_OUTPUT);
|
2003-08-07 16:38:31 +00:00
|
|
|
}
|
2013-04-04 21:18:57 +00:00
|
|
|
|
|
|
|
if (Gbl_AsmOutputFlag)
|
2003-08-07 16:38:31 +00:00
|
|
|
{
|
2013-04-04 21:18:57 +00:00
|
|
|
LsGenerateListing (ASL_FILE_ASM_SOURCE_OUTPUT);
|
2003-08-07 16:38:31 +00:00
|
|
|
}
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
if (Gbl_C_IncludeOutputFlag)
|
2003-08-07 16:38:31 +00:00
|
|
|
{
|
2013-04-04 21:18:57 +00:00
|
|
|
LsGenerateListing (ASL_FILE_C_INCLUDE_OUTPUT);
|
2003-08-07 16:38:31 +00:00
|
|
|
}
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
if (Gbl_AsmIncludeOutputFlag)
|
|
|
|
{
|
|
|
|
LsGenerateListing (ASL_FILE_ASM_INCLUDE_OUTPUT);
|
2003-08-07 16:38:31 +00:00
|
|
|
}
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
if (Gbl_C_OffsetTableFlag)
|
2003-08-07 16:38:31 +00:00
|
|
|
{
|
2013-04-04 21:18:57 +00:00
|
|
|
LsGenerateListing (ASL_FILE_C_OFFSET_OUTPUT);
|
|
|
|
}
|
2003-08-07 16:38:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2013-04-04 21:18:57 +00:00
|
|
|
* FUNCTION: LsGenerateListing
|
2003-08-07 16:38:31 +00:00
|
|
|
*
|
2013-04-04 21:18:57 +00:00
|
|
|
* PARAMETERS: FileId - ID of listing file
|
2003-08-07 16:38:31 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2013-04-04 21:18:57 +00:00
|
|
|
* DESCRIPTION: Generate a listing file. This can be one of the several types
|
|
|
|
* of "listings" supported.
|
2003-08-07 16:38:31 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
static void
|
2013-04-04 21:18:57 +00:00
|
|
|
LsGenerateListing (
|
2003-08-07 16:38:31 +00:00
|
|
|
UINT32 FileId)
|
|
|
|
{
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
/* Start at the beginning of both the source and AML files */
|
|
|
|
|
|
|
|
FlSeekFile (ASL_FILE_SOURCE_OUTPUT, 0);
|
|
|
|
FlSeekFile (ASL_FILE_AML_OUTPUT, 0);
|
|
|
|
Gbl_SourceLine = 0;
|
|
|
|
Gbl_CurrentHexColumn = 0;
|
|
|
|
LsPushNode (Gbl_Files[ASL_FILE_INPUT].Filename);
|
|
|
|
|
|
|
|
if (FileId == ASL_FILE_C_OFFSET_OUTPUT)
|
2003-08-07 16:38:31 +00:00
|
|
|
{
|
2013-05-17 23:13:40 +00:00
|
|
|
Gbl_CurrentAmlOffset = 0;
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
/* Offset table file has a special header and footer */
|
|
|
|
|
|
|
|
LsDoOffsetTableHeader (FileId);
|
|
|
|
|
|
|
|
TrWalkParseTree (RootNode, ASL_WALK_VISIT_DOWNWARD, LsAmlOffsetWalk,
|
|
|
|
NULL, (void *) ACPI_TO_POINTER (FileId));
|
|
|
|
LsDoOffsetTableFooter (FileId);
|
2003-08-07 16:38:31 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
/* Process all parse nodes */
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
TrWalkParseTree (RootNode, ASL_WALK_VISIT_DOWNWARD, LsAmlListingWalk,
|
|
|
|
NULL, (void *) ACPI_TO_POINTER (FileId));
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
/* Final processing */
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
LsFinishSourceListing (FileId);
|
|
|
|
}
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: LsAmlListingWalk
|
|
|
|
*
|
|
|
|
* PARAMETERS: ASL_WALK_CALLBACK
|
|
|
|
*
|
|
|
|
* RETURN: Status
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Process one node during a listing file generation.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
static ACPI_STATUS
|
|
|
|
LsAmlListingWalk (
|
|
|
|
ACPI_PARSE_OBJECT *Op,
|
|
|
|
UINT32 Level,
|
|
|
|
void *Context)
|
|
|
|
{
|
|
|
|
UINT8 FileByte;
|
|
|
|
UINT32 i;
|
|
|
|
UINT32 FileId = (UINT32) ACPI_TO_INTEGER (Context);
|
|
|
|
|
|
|
|
|
|
|
|
LsWriteNodeToListing (Op, FileId);
|
|
|
|
|
|
|
|
if (Op->Asl.CompileFlags & NODE_IS_RESOURCE_DATA)
|
2003-08-07 16:38:31 +00:00
|
|
|
{
|
2013-04-04 21:18:57 +00:00
|
|
|
/* Buffer is a resource template, don't dump the data all at once */
|
|
|
|
|
|
|
|
return (AE_OK);
|
2003-08-07 16:38:31 +00:00
|
|
|
}
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
/* Write the hex bytes to the listing file(s) (if requested) */
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
for (i = 0; i < Op->Asl.FinalAmlLength; i++)
|
2003-08-07 16:38:31 +00:00
|
|
|
{
|
2013-04-04 21:18:57 +00:00
|
|
|
if (ACPI_FAILURE (FlReadFile (ASL_FILE_AML_OUTPUT, &FileByte, 1)))
|
|
|
|
{
|
|
|
|
FlFileError (ASL_FILE_AML_OUTPUT, ASL_MSG_READ);
|
|
|
|
AslAbort ();
|
|
|
|
}
|
|
|
|
LsWriteListingHexBytes (&FileByte, 1, FileId);
|
2003-08-07 16:38:31 +00:00
|
|
|
}
|
2013-04-04 21:18:57 +00:00
|
|
|
|
|
|
|
return (AE_OK);
|
2003-08-07 16:38:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
2013-04-04 21:18:57 +00:00
|
|
|
* FUNCTION: LsDumpParseTree, LsTreeWriteWalk
|
2003-08-07 16:38:31 +00:00
|
|
|
*
|
2013-04-04 21:18:57 +00:00
|
|
|
* PARAMETERS: None
|
2003-08-07 16:38:31 +00:00
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
2013-04-04 21:18:57 +00:00
|
|
|
* DESCRIPTION: Dump entire parse tree, for compiler debug only
|
2003-08-07 16:38:31 +00:00
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
void
|
|
|
|
LsDumpParseTree (
|
|
|
|
void)
|
2003-08-07 16:38:31 +00:00
|
|
|
{
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
if (!Gbl_DebugFlag)
|
2003-08-07 16:38:31 +00:00
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
DbgPrint (ASL_TREE_OUTPUT, "\nOriginal parse tree from parser:\n\n");
|
|
|
|
TrWalkParseTree (RootNode, ASL_WALK_VISIT_DOWNWARD,
|
|
|
|
LsTreeWriteWalk, NULL, NULL);
|
|
|
|
}
|
2005-11-01 22:11:18 +00:00
|
|
|
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
static ACPI_STATUS
|
|
|
|
LsTreeWriteWalk (
|
|
|
|
ACPI_PARSE_OBJECT *Op,
|
|
|
|
UINT32 Level,
|
|
|
|
void *Context)
|
|
|
|
{
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
/* Debug output */
|
2005-11-01 22:11:18 +00:00
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
DbgPrint (ASL_TREE_OUTPUT,
|
|
|
|
"%5.5d [%2d]", Op->Asl.LogicalLineNumber, Level);
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2013-04-04 21:18:57 +00:00
|
|
|
UtPrintFormattedName (Op->Asl.ParseOpcode, Level);
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2013-05-17 23:13:40 +00:00
|
|
|
DbgPrint (ASL_TREE_OUTPUT, " (%.4X)\n", Op->Asl.ParseOpcode);
|
2013-04-04 21:18:57 +00:00
|
|
|
return (AE_OK);
|
2003-08-07 16:38:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: LsWriteNodeToListing
|
|
|
|
*
|
2013-04-04 21:18:57 +00:00
|
|
|
* PARAMETERS: Op - Parse node to write to the listing file.
|
2003-08-07 16:38:31 +00:00
|
|
|
* FileId - ID of current listing file
|
|
|
|
*
|
|
|
|
* RETURN: None.
|
|
|
|
*
|
2012-10-19 18:47:57 +00:00
|
|
|
* DESCRIPTION: Write "a node" to the listing file. This means to
|
2003-08-07 16:38:31 +00:00
|
|
|
* 1) Write out all of the source text associated with the node
|
|
|
|
* 2) Write out all of the AML bytes associated with the node
|
|
|
|
* 3) Write any compiler exceptions associated with the node
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
static void
|
2003-08-07 16:38:31 +00:00
|
|
|
LsWriteNodeToListing (
|
|
|
|
ACPI_PARSE_OBJECT *Op,
|
|
|
|
UINT32 FileId)
|
|
|
|
{
|
|
|
|
const ACPI_OPCODE_INFO *OpInfo;
|
|
|
|
UINT32 OpClass;
|
|
|
|
char *Pathname;
|
|
|
|
UINT32 Length;
|
|
|
|
UINT32 i;
|
|
|
|
|
|
|
|
|
|
|
|
OpInfo = AcpiPsGetOpcodeInfo (Op->Asl.AmlOpcode);
|
|
|
|
OpClass = OpInfo->Class;
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
/* TBD: clean this up with a single flag that says:
|
|
|
|
* I start a named output block
|
|
|
|
*/
|
2003-08-07 16:38:31 +00:00
|
|
|
if (FileId == ASL_FILE_C_SOURCE_OUTPUT)
|
|
|
|
{
|
|
|
|
switch (Op->Asl.ParseOpcode)
|
|
|
|
{
|
|
|
|
case PARSEOP_DEFINITIONBLOCK:
|
|
|
|
case PARSEOP_METHODCALL:
|
|
|
|
case PARSEOP_INCLUDE:
|
|
|
|
case PARSEOP_INCLUDE_END:
|
|
|
|
case PARSEOP_DEFAULT_ARG:
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2003-08-07 16:38:31 +00:00
|
|
|
switch (OpClass)
|
|
|
|
{
|
|
|
|
case AML_CLASS_NAMED_OBJECT:
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2003-08-07 16:38:31 +00:00
|
|
|
switch (Op->Asl.AmlOpcode)
|
|
|
|
{
|
|
|
|
case AML_SCOPE_OP:
|
|
|
|
case AML_ALIAS_OP:
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2003-08-07 16:38:31 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2003-08-07 16:38:31 +00:00
|
|
|
if (Op->Asl.ExternalName)
|
|
|
|
{
|
|
|
|
LsFlushListingBuffer (FileId);
|
|
|
|
FlPrintFile (FileId, " };\n");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2003-08-07 16:38:31 +00:00
|
|
|
/* Don't care about other objects */
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2003-08-07 16:38:31 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* These cases do not have a corresponding AML opcode */
|
|
|
|
|
|
|
|
switch (Op->Asl.ParseOpcode)
|
|
|
|
{
|
|
|
|
case PARSEOP_DEFINITIONBLOCK:
|
|
|
|
|
|
|
|
LsWriteSourceLines (Op->Asl.EndLine, Op->Asl.EndLogicalLine, FileId);
|
|
|
|
|
|
|
|
/* Use the table Signature and TableId to build a unique name */
|
|
|
|
|
|
|
|
if (FileId == ASL_FILE_ASM_SOURCE_OUTPUT)
|
|
|
|
{
|
2005-11-01 22:11:18 +00:00
|
|
|
FlPrintFile (FileId,
|
|
|
|
"%s_%s_Header \\\n",
|
2003-08-07 16:38:31 +00:00
|
|
|
Gbl_TableSignature, Gbl_TableId);
|
|
|
|
}
|
|
|
|
if (FileId == ASL_FILE_C_SOURCE_OUTPUT)
|
|
|
|
{
|
2005-11-01 22:11:18 +00:00
|
|
|
FlPrintFile (FileId,
|
|
|
|
" unsigned char %s_%s_Header [] =\n {\n",
|
2003-08-07 16:38:31 +00:00
|
|
|
Gbl_TableSignature, Gbl_TableId);
|
|
|
|
}
|
|
|
|
if (FileId == ASL_FILE_ASM_INCLUDE_OUTPUT)
|
|
|
|
{
|
2005-11-01 22:11:18 +00:00
|
|
|
FlPrintFile (FileId,
|
|
|
|
"extrn %s_%s_Header : byte\n",
|
2003-08-07 16:38:31 +00:00
|
|
|
Gbl_TableSignature, Gbl_TableId);
|
|
|
|
}
|
|
|
|
if (FileId == ASL_FILE_C_INCLUDE_OUTPUT)
|
|
|
|
{
|
2005-11-01 22:11:18 +00:00
|
|
|
FlPrintFile (FileId,
|
|
|
|
"extern unsigned char %s_%s_Header [];\n",
|
2003-08-07 16:38:31 +00:00
|
|
|
Gbl_TableSignature, Gbl_TableId);
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
case PARSEOP_METHODCALL:
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
LsWriteSourceLines (Op->Asl.LineNumber, Op->Asl.LogicalLineNumber,
|
|
|
|
FileId);
|
2003-08-07 16:38:31 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
case PARSEOP_INCLUDE:
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
/* Flush everything up to and including the include source line */
|
|
|
|
|
|
|
|
LsWriteSourceLines (Op->Asl.LineNumber, Op->Asl.LogicalLineNumber,
|
|
|
|
FileId);
|
|
|
|
|
|
|
|
/* Create a new listing node and push it */
|
2003-08-07 16:38:31 +00:00
|
|
|
|
|
|
|
LsPushNode (Op->Asl.Child->Asl.Value.String);
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
case PARSEOP_INCLUDE_END:
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
/* Flush out the rest of the include file */
|
2003-08-07 16:38:31 +00:00
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
LsWriteSourceLines (Op->Asl.LineNumber, Op->Asl.LogicalLineNumber,
|
|
|
|
FileId);
|
|
|
|
|
|
|
|
/* Pop off this listing node and go back to the parent file */
|
|
|
|
|
|
|
|
(void) LsPopNode ();
|
2003-08-07 16:38:31 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
case PARSEOP_DEFAULT_ARG:
|
2007-03-22 17:24:05 +00:00
|
|
|
|
|
|
|
if (Op->Asl.CompileFlags & NODE_IS_RESOURCE_DESC)
|
|
|
|
{
|
|
|
|
LsWriteSourceLines (Op->Asl.LineNumber, Op->Asl.EndLogicalLine,
|
|
|
|
FileId);
|
|
|
|
}
|
2003-08-07 16:38:31 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
default:
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2003-08-07 16:38:31 +00:00
|
|
|
/* All other opcodes have an AML opcode */
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2003-08-07 16:38:31 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Otherwise, we look at the AML opcode because we can
|
|
|
|
* switch on the opcode type, getting an entire class
|
|
|
|
* at once
|
|
|
|
*/
|
|
|
|
switch (OpClass)
|
|
|
|
{
|
|
|
|
case AML_CLASS_ARGUMENT: /* argument type only */
|
|
|
|
case AML_CLASS_INTERNAL:
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_CLASS_NAMED_OBJECT:
|
|
|
|
|
|
|
|
switch (Op->Asl.AmlOpcode)
|
|
|
|
{
|
|
|
|
case AML_FIELD_OP:
|
|
|
|
case AML_INDEX_FIELD_OP:
|
|
|
|
case AML_BANK_FIELD_OP:
|
2005-11-01 22:11:18 +00:00
|
|
|
/*
|
|
|
|
* For fields, we want to dump all the AML after the
|
|
|
|
* entire definition
|
|
|
|
*/
|
|
|
|
LsWriteSourceLines (Op->Asl.EndLine, Op->Asl.EndLogicalLine,
|
|
|
|
FileId);
|
2003-08-07 16:38:31 +00:00
|
|
|
break;
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
case AML_NAME_OP:
|
|
|
|
|
|
|
|
if (Op->Asl.CompileFlags & NODE_IS_RESOURCE_DESC)
|
|
|
|
{
|
|
|
|
LsWriteSourceLines (Op->Asl.LineNumber, Op->Asl.LogicalLineNumber,
|
|
|
|
FileId);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* For fields, we want to dump all the AML after the
|
|
|
|
* entire definition
|
|
|
|
*/
|
|
|
|
LsWriteSourceLines (Op->Asl.EndLine, Op->Asl.EndLogicalLine,
|
|
|
|
FileId);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2003-08-07 16:38:31 +00:00
|
|
|
default:
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
LsWriteSourceLines (Op->Asl.LineNumber, Op->Asl.LogicalLineNumber,
|
|
|
|
FileId);
|
2003-08-07 16:38:31 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (Op->Asl.AmlOpcode)
|
|
|
|
{
|
|
|
|
case AML_SCOPE_OP:
|
|
|
|
case AML_ALIAS_OP:
|
|
|
|
|
|
|
|
/* These opcodes do not declare a new object, ignore them */
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
/* All other named object opcodes come here */
|
|
|
|
|
|
|
|
switch (FileId)
|
|
|
|
{
|
|
|
|
case ASL_FILE_ASM_SOURCE_OUTPUT:
|
|
|
|
case ASL_FILE_C_SOURCE_OUTPUT:
|
|
|
|
case ASL_FILE_ASM_INCLUDE_OUTPUT:
|
|
|
|
case ASL_FILE_C_INCLUDE_OUTPUT:
|
|
|
|
/*
|
|
|
|
* For named objects, we will create a valid symbol so that the
|
|
|
|
* AML code can be referenced from C or ASM
|
|
|
|
*/
|
|
|
|
if (Op->Asl.ExternalName)
|
|
|
|
{
|
|
|
|
/* Get the full pathname associated with this node */
|
|
|
|
|
|
|
|
Pathname = AcpiNsGetExternalPathname (Op->Asl.Node);
|
|
|
|
Length = strlen (Pathname);
|
|
|
|
if (Length >= 4)
|
|
|
|
{
|
|
|
|
/* Convert all dots in the path to underscores */
|
|
|
|
|
|
|
|
for (i = 0; i < Length; i++)
|
|
|
|
{
|
|
|
|
if (Pathname[i] == '.')
|
|
|
|
{
|
|
|
|
Pathname[i] = '_';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Create the appropriate symbol in the output file */
|
|
|
|
|
|
|
|
if (FileId == ASL_FILE_ASM_SOURCE_OUTPUT)
|
|
|
|
{
|
2005-11-01 22:11:18 +00:00
|
|
|
FlPrintFile (FileId,
|
|
|
|
"%s_%s_%s \\\n",
|
2003-08-07 16:38:31 +00:00
|
|
|
Gbl_TableSignature, Gbl_TableId, &Pathname[1]);
|
|
|
|
}
|
|
|
|
if (FileId == ASL_FILE_C_SOURCE_OUTPUT)
|
|
|
|
{
|
2005-11-01 22:11:18 +00:00
|
|
|
FlPrintFile (FileId,
|
|
|
|
" unsigned char %s_%s_%s [] =\n {\n",
|
2003-08-07 16:38:31 +00:00
|
|
|
Gbl_TableSignature, Gbl_TableId, &Pathname[1]);
|
|
|
|
}
|
|
|
|
if (FileId == ASL_FILE_ASM_INCLUDE_OUTPUT)
|
|
|
|
{
|
2005-11-01 22:11:18 +00:00
|
|
|
FlPrintFile (FileId,
|
|
|
|
"extrn %s_%s_%s : byte\n",
|
2003-08-07 16:38:31 +00:00
|
|
|
Gbl_TableSignature, Gbl_TableId, &Pathname[1]);
|
|
|
|
}
|
|
|
|
if (FileId == ASL_FILE_C_INCLUDE_OUTPUT)
|
|
|
|
{
|
2005-11-01 22:11:18 +00:00
|
|
|
FlPrintFile (FileId,
|
|
|
|
"extern unsigned char %s_%s_%s [];\n",
|
2003-08-07 16:38:31 +00:00
|
|
|
Gbl_TableSignature, Gbl_TableId, &Pathname[1]);
|
|
|
|
}
|
|
|
|
}
|
2007-03-22 17:24:05 +00:00
|
|
|
ACPI_FREE (Pathname);
|
2003-08-07 16:38:31 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2003-08-07 16:38:31 +00:00
|
|
|
/* Nothing to do for listing file */
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2003-08-07 16:38:31 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_CLASS_EXECUTE:
|
|
|
|
case AML_CLASS_CREATE:
|
|
|
|
default:
|
|
|
|
|
2007-03-22 17:24:05 +00:00
|
|
|
if ((Op->Asl.ParseOpcode == PARSEOP_BUFFER) &&
|
|
|
|
(Op->Asl.CompileFlags & NODE_IS_RESOURCE_DESC))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-01 22:11:18 +00:00
|
|
|
LsWriteSourceLines (Op->Asl.LineNumber, Op->Asl.LogicalLineNumber,
|
|
|
|
FileId);
|
2003-08-07 16:38:31 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case AML_CLASS_UNKNOWN:
|
2013-05-17 23:13:40 +00:00
|
|
|
|
2003-08-07 16:38:31 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-04-04 21:18:57 +00:00
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
*
|
|
|
|
* FUNCTION: LsFinishSourceListing
|
|
|
|
*
|
|
|
|
* PARAMETERS: FileId - ID of current listing file.
|
|
|
|
*
|
|
|
|
* RETURN: None
|
|
|
|
*
|
|
|
|
* DESCRIPTION: Cleanup routine for the listing file. Flush the hex AML
|
|
|
|
* listing buffer, and flush out any remaining lines in the
|
|
|
|
* source input file.
|
|
|
|
*
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
static void
|
|
|
|
LsFinishSourceListing (
|
|
|
|
UINT32 FileId)
|
|
|
|
{
|
|
|
|
|
|
|
|
if ((FileId == ASL_FILE_ASM_INCLUDE_OUTPUT) ||
|
|
|
|
(FileId == ASL_FILE_C_INCLUDE_OUTPUT))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
LsFlushListingBuffer (FileId);
|
|
|
|
Gbl_CurrentAmlOffset = 0;
|
|
|
|
|
|
|
|
/* Flush any remaining text in the source file */
|
|
|
|
|
|
|
|
if (FileId == ASL_FILE_C_SOURCE_OUTPUT)
|
|
|
|
{
|
|
|
|
FlPrintFile (FileId, " /*\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
while (LsWriteOneSourceLine (FileId))
|
|
|
|
{ ; }
|
|
|
|
|
|
|
|
if (FileId == ASL_FILE_C_SOURCE_OUTPUT)
|
|
|
|
{
|
|
|
|
FlPrintFile (FileId, "\n */\n };\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
FlPrintFile (FileId, "\n");
|
|
|
|
|
|
|
|
if (FileId == ASL_FILE_LISTING_OUTPUT)
|
|
|
|
{
|
|
|
|
/* Print a summary of the compile exceptions */
|
|
|
|
|
|
|
|
FlPrintFile (FileId, "\n\nSummary of errors and warnings\n\n");
|
|
|
|
AePrintErrorLog (FileId);
|
|
|
|
FlPrintFile (FileId, "\n");
|
|
|
|
UtDisplaySummary (FileId);
|
|
|
|
FlPrintFile (FileId, "\n");
|
|
|
|
}
|
|
|
|
}
|