From b2762040195ca1e633f3f60969449573a00d62bb Mon Sep 17 00:00:00 2001 From: aystarik Date: Wed, 29 Jun 2005 15:45:51 +0000 Subject: [PATCH] New command line options date 2002.04.25.17.44.00; author rmoore1; state Exp; --- source/compiler/aslcompiler.h | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/source/compiler/aslcompiler.h b/source/compiler/aslcompiler.h index 9506a24da..3ca6d677a 100644 --- a/source/compiler/aslcompiler.h +++ b/source/compiler/aslcompiler.h @@ -2,7 +2,7 @@ /****************************************************************************** * * Module Name: aslcompiler.h - common include file - * $Revision: 1.99 $ + * $Revision: 1.101 $ * *****************************************************************************/ @@ -399,6 +399,12 @@ OpcAmlOpcodeWalk ( UINT32 Level, void *Context); +ACPI_STATUS +OpcAmlConstantWalk ( + ACPI_PARSE_OBJECT *Op, + UINT32 Level, + void *Context); + void OpcGenerateAmlOpcode ( ACPI_PARSE_OBJECT *Op); @@ -560,7 +566,7 @@ TrDoElseif ( * asltree - parse tree support */ -void +ACPI_STATUS TrWalkParseTree ( ACPI_PARSE_OBJECT *Op, UINT32 Visitation, @@ -568,11 +574,16 @@ TrWalkParseTree ( ASL_WALK_CALLBACK AscendingCallback, void *Context); +ACPI_PARSE_OBJECT * +TrAllocateNode ( + UINT32 ParseOpcode); + + /* Values for "Visitation" parameter above */ #define ASL_WALK_VISIT_DOWNWARD 0x01 #define ASL_WALK_VISIT_UPWARD 0x02 -#define ASL_WALK_VISIT_TWICE 0x03 +#define ASL_WALK_VISIT_TWICE (ASL_WALK_VISIT_DOWNWARD | ASL_WALK_VISIT_UPWARD) char * @@ -757,6 +768,10 @@ ACPI_STATUS FlOpenMiscOutputFiles ( char *InputFilename); +void +MpDisplayReservedNames ( + void); + /* Load */ @@ -808,6 +823,10 @@ LsCompareOneNamespaceObject ( /* Utils */ +void +UtDisplayConstantOpcodes ( + void); + void UtBeginEvent ( UINT32 Event, @@ -848,6 +867,10 @@ char * UtGetOpName ( UINT32 ParseOpcode); +void +UtSetParseOpName ( + ACPI_PARSE_OBJECT *Op); + ACPI_PARSE_OBJECT * UtGetArg ( ACPI_PARSE_OBJECT *Op,