aboutsummaryrefslogtreecommitdiff
path: root/source/compiler/aslparseop.c
diff options
context:
space:
mode:
authorJung-uk Kim <jkim@FreeBSD.org>2018-09-27 16:43:02 +0000
committerJung-uk Kim <jkim@FreeBSD.org>2018-09-27 16:43:02 +0000
commit73d55968743da26d1ff63e9939f191d217aea206 (patch)
treeffb27de4d7c207dd7aeebd04b24e04f85d23b8dc /source/compiler/aslparseop.c
parentc6014c64fcfd099d0087da3509e8a623d2c30209 (diff)
downloadsrc-73d55968743da26d1ff63e9939f191d217aea206.tar.gz
src-73d55968743da26d1ff63e9939f191d217aea206.zip
Import ACPICA 20180927.vendor/acpica/20180927
Notes
Notes: svn path=/vendor-sys/acpica/dist/; revision=338971 svn path=/vendor-sys/acpica/20180927/; revision=338972; tag=vendor/acpica/20180927
Diffstat (limited to 'source/compiler/aslparseop.c')
-rw-r--r--source/compiler/aslparseop.c40
1 files changed, 20 insertions, 20 deletions
diff --git a/source/compiler/aslparseop.c b/source/compiler/aslparseop.c
index 9585e565e94c..ce5e268ea697 100644
--- a/source/compiler/aslparseop.c
+++ b/source/compiler/aslparseop.c
@@ -205,7 +205,7 @@ TrCreateOp (
{
case PARSEOP_ASL_CODE:
- Gbl_ParseTreeRoot = Op;
+ AslGbl_ParseTreeRoot = Op;
Op->Asl.ParseOpcode = PARSEOP_DEFAULT_ARG;
DbgPrint (ASL_PARSE_OUTPUT, "ASLCODE (Tree Completed)->");
break;
@@ -784,11 +784,11 @@ TrAllocateOp (
Op = UtParseOpCacheCalloc ();
Op->Asl.ParseOpcode = (UINT16) ParseOpcode;
- Op->Asl.Filename = Gbl_Files[ASL_FILE_INPUT].Filename;
- Op->Asl.LineNumber = Gbl_CurrentLineNumber;
- Op->Asl.LogicalLineNumber = Gbl_LogicalLineNumber;
- Op->Asl.LogicalByteOffset = Gbl_CurrentLineOffset;
- Op->Asl.Column = Gbl_CurrentColumn;
+ Op->Asl.Filename = AslGbl_Files[ASL_FILE_INPUT].Filename;
+ Op->Asl.LineNumber = AslGbl_CurrentLineNumber;
+ Op->Asl.LogicalLineNumber = AslGbl_LogicalLineNumber;
+ Op->Asl.LogicalByteOffset = AslGbl_CurrentLineOffset;
+ Op->Asl.Column = AslGbl_CurrentColumn;
UtSetParseOpName (Op);
@@ -796,7 +796,7 @@ TrAllocateOp (
if (AcpiGbl_CaptureComments)
{
- LatestOp = Gbl_CommentState.LatestParseOp;
+ LatestOp = AslGbl_CommentState.LatestParseOp;
Op->Asl.InlineComment = NULL;
Op->Asl.EndNodeComment = NULL;
Op->Asl.CommentList = NULL;
@@ -813,9 +813,9 @@ TrAllocateOp (
{
CvDbgPrint ("latest op: %s\n", LatestOp->Asl.ParseOpName);
Op->Asl.FileChanged = TRUE;
- if (Gbl_IncludeFileStack)
+ if (AslGbl_IncludeFileStack)
{
- Op->Asl.ParentFilename = Gbl_IncludeFileStack->Filename;
+ Op->Asl.ParentFilename = AslGbl_IncludeFileStack->Filename;
}
else
{
@@ -823,10 +823,10 @@ TrAllocateOp (
}
}
- Gbl_CommentState.LatestParseOp = Op;
+ AslGbl_CommentState.LatestParseOp = Op;
CvDbgPrint ("TrAllocateOp=Set latest parse op to this op.\n");
CvDbgPrint (" Op->Asl.ParseOpName = %s\n",
- Gbl_CommentState.LatestParseOp->Asl.ParseOpName);
+ AslGbl_CommentState.LatestParseOp->Asl.ParseOpName);
CvDbgPrint (" Op->Asl.ParseOpcode = 0x%x\n", ParseOpcode);
if (Op->Asl.FileChanged)
@@ -843,23 +843,23 @@ TrAllocateOp (
(ParseOpcode != PARSEOP_DEFINITION_BLOCK))
{
CvDbgPrint ("Parsing paren/Brace op now!\n");
- Gbl_CommentState.ParsingParenBraceNode = Op;
+ AslGbl_CommentState.ParsingParenBraceNode = Op;
}
- if (Gbl_CommentListHead)
+ if (AslGbl_CommentListHead)
{
CvDbgPrint ("Transferring...\n");
- Op->Asl.CommentList = Gbl_CommentListHead;
- Gbl_CommentListHead = NULL;
- Gbl_CommentListTail = NULL;
+ Op->Asl.CommentList = AslGbl_CommentListHead;
+ AslGbl_CommentListHead = NULL;
+ AslGbl_CommentListTail = NULL;
CvDbgPrint (" Transferred current comment list to this op.\n");
CvDbgPrint (" %s\n", Op->Asl.CommentList->Comment);
}
- if (Gbl_InlineCommentBuffer)
+ if (AslGbl_InlineCommentBuffer)
{
- Op->Asl.InlineComment = Gbl_InlineCommentBuffer;
- Gbl_InlineCommentBuffer = NULL;
+ Op->Asl.InlineComment = AslGbl_InlineCommentBuffer;
+ AslGbl_InlineCommentBuffer = NULL;
CvDbgPrint ("Transferred current inline comment list to this op.\n");
}
}
@@ -894,7 +894,7 @@ TrPrintOpFlags (
{
if (Flags & FlagBit)
{
- DbgPrint (OutputLevel, " %s", Gbl_OpFlagNames[i]);
+ DbgPrint (OutputLevel, " %s", AslGbl_OpFlagNames[i]);
}
FlagBit <<= 1;