Sync usage with man page.
[netbsd-mini2440.git] / sys / external / intel-public / acpica / dist / compiler / aslerror.c
blob87300b1529c887ccabc54da6cbe18c95c738f466
2 /******************************************************************************
4 * Module Name: aslerror - Error handling and statistics
6 *****************************************************************************/
8 /******************************************************************************
10 * 1. Copyright Notice
12 * Some or all of this work - Copyright (c) 1999 - 2009, Intel Corp.
13 * All rights reserved.
15 * 2. License
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
20 * property rights.
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
39 * conditions are met:
41 * 3. Conditions
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
65 * make.
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
71 * distribution.
73 * 3.4. Intel retains all right, title, and interest in and to the Original
74 * Intel Code.
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
89 * PARTICULAR PURPOSE.
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
98 * LIMITED REMEDY.
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 */
125 static void
126 AeAddToErrorLog (
127 ASL_ERROR_MSG *Enode);
130 void
131 AeClearErrorLog (
132 void)
134 ASL_ERROR_MSG *Enode = Gbl_ErrorLog;
135 ASL_ERROR_MSG *Next;
137 /* Walk the error node list */
139 while (Enode)
141 Next = Enode->Next;
142 ACPI_FREE (Enode);
143 Enode = Next;
146 Gbl_ErrorLog = NULL;
150 /*******************************************************************************
152 * FUNCTION: AeAddToErrorLog
154 * PARAMETERS: Enode - An error node to add to the log
156 * RETURN: None
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 ******************************************************************************/
164 static void
165 AeAddToErrorLog (
166 ASL_ERROR_MSG *Enode)
168 ASL_ERROR_MSG *Next;
169 ASL_ERROR_MSG *Prev;
172 if (!Gbl_ErrorLog)
174 Gbl_ErrorLog = Enode;
175 return;
178 /* List is sorted according to line number */
180 if (!Gbl_ErrorLog)
182 Gbl_ErrorLog = Enode;
183 return;
186 /* Walk error list until we find a line number greater than ours */
188 Prev = NULL;
189 Next = Gbl_ErrorLog;
191 while ((Next) &&
192 (Next->LogicalLineNumber <= Enode->LogicalLineNumber))
194 Prev = Next;
195 Next = Next->Next;
198 /* Found our place in the list */
200 Enode->Next = Next;
202 if (Prev)
204 Prev->Next = Enode;
206 else
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
221 * RETURN: None
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 ******************************************************************************/
232 void
233 AePrintException (
234 UINT32 FileId,
235 ASL_ERROR_MSG *Enode,
236 char *Header)
238 UINT8 SourceByte;
239 int Actual;
240 size_t RActual;
241 UINT32 MsgLength;
242 char *MainMessage;
243 char *ExtraMessage;
244 UINT32 SourceColumn;
245 UINT32 ErrorColumn;
246 FILE *OutputFile;
247 FILE *SourceFile;
250 if (Gbl_NoErrors)
252 return;
256 * Only listing files have a header, and remarks/optimizations
257 * are always output
259 if (!Header)
261 /* Ignore remarks if requested */
263 switch (Enode->Level)
265 case ASL_REMARK:
266 if (!Gbl_DisplayRemarks)
268 return;
270 break;
272 case ASL_OPTIMIZATION:
273 if (!Gbl_DisplayOptimizations)
275 return;
277 break;
279 default:
280 break;
284 /* Get the file handles */
286 OutputFile = Gbl_Files[FileId].Handle;
287 SourceFile = Gbl_Files[ASL_FILE_SOURCE_OUTPUT].Handle;
289 if (Header)
291 fprintf (OutputFile, "%s", Header);
294 /* Print filename and line number if present and valid */
296 if (Enode->Filename)
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,
311 (int) SEEK_SET);
312 if (Actual)
314 fprintf (OutputFile,
315 "[*** iASL: Seek error on source code temp file %s ***]",
316 Gbl_Files[ASL_FILE_SOURCE_OUTPUT].Filename);
318 else
320 RActual = fread (&SourceByte, 1, 1, SourceFile);
321 if (!RActual)
323 fprintf (OutputFile,
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");
337 else
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);
354 else
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);
368 if (MsgLength == 0)
370 MainMessage = Enode->Message;
372 MsgLength = strlen (MainMessage);
373 ExtraMessage = NULL;
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),
385 MainMessage, " ^ ");
387 else
389 fprintf (OutputFile, "%*s %s",
390 (int) ((SourceColumn - ErrorColumn) + 1), "^",
391 MainMessage);
394 else
396 fprintf (OutputFile, " %s", MainMessage);
399 /* Print the extra info message if present */
401 if (ExtraMessage)
403 fprintf (OutputFile, " (%s)", ExtraMessage);
406 fprintf (OutputFile, "\n");
407 if (Gbl_VerboseErrors)
409 fprintf (OutputFile, "\n");
412 else
414 fprintf (OutputFile, " %s %s\n\n", MainMessage, ExtraMessage);
420 /*******************************************************************************
422 * FUNCTION: AePrintErrorLog
424 * PARAMETERS: FileId - Where to output the error log
426 * RETURN: None
428 * DESCRIPTION: Print the entire contents of the error log
430 ******************************************************************************/
432 void
433 AePrintErrorLog (
434 UINT32 FileId)
436 ASL_ERROR_MSG *Enode = Gbl_ErrorLog;
439 /* Walk the error node list */
441 while (Enode)
443 AePrintException (FileId, Enode, NULL);
444 Enode = Enode->Next;
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
462 * RETURN: None
464 * DESCRIPTION: Create a new error node and add it to the error log
466 ******************************************************************************/
468 void
469 AslCommonError (
470 UINT8 Level,
471 UINT8 MessageId,
472 UINT32 CurrentLineNumber,
473 UINT32 LogicalLineNumber,
474 UINT32 LogicalByteOffset,
475 UINT32 Column,
476 char *Filename,
477 char *ExtraMessage)
479 UINT32 MessageSize;
480 char *MessageBuffer = NULL;
481 ASL_ERROR_MSG *Enode;
484 Enode = UtLocalCalloc (sizeof (ASL_ERROR_MSG));
486 if (ExtraMessage)
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 */
500 if (Filename)
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);
522 if (Gbl_DebugFlag)
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);
534 Gbl_SourceLine = 0;
535 Gbl_NextError = Gbl_ErrorLog;
536 CmDoOutputFiles ();
537 CmCleanupAndExit ();
540 return;
544 /*******************************************************************************
546 * FUNCTION: AslError
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
553 * RETURN: None
555 * DESCRIPTION: Main error reporting routine for the ASL compiler (all code
556 * except the parser.)
558 ******************************************************************************/
560 void
561 AslError (
562 UINT8 Level,
563 UINT8 MessageId,
564 ACPI_PARSE_OBJECT *Op,
565 char *ExtraMessage)
568 switch (Level)
570 case ASL_WARNING2:
571 case ASL_WARNING3:
572 if (Gbl_WarningLevel < Level)
574 return;
576 break;
578 default:
579 break;
583 if (Op)
585 AslCommonError (Level, MessageId, Op->Asl.LineNumber,
586 Op->Asl.LogicalLineNumber,
587 Op->Asl.LogicalByteOffset,
588 Op->Asl.Column,
589 Op->Asl.Filename, ExtraMessage);
591 else
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
608 * RETURN: None
610 * DESCRIPTION: Error reporting routine for exceptions returned by the ACPI
611 * CA core subsystem.
613 ******************************************************************************/
615 void
616 AslCoreSubsystemError (
617 ACPI_PARSE_OBJECT *Op,
618 ACPI_STATUS Status,
619 char *ExtraMessage,
620 BOOLEAN Abort)
623 sprintf (MsgBuffer, "%s %s", AcpiFormatException (Status), ExtraMessage);
625 if (Op)
627 AslCommonError (ASL_ERROR, ASL_MSG_CORE_EXCEPTION, Op->Asl.LineNumber,
628 Op->Asl.LogicalLineNumber,
629 Op->Asl.LogicalByteOffset,
630 Op->Asl.Column,
631 Op->Asl.Filename, MsgBuffer);
633 else
635 AslCommonError (ASL_ERROR, ASL_MSG_CORE_EXCEPTION, 0,
636 0, 0, 0, NULL, MsgBuffer);
639 if (Abort)
641 AslAbort ();
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 ******************************************************************************/
661 AslCompilererror (
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,
668 CompilerMessage);
670 return 0;