2 /******************************************************************************
4 * Module Name: aslerror - Error handling and statistics
6 *****************************************************************************/
8 /******************************************************************************
12 * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
13 * All rights reserved.
17 * 2.1. This is your license from Intel Corp. under its intellectual property
18 * rights. You may have additional license terms from the party that provided
19 * you this software, covering your right to use that party's intellectual
22 * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
23 * copy of the source code appearing in this file ("Covered Code") an
24 * irrevocable, perpetual, worldwide license under Intel's copyrights in the
25 * base code distributed originally by Intel ("Original Intel Code") to copy,
26 * make derivatives, distribute, use and display any portion of the Covered
27 * Code in any form, with the right to sublicense such rights; and
29 * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
30 * license (with the right to sublicense), under only those claims of Intel
31 * patents that are infringed by the Original Intel Code, to make, use, sell,
32 * offer to sell, and import the Covered Code and derivative works thereof
33 * solely to the minimum extent necessary to exercise the above copyright
34 * license, and in no event shall the patent license extend to any additions
35 * to or modifications of the Original Intel Code. No other license or right
36 * is granted directly or by implication, estoppel or otherwise;
38 * The above copyright and patent license is granted only if the following
43 * 3.1. Redistribution of Source with Rights to Further Distribute Source.
44 * Redistribution of source code of any substantial portion of the Covered
45 * Code or modification with rights to further distribute source must include
46 * the above Copyright Notice, the above License, this list of Conditions,
47 * and the following Disclaimer and Export Compliance provision. In addition,
48 * Licensee must cause all Covered Code to which Licensee contributes to
49 * contain a file documenting the changes Licensee made to create that Covered
50 * Code and the date of any change. Licensee must include in that file the
51 * documentation of any changes made by any predecessor Licensee. Licensee
52 * must include a prominent statement that the modification is derived,
53 * directly or indirectly, from Original Intel Code.
55 * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
56 * Redistribution of source code of any substantial portion of the Covered
57 * Code or modification without rights to further distribute source must
58 * include the following Disclaimer and Export Compliance provision in the
59 * documentation and/or other materials provided with distribution. In
60 * addition, Licensee may not authorize further sublicense of source of any
61 * portion of the Covered Code, and must include terms to the effect that the
62 * license from Licensee to its licensee is limited to the intellectual
63 * property embodied in the software Licensee provides to its licensee, and
64 * not to intellectual property embodied in modifications its licensee may
67 * 3.3. Redistribution of Executable. Redistribution in executable form of any
68 * substantial portion of the Covered Code or modification must reproduce the
69 * above Copyright Notice, and the following Disclaimer and Export Compliance
70 * provision in the documentation and/or other materials provided with the
73 * 3.4. Intel retains all right, title, and interest in and to the Original
76 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
77 * Intel shall be used in advertising or otherwise to promote the sale, use or
78 * other dealings in products derived from or relating to the Covered Code
79 * without prior written authorization from Intel.
81 * 4. Disclaimer and Export Compliance
83 * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
84 * HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
85 * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE,
86 * INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY
87 * UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY
88 * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
91 * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
92 * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
93 * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
94 * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
95 * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
96 * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS
97 * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
100 * 4.3. Licensee shall not export, either directly or indirectly, any of this
101 * software or system incorporating such software without first obtaining any
102 * required license or other approval from the U. S. Department of Commerce or
103 * any other agency or department of the United States Government. In the
104 * event Licensee exports any such software from the United States or
105 * re-exports any such software from a foreign destination, Licensee shall
106 * ensure that the distribution and export/re-export of the software is in
107 * compliance with all laws, regulations, orders, or other restrictions of the
108 * U.S. Export Administration Regulations. Licensee agrees that neither it nor
109 * any of its subsidiaries will export/re-export any technical data, process,
110 * software, or service, directly or indirectly, to any country for which the
111 * United States government or any agency thereof requires an export license,
112 * other governmental approval, or letter of assurance, without first obtaining
113 * such license, approval or letter.
115 *****************************************************************************/
117 #define ASL_EXCEPTIONS
118 #include "aslcompiler.h"
120 #define _COMPONENT ACPI_COMPILER
121 ACPI_MODULE_NAME ("aslerror")
123 /* Local prototypes */
127 ASL_ERROR_MSG
*Enode
);
134 ASL_ERROR_MSG
*Enode
= Gbl_ErrorLog
;
137 /* Walk the error node list */
150 /*******************************************************************************
152 * FUNCTION: AeAddToErrorLog
154 * PARAMETERS: Enode - An error node to add to the log
158 * DESCRIPTION: Add a new error node to the error log. The error log is
159 * ordered by the "logical" line number (cumulative line number
160 * including all include files.)
162 ******************************************************************************/
166 ASL_ERROR_MSG
*Enode
)
174 Gbl_ErrorLog
= Enode
;
178 /* List is sorted according to line number */
182 Gbl_ErrorLog
= Enode
;
186 /* Walk error list until we find a line number greater than ours */
192 (Next
->LogicalLineNumber
<= Enode
->LogicalLineNumber
))
198 /* Found our place in the list */
208 Gbl_ErrorLog
= Enode
;
213 /*******************************************************************************
215 * FUNCTION: AePrintException
217 * PARAMETERS: FileId - ID of output file
218 * Enode - Error node to print
219 * Header - Additional text before each message
223 * DESCRIPTION: Print the contents of an error node.
225 * NOTE: We don't use the FlxxxFile I/O functions here because on error
226 * they abort the compiler and call this function! Since we
227 * are reporting errors here, we ignore most output errors and
228 * just try to get out as much as we can.
230 ******************************************************************************/
235 ASL_ERROR_MSG
*Enode
,
256 * Only listing files have a header, and remarks/optimizations
261 /* Ignore remarks if requested */
263 switch (Enode
->Level
)
266 if (!Gbl_DisplayRemarks
)
272 case ASL_OPTIMIZATION
:
273 if (!Gbl_DisplayOptimizations
)
284 /* Get the file handles */
286 OutputFile
= Gbl_Files
[FileId
].Handle
;
287 SourceFile
= Gbl_Files
[ASL_FILE_SOURCE_OUTPUT
].Handle
;
291 fprintf (OutputFile
, "%s", Header
);
294 /* Print filename and line number if present and valid */
298 if (Gbl_VerboseErrors
)
300 fprintf (OutputFile
, "%6s", Enode
->Filename
);
302 if (Enode
->LineNumber
)
304 fprintf (OutputFile
, "%6u: ", Enode
->LineNumber
);
307 * Seek to the offset in the combined source file, read the source
308 * line, and write it to the output.
310 Actual
= fseek (SourceFile
, (long) Enode
->LogicalByteOffset
,
315 "[*** iASL: Seek error on source code temp file %s ***]",
316 Gbl_Files
[ASL_FILE_SOURCE_OUTPUT
].Filename
);
320 RActual
= fread (&SourceByte
, 1, 1, SourceFile
);
324 "[*** iASL: Read error on source code temp file %s ***]",
325 Gbl_Files
[ASL_FILE_SOURCE_OUTPUT
].Filename
);
328 else while (RActual
&& SourceByte
&& (SourceByte
!= '\n'))
330 fwrite (&SourceByte
, 1, 1, OutputFile
);
331 RActual
= fread (&SourceByte
, 1, 1, SourceFile
);
334 fprintf (OutputFile
, "\n");
339 fprintf (OutputFile
, "%s", Enode
->Filename
);
341 if (Enode
->LineNumber
)
343 fprintf (OutputFile
, "(%u) : ", Enode
->LineNumber
);
348 /* NULL message ID, just print the raw message */
350 if (Enode
->MessageId
== 0)
352 fprintf (OutputFile
, "%s\n", Enode
->Message
);
356 /* Decode the message ID */
358 fprintf (OutputFile
, "%s %4.4d -",
359 AslErrorLevel
[Enode
->Level
],
360 Enode
->MessageId
+ ((Enode
->Level
+1) * 1000));
362 MainMessage
= AslMessages
[Enode
->MessageId
];
363 ExtraMessage
= Enode
->Message
;
365 if (Enode
->LineNumber
)
367 MsgLength
= strlen (MainMessage
);
370 MainMessage
= Enode
->Message
;
372 MsgLength
= strlen (MainMessage
);
376 if (Gbl_VerboseErrors
)
378 SourceColumn
= Enode
->Column
+ Enode
->FilenameLength
+ 6 + 2;
379 ErrorColumn
= ASL_ERROR_LEVEL_LENGTH
+ 5 + 2 + 1;
381 if ((MsgLength
+ ErrorColumn
) < (SourceColumn
- 1))
383 fprintf (OutputFile
, "%*s%s",
384 (int) ((SourceColumn
- 1) - ErrorColumn
),
389 fprintf (OutputFile
, "%*s %s",
390 (int) ((SourceColumn
- ErrorColumn
) + 1), "^",
396 fprintf (OutputFile
, " %s", MainMessage
);
399 /* Print the extra info message if present */
403 fprintf (OutputFile
, " (%s)", ExtraMessage
);
406 fprintf (OutputFile
, "\n");
407 if (Gbl_VerboseErrors
)
409 fprintf (OutputFile
, "\n");
414 fprintf (OutputFile
, " %s %s\n\n", MainMessage
, ExtraMessage
);
420 /*******************************************************************************
422 * FUNCTION: AePrintErrorLog
424 * PARAMETERS: FileId - Where to output the error log
428 * DESCRIPTION: Print the entire contents of the error log
430 ******************************************************************************/
436 ASL_ERROR_MSG
*Enode
= Gbl_ErrorLog
;
439 /* Walk the error node list */
443 AePrintException (FileId
, Enode
, NULL
);
449 /*******************************************************************************
451 * FUNCTION: AslCommonError
453 * PARAMETERS: Level - Seriousness (Warning/error, etc.)
454 * MessageId - Index into global message buffer
455 * CurrentLineNumber - Actual file line number
456 * LogicalLineNumber - Cumulative line number
457 * LogicalByteOffset - Byte offset in source file
458 * Column - Column in current line
459 * Filename - source filename
460 * ExtraMessage - additional error message
464 * DESCRIPTION: Create a new error node and add it to the error log
466 ******************************************************************************/
472 UINT32 CurrentLineNumber
,
473 UINT32 LogicalLineNumber
,
474 UINT32 LogicalByteOffset
,
480 char *MessageBuffer
= NULL
;
481 ASL_ERROR_MSG
*Enode
;
484 Enode
= UtLocalCalloc (sizeof (ASL_ERROR_MSG
));
488 /* Allocate a buffer for the message and a new error node */
490 MessageSize
= strlen (ExtraMessage
) + 1;
491 MessageBuffer
= UtLocalCalloc (MessageSize
);
493 /* Keep a copy of the extra message */
495 ACPI_STRCPY (MessageBuffer
, ExtraMessage
);
498 /* Initialize the error node */
502 Enode
->Filename
= Filename
;
503 Enode
->FilenameLength
= strlen (Filename
);
504 if (Enode
->FilenameLength
< 6)
506 Enode
->FilenameLength
= 6;
510 Enode
->MessageId
= MessageId
;
511 Enode
->Level
= Level
;
512 Enode
->LineNumber
= CurrentLineNumber
;
513 Enode
->LogicalLineNumber
= LogicalLineNumber
;
514 Enode
->LogicalByteOffset
= LogicalByteOffset
;
515 Enode
->Column
= Column
;
516 Enode
->Message
= MessageBuffer
;
518 /* Add the new node to the error node list */
520 AeAddToErrorLog (Enode
);
524 /* stderr is a file, send error to it immediately */
526 AePrintException (ASL_FILE_STDERR
, Enode
, NULL
);
529 Gbl_ExceptionCount
[Level
]++;
530 if (Gbl_ExceptionCount
[ASL_ERROR
] > ASL_MAX_ERROR_COUNT
)
532 printf ("\nMaximum error count (%d) exceeded\n", ASL_MAX_ERROR_COUNT
);
535 Gbl_NextError
= Gbl_ErrorLog
;
544 /*******************************************************************************
548 * PARAMETERS: Level - Seriousness (Warning/error, etc.)
549 * MessageId - Index into global message buffer
550 * Op - Parse node where error happened
551 * ExtraMessage - additional error message
555 * DESCRIPTION: Main error reporting routine for the ASL compiler (all code
556 * except the parser.)
558 ******************************************************************************/
564 ACPI_PARSE_OBJECT
*Op
,
572 if (Gbl_WarningLevel
< Level
)
585 AslCommonError (Level
, MessageId
, Op
->Asl
.LineNumber
,
586 Op
->Asl
.LogicalLineNumber
,
587 Op
->Asl
.LogicalByteOffset
,
589 Op
->Asl
.Filename
, ExtraMessage
);
593 AslCommonError (Level
, MessageId
, 0,
594 0, 0, 0, NULL
, ExtraMessage
);
599 /*******************************************************************************
601 * FUNCTION: AslCoreSubsystemError
603 * PARAMETERS: Op - Parse node where error happened
604 * Status - The ACPI CA Exception
605 * ExtraMessage - additional error message
606 * Abort - TRUE -> Abort compilation
610 * DESCRIPTION: Error reporting routine for exceptions returned by the ACPI
613 ******************************************************************************/
616 AslCoreSubsystemError (
617 ACPI_PARSE_OBJECT
*Op
,
623 sprintf (MsgBuffer
, "%s %s", AcpiFormatException (Status
), ExtraMessage
);
627 AslCommonError (ASL_ERROR
, ASL_MSG_CORE_EXCEPTION
, Op
->Asl
.LineNumber
,
628 Op
->Asl
.LogicalLineNumber
,
629 Op
->Asl
.LogicalByteOffset
,
631 Op
->Asl
.Filename
, MsgBuffer
);
635 AslCommonError (ASL_ERROR
, ASL_MSG_CORE_EXCEPTION
, 0,
636 0, 0, 0, NULL
, MsgBuffer
);
646 /*******************************************************************************
648 * FUNCTION: AslCompilererror
650 * PARAMETERS: CompilerMessage - Error message from the parser
652 * RETURN: Status (0 for now)
654 * DESCRIPTION: Report an error situation discovered in a production
655 * NOTE: don't change the name of this function, it is called
656 * from the auto-generated parser.
658 ******************************************************************************/
662 char *CompilerMessage
)
665 AslCommonError (ASL_ERROR
, ASL_MSG_SYNTAX
, Gbl_CurrentLineNumber
,
666 Gbl_LogicalLineNumber
, Gbl_CurrentLineOffset
,
667 Gbl_CurrentColumn
, Gbl_Files
[ASL_FILE_INPUT
].Filename
,