Home | History | Annotate | Download | only in compiler

Lines Matching refs:Asl

3  * Module Name: cvcompiler - ASL-/ASL+ converter functions
404 Op->Asl.ParseOpName);
406 if (Op->Asl.FileChanged)
408 TotalCommentLength += strlen (Op->Asl.Filename) + 3;
410 if (Op->Asl.ParentFilename &&
411 AcpiUtStricmp (Op->Asl.Filename, Op->Asl.ParentFilename))
413 TotalCommentLength += strlen (Op->Asl.ParentFilename) + 3;
417 if (Op->Asl.CommentList)
419 Current = Op->Asl.CommentList;
430 if (Op->Asl.EndBlkComment)
432 Current = Op->Asl.EndBlkComment;
443 if (Op->Asl.InlineComment)
445 CommentLength = strlen (Op->Asl.InlineComment)+3;
447 CvDbgPrint (" Comment string: %s\n\n", Op->Asl.InlineComment);
451 if (Op->Asl.EndNodeComment)
453 CommentLength = strlen(Op->Asl.EndNodeComment)+3;
455 CvDbgPrint (" Comment string: %s\n\n", Op->Asl.EndNodeComment);
459 if (Op->Asl.CloseBraceComment)
461 CommentLength = strlen (Op->Asl.CloseBraceComment)+3;
463 CvDbgPrint (" Comment string: %s\n\n", Op->Asl.CloseBraceComment);
501 (Op->Asl.ParseOpcode != PARSEOP_DEFINITION_BLOCK))
508 /* First, print the file name comment after changing .asl to .dsl */
510 NewFilename = UtLocalCacheCalloc (strlen (Op->Asl.Filename));
511 strcpy (NewFilename, Op->Asl.Filename);
534 Current = Op->Asl.CommentList;
544 Op->Asl.CommentList = NULL;
548 if (Op->Asl.CloseBraceComment)
551 CgWriteOneAmlComment(Op, Op->Asl.CloseBraceComment, CommentOption);
552 Op->Asl.CloseBraceComment = NULL;
617 if ((Op->Asl.ParseOpcode == PARSEOP_DEFINITION_BLOCK) ||
625 if (Op->Asl.FileChanged)
628 /* First, print the file name comment after changing .asl to .dsl */
631 FlGenerateFilename (Op->Asl.Filename, FILE_SUFFIX_DISASSEMBLY);
635 NewFilename, Op->Asl.ParseOpName);
640 if (Op->Asl.ParentFilename &&
641 AcpiUtStricmp (Op->Asl.ParentFilename, Op->Asl.Filename))
643 ParentFilename = FlGenerateFilename (Op->Asl.ParentFilename,
650 Op->Asl.FileChanged = FALSE;
658 Current = Op->Asl.CommentList;
659 if (Op->Asl.ParseOpcode == PARSEOP_INCLUDE)
674 Op->Asl.CommentList = NULL;
676 Current = Op->Asl.EndBlkComment;
684 Op->Asl.EndBlkComment = NULL;
688 if (Op->Asl.InlineComment)
691 CgWriteOneAmlComment(Op, Op->Asl.InlineComment, CommentOption);
692 Op->Asl.InlineComment = NULL;
695 if (Op->Asl.EndNodeComment)
698 CgWriteOneAmlComment(Op, Op->Asl.EndNodeComment, CommentOption);
699 Op->Asl.EndNodeComment = NULL;
702 if (Op->Asl.CloseBraceComment)
705 CgWriteOneAmlComment(Op, Op->Asl.CloseBraceComment, CommentOption);
706 Op->Asl.CloseBraceComment = NULL;
744 * DESCRIPTION: Type of block for this ASL parseop (parens or braces)
760 switch (Op->Asl.ParseOpcode)
992 LatestParseNode->Asl.InlineComment =
993 CvAppendInlineComment (LatestParseNode->Asl.InlineComment,
1008 ParenBraceNode->Asl.EndNodeComment =
1009 Asl.EndNodeComment,
1014 LatestParseNode->Asl.EndNodeComment =
1015 CvAppendInlineComment (LatestParseNode->Asl.EndNodeComment,
1022 LatestParseNode->Asl.CloseBraceComment = CommentString;