aslerror.c revision 209746
160484Sobrien
260484Sobrien/******************************************************************************
360484Sobrien *
460484Sobrien * Module Name: aslerror - Error handling and statistics
560484Sobrien *
660484Sobrien *****************************************************************************/
760484Sobrien
860484Sobrien/******************************************************************************
960484Sobrien *
1060484Sobrien * 1. Copyright Notice
1160484Sobrien *
1260484Sobrien * Some or all of this work - Copyright (c) 1999 - 2010, Intel Corp.
1360484Sobrien * All rights reserved.
1460484Sobrien *
1560484Sobrien * 2. License
1660484Sobrien *
1760484Sobrien * 2.1. This is your license from Intel Corp. under its intellectual property
1860484Sobrien * rights.  You may have additional license terms from the party that provided
1960484Sobrien * you this software, covering your right to use that party's intellectual
2060484Sobrien * property rights.
2160484Sobrien *
2260484Sobrien * 2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a
2360484Sobrien * copy of the source code appearing in this file ("Covered Code") an
2460484Sobrien * irrevocable, perpetual, worldwide license under Intel's copyrights in the
2560484Sobrien * base code distributed originally by Intel ("Original Intel Code") to copy,
2660484Sobrien * make derivatives, distribute, use and display any portion of the Covered
2760484Sobrien * Code in any form, with the right to sublicense such rights; and
2860484Sobrien *
2960484Sobrien * 2.3. Intel grants Licensee a non-exclusive and non-transferable patent
3060484Sobrien * license (with the right to sublicense), under only those claims of Intel
3160484Sobrien * patents that are infringed by the Original Intel Code, to make, use, sell,
3260484Sobrien * offer to sell, and import the Covered Code and derivative works thereof
3360484Sobrien * solely to the minimum extent necessary to exercise the above copyright
3460484Sobrien * license, and in no event shall the patent license extend to any additions
3560484Sobrien * to or modifications of the Original Intel Code.  No other license or right
3660484Sobrien * is granted directly or by implication, estoppel or otherwise;
3760484Sobrien *
3860484Sobrien * The above copyright and patent license is granted only if the following
3960484Sobrien * conditions are met:
4060484Sobrien *
4160484Sobrien * 3. Conditions
4260484Sobrien *
4360484Sobrien * 3.1. Redistribution of Source with Rights to Further Distribute Source.
4460484Sobrien * Redistribution of source code of any substantial portion of the Covered
4560484Sobrien * Code or modification with rights to further distribute source must include
4660484Sobrien * the above Copyright Notice, the above License, this list of Conditions,
4760484Sobrien * and the following Disclaimer and Export Compliance provision.  In addition,
4860484Sobrien * Licensee must cause all Covered Code to which Licensee contributes to
4960484Sobrien * contain a file documenting the changes Licensee made to create that Covered
5060484Sobrien * Code and the date of any change.  Licensee must include in that file the
5160484Sobrien * documentation of any changes made by any predecessor Licensee.  Licensee
5260484Sobrien * must include a prominent statement that the modification is derived,
5360484Sobrien * directly or indirectly, from Original Intel Code.
5460484Sobrien *
5560484Sobrien * 3.2. Redistribution of Source with no Rights to Further Distribute Source.
5660484Sobrien * Redistribution of source code of any substantial portion of the Covered
5760484Sobrien * Code or modification without rights to further distribute source must
5860484Sobrien * include the following Disclaimer and Export Compliance provision in the
5960484Sobrien * documentation and/or other materials provided with distribution.  In
6060484Sobrien * addition, Licensee may not authorize further sublicense of source of any
6160484Sobrien * portion of the Covered Code, and must include terms to the effect that the
6260484Sobrien * license from Licensee to its licensee is limited to the intellectual
6360484Sobrien * property embodied in the software Licensee provides to its licensee, and
6460484Sobrien * not to intellectual property embodied in modifications its licensee may
6560484Sobrien * make.
6660484Sobrien *
6760484Sobrien * 3.3. Redistribution of Executable. Redistribution in executable form of any
6860484Sobrien * substantial portion of the Covered Code or modification must reproduce the
6960484Sobrien * above Copyright Notice, and the following Disclaimer and Export Compliance
7060484Sobrien * provision in the documentation and/or other materials provided with the
7160484Sobrien * distribution.
7260484Sobrien *
7360484Sobrien * 3.4. Intel retains all right, title, and interest in and to the Original
7460484Sobrien * Intel Code.
7560484Sobrien *
7660484Sobrien * 3.5. Neither the name Intel nor any other trademark owned or controlled by
7760484Sobrien * Intel shall be used in advertising or otherwise to promote the sale, use or
7860484Sobrien * other dealings in products derived from or relating to the Covered Code
7960484Sobrien * without prior written authorization from Intel.
8060484Sobrien *
8160484Sobrien * 4. Disclaimer and Export Compliance
8260484Sobrien *
8360484Sobrien * 4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED
8460484Sobrien * HERE.  ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE
8560484Sobrien * IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT,  ASSISTANCE,
8660484Sobrien * INSTALLATION, TRAINING OR OTHER SERVICES.  INTEL WILL NOT PROVIDE ANY
8760484Sobrien * UPDATES, ENHANCEMENTS OR EXTENSIONS.  INTEL SPECIFICALLY DISCLAIMS ANY
8860484Sobrien * IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A
8960484Sobrien * PARTICULAR PURPOSE.
9060484Sobrien *
9160484Sobrien * 4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES
9260484Sobrien * OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR
9360484Sobrien * COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT,
9460484Sobrien * SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY
9560484Sobrien * CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL
9660484Sobrien * HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES.  THESE LIMITATIONS
9760484Sobrien * SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY
9860484Sobrien * LIMITED REMEDY.
9960484Sobrien *
10060484Sobrien * 4.3. Licensee shall not export, either directly or indirectly, any of this
10160484Sobrien * software or system incorporating such software without first obtaining any
10260484Sobrien * required license or other approval from the U. S. Department of Commerce or
10360484Sobrien * any other agency or department of the United States Government.  In the
10460484Sobrien * event Licensee exports any such software from the United States or
10560484Sobrien * re-exports any such software from a foreign destination, Licensee shall
10660484Sobrien * ensure that the distribution and export/re-export of the software is in
10760484Sobrien * compliance with all laws, regulations, orders, or other restrictions of the
10860484Sobrien * U.S. Export Administration Regulations. Licensee agrees that neither it nor
10960484Sobrien * any of its subsidiaries will export/re-export any technical data, process,
11060484Sobrien * software, or service, directly or indirectly, to any country for which the
11160484Sobrien * United States government or any agency thereof requires an export license,
11260484Sobrien * other governmental approval, or letter of assurance, without first obtaining
11360484Sobrien * such license, approval or letter.
11460484Sobrien *
11560484Sobrien *****************************************************************************/
11660484Sobrien
11760484Sobrien#define ASL_EXCEPTIONS
11860484Sobrien#include <contrib/dev/acpica/compiler/aslcompiler.h>
11960484Sobrien
12060484Sobrien#define _COMPONENT          ACPI_COMPILER
12160484Sobrien        ACPI_MODULE_NAME    ("aslerror")
12260484Sobrien
12360484Sobrien/* Local prototypes */
12460484Sobrien
12560484Sobrienstatic void
12660484SobrienAeAddToErrorLog (
12760484Sobrien    ASL_ERROR_MSG           *Enode);
12860484Sobrien
12960484Sobrien
13060484Sobrienvoid
13160484SobrienAeClearErrorLog (
13260484Sobrien    void)
13360484Sobrien{
13460484Sobrien    ASL_ERROR_MSG           *Enode = Gbl_ErrorLog;
13560484Sobrien    ASL_ERROR_MSG           *Next;
13660484Sobrien
13760484Sobrien    /* Walk the error node list */
13860484Sobrien
13960484Sobrien    while (Enode)
14060484Sobrien    {
14160484Sobrien        Next = Enode->Next;
14260484Sobrien        ACPI_FREE (Enode);
14360484Sobrien        Enode = Next;
14460484Sobrien    }
14560484Sobrien
14660484Sobrien    Gbl_ErrorLog = NULL;
14760484Sobrien}
14860484Sobrien
14960484Sobrien
15060484Sobrien/*******************************************************************************
15160484Sobrien *
15260484Sobrien * FUNCTION:    AeAddToErrorLog
15360484Sobrien *
15460484Sobrien * PARAMETERS:  Enode       - An error node to add to the log
15560484Sobrien *
15660484Sobrien * RETURN:      None
15760484Sobrien *
15860484Sobrien * DESCRIPTION: Add a new error node to the error log.  The error log is
15960484Sobrien *              ordered by the "logical" line number (cumulative line number
16060484Sobrien *              including all include files.)
16160484Sobrien *
16260484Sobrien ******************************************************************************/
16360484Sobrien
16460484Sobrienstatic void
16560484SobrienAeAddToErrorLog (
16660484Sobrien    ASL_ERROR_MSG           *Enode)
16760484Sobrien{
16860484Sobrien    ASL_ERROR_MSG           *Next;
16960484Sobrien    ASL_ERROR_MSG           *Prev;
17060484Sobrien
17160484Sobrien
17260484Sobrien    /* If Gbl_ErrorLog is null, this is the first error node */
17360484Sobrien
17460484Sobrien    if (!Gbl_ErrorLog)
17560484Sobrien    {
17660484Sobrien        Gbl_ErrorLog = Enode;
17760484Sobrien        return;
17860484Sobrien    }
17960484Sobrien
18060484Sobrien    /*
18160484Sobrien     * Walk error list until we find a line number greater than ours.
18260484Sobrien     * List is sorted according to line number.
18360484Sobrien     */
18460484Sobrien    Prev = NULL;
18560484Sobrien    Next = Gbl_ErrorLog;
18660484Sobrien
18760484Sobrien    while ((Next) &&
18860484Sobrien           (Next->LogicalLineNumber <= Enode->LogicalLineNumber))
18960484Sobrien    {
19060484Sobrien        Prev = Next;
19160484Sobrien        Next = Next->Next;
19260484Sobrien    }
19360484Sobrien
19460484Sobrien    /* Found our place in the list */
19560484Sobrien
19660484Sobrien    Enode->Next = Next;
19760484Sobrien
19860484Sobrien    if (Prev)
19960484Sobrien    {
20060484Sobrien        Prev->Next = Enode;
20160484Sobrien    }
20260484Sobrien    else
20360484Sobrien    {
20460484Sobrien        Gbl_ErrorLog = Enode;
20560484Sobrien    }
20660484Sobrien}
20760484Sobrien
20860484Sobrien
20960484Sobrien/*******************************************************************************
21060484Sobrien *
21160484Sobrien * FUNCTION:    AePrintException
21260484Sobrien *
21360484Sobrien * PARAMETERS:  FileId          - ID of output file
21460484Sobrien *              Enode           - Error node to print
21560484Sobrien *              Header          - Additional text before each message
21660484Sobrien *
21760484Sobrien * RETURN:      None
21860484Sobrien *
21960484Sobrien * DESCRIPTION: Print the contents of an error node.
22060484Sobrien *
22160484Sobrien * NOTE:        We don't use the FlxxxFile I/O functions here because on error
22260484Sobrien *              they abort the compiler and call this function!  Since we
22360484Sobrien *              are reporting errors here, we ignore most output errors and
22460484Sobrien *              just try to get out as much as we can.
22560484Sobrien *
22660484Sobrien ******************************************************************************/
22760484Sobrien
22860484Sobrienvoid
22960484SobrienAePrintException (
23060484Sobrien    UINT32                  FileId,
23160484Sobrien    ASL_ERROR_MSG           *Enode,
23260484Sobrien    char                    *Header)
23360484Sobrien{
23460484Sobrien    UINT8                   SourceByte;
23560484Sobrien    int                     Actual;
23660484Sobrien    size_t                  RActual;
23760484Sobrien    UINT32                  MsgLength;
23860484Sobrien    char                    *MainMessage;
23960484Sobrien    char                    *ExtraMessage;
24060484Sobrien    UINT32                  SourceColumn;
24160484Sobrien    UINT32                  ErrorColumn;
24260484Sobrien    FILE                    *OutputFile;
24360484Sobrien    FILE                    *SourceFile;
24460484Sobrien
24560484Sobrien
24660484Sobrien    if (Gbl_NoErrors)
24760484Sobrien    {
24860484Sobrien        return;
24960484Sobrien    }
25060484Sobrien
25160484Sobrien    /*
252     * Only listing files have a header, and remarks/optimizations
253     * are always output
254     */
255    if (!Header)
256    {
257        /* Ignore remarks if requested */
258
259        switch (Enode->Level)
260        {
261        case ASL_REMARK:
262            if (!Gbl_DisplayRemarks)
263            {
264                return;
265            }
266            break;
267
268        case ASL_OPTIMIZATION:
269            if (!Gbl_DisplayOptimizations)
270            {
271                return;
272            }
273            break;
274
275        default:
276            break;
277        }
278    }
279
280    /* Get the file handles */
281
282    OutputFile = Gbl_Files[FileId].Handle;
283
284    /* Use the merged header/source file if present, otherwise use input file */
285
286    SourceFile = Gbl_Files[ASL_FILE_SOURCE_OUTPUT].Handle;
287    if (!SourceFile)
288    {
289        SourceFile = Gbl_Files[ASL_FILE_INPUT].Handle;
290    }
291
292    if (Header)
293    {
294        fprintf (OutputFile, "%s", Header);
295    }
296
297    /* Print filename and line number if present and valid */
298
299    if (Enode->Filename)
300    {
301        if (Gbl_VerboseErrors)
302        {
303            fprintf (OutputFile, "%6s", Enode->Filename);
304
305            if (Enode->LineNumber)
306            {
307                fprintf (OutputFile, "%6u: ", Enode->LineNumber);
308
309                /*
310                 * Seek to the offset in the combined source file, read the source
311                 * line, and write it to the output.
312                 */
313                Actual = fseek (SourceFile, (long) Enode->LogicalByteOffset,
314                            (int) SEEK_SET);
315                if (Actual)
316                {
317                    fprintf (OutputFile,
318                        "[*** iASL: Seek error on source code temp file %s ***]",
319                        Gbl_Files[ASL_FILE_SOURCE_OUTPUT].Filename);
320                }
321                else
322                {
323                    RActual = fread (&SourceByte, 1, 1, SourceFile);
324                    if (!RActual)
325                    {
326                        fprintf (OutputFile,
327                            "[*** iASL: Read error on source code temp file %s ***]",
328                            Gbl_Files[ASL_FILE_SOURCE_OUTPUT].Filename);
329                    }
330
331                    else while (RActual && SourceByte && (SourceByte != '\n'))
332                    {
333                        fwrite (&SourceByte, 1, 1, OutputFile);
334                        RActual = fread (&SourceByte, 1, 1, SourceFile);
335                    }
336                }
337                fprintf (OutputFile, "\n");
338            }
339        }
340        else
341        {
342            fprintf (OutputFile, "%s", Enode->Filename);
343
344            if (Enode->LineNumber)
345            {
346                fprintf (OutputFile, "(%u) : ", Enode->LineNumber);
347            }
348        }
349    }
350
351    /* NULL message ID, just print the raw message */
352
353    if (Enode->MessageId == 0)
354    {
355        fprintf (OutputFile, "%s\n", Enode->Message);
356    }
357    else
358    {
359        /* Decode the message ID */
360
361        fprintf (OutputFile, "%s %4.4d -",
362                    AslErrorLevel[Enode->Level],
363                    Enode->MessageId + ((Enode->Level+1) * 1000));
364
365        MainMessage = AslMessages[Enode->MessageId];
366        ExtraMessage = Enode->Message;
367
368        if (Enode->LineNumber)
369        {
370            MsgLength = strlen (MainMessage);
371            if (MsgLength == 0)
372            {
373                MainMessage = Enode->Message;
374
375                MsgLength = strlen (MainMessage);
376                ExtraMessage = NULL;
377            }
378
379            if (Gbl_VerboseErrors)
380            {
381                SourceColumn = Enode->Column + Enode->FilenameLength + 6 + 2;
382                ErrorColumn = ASL_ERROR_LEVEL_LENGTH + 5 + 2 + 1;
383
384                if ((MsgLength + ErrorColumn) < (SourceColumn - 1))
385                {
386                    fprintf (OutputFile, "%*s%s",
387                        (int) ((SourceColumn - 1) - ErrorColumn),
388                        MainMessage, " ^ ");
389                }
390                else
391                {
392                    fprintf (OutputFile, "%*s %s",
393                        (int) ((SourceColumn - ErrorColumn) + 1), "^",
394                        MainMessage);
395                }
396            }
397            else
398            {
399                fprintf (OutputFile, " %s", MainMessage);
400            }
401
402            /* Print the extra info message if present */
403
404            if (ExtraMessage)
405            {
406                fprintf (OutputFile, " (%s)", ExtraMessage);
407            }
408
409            fprintf (OutputFile, "\n");
410            if (Gbl_VerboseErrors)
411            {
412                fprintf (OutputFile, "\n");
413            }
414        }
415        else
416        {
417            fprintf (OutputFile, " %s %s\n\n", MainMessage, ExtraMessage);
418        }
419    }
420}
421
422
423/*******************************************************************************
424 *
425 * FUNCTION:    AePrintErrorLog
426 *
427 * PARAMETERS:  FileId           - Where to output the error log
428 *
429 * RETURN:      None
430 *
431 * DESCRIPTION: Print the entire contents of the error log
432 *
433 ******************************************************************************/
434
435void
436AePrintErrorLog (
437    UINT32                  FileId)
438{
439    ASL_ERROR_MSG           *Enode = Gbl_ErrorLog;
440
441
442    /* Walk the error node list */
443
444    while (Enode)
445    {
446        AePrintException (FileId, Enode, NULL);
447        Enode = Enode->Next;
448    }
449}
450
451
452/*******************************************************************************
453 *
454 * FUNCTION:    AslCommonError
455 *
456 * PARAMETERS:  Level               - Seriousness (Warning/error, etc.)
457 *              MessageId           - Index into global message buffer
458 *              CurrentLineNumber   - Actual file line number
459 *              LogicalLineNumber   - Cumulative line number
460 *              LogicalByteOffset   - Byte offset in source file
461 *              Column              - Column in current line
462 *              Filename            - source filename
463 *              ExtraMessage        - additional error message
464 *
465 * RETURN:      None
466 *
467 * DESCRIPTION: Create a new error node and add it to the error log
468 *
469 ******************************************************************************/
470
471void
472AslCommonError (
473    UINT8                   Level,
474    UINT8                   MessageId,
475    UINT32                  CurrentLineNumber,
476    UINT32                  LogicalLineNumber,
477    UINT32                  LogicalByteOffset,
478    UINT32                  Column,
479    char                    *Filename,
480    char                    *ExtraMessage)
481{
482    UINT32                  MessageSize;
483    char                    *MessageBuffer = NULL;
484    ASL_ERROR_MSG           *Enode;
485
486
487    Enode = UtLocalCalloc (sizeof (ASL_ERROR_MSG));
488
489    if (ExtraMessage)
490    {
491        /* Allocate a buffer for the message and a new error node */
492
493        MessageSize   = strlen (ExtraMessage) + 1;
494        MessageBuffer = UtLocalCalloc (MessageSize);
495
496        /* Keep a copy of the extra message */
497
498        ACPI_STRCPY (MessageBuffer, ExtraMessage);
499    }
500
501    /* Initialize the error node */
502
503    if (Filename)
504    {
505        Enode->Filename       = Filename;
506        Enode->FilenameLength = strlen (Filename);
507        if (Enode->FilenameLength < 6)
508        {
509            Enode->FilenameLength = 6;
510        }
511    }
512
513    Enode->MessageId            = MessageId;
514    Enode->Level                = Level;
515    Enode->LineNumber           = CurrentLineNumber;
516    Enode->LogicalLineNumber    = LogicalLineNumber;
517    Enode->LogicalByteOffset    = LogicalByteOffset;
518    Enode->Column               = Column;
519    Enode->Message              = MessageBuffer;
520
521    /* Add the new node to the error node list */
522
523    AeAddToErrorLog (Enode);
524
525    if (Gbl_DebugFlag)
526    {
527        /* stderr is a file, send error to it immediately */
528
529        AePrintException (ASL_FILE_STDERR, Enode, NULL);
530    }
531
532    Gbl_ExceptionCount[Level]++;
533    if (Gbl_ExceptionCount[ASL_ERROR] > ASL_MAX_ERROR_COUNT)
534    {
535        printf ("\nMaximum error count (%u) exceeded\n", ASL_MAX_ERROR_COUNT);
536
537        Gbl_SourceLine = 0;
538        Gbl_NextError = Gbl_ErrorLog;
539        CmDoOutputFiles ();
540        CmCleanupAndExit ();
541        exit(1);
542    }
543
544    return;
545}
546
547
548/*******************************************************************************
549 *
550 * FUNCTION:    AslError
551 *
552 * PARAMETERS:  Level               - Seriousness (Warning/error, etc.)
553 *              MessageId           - Index into global message buffer
554 *              Op                  - Parse node where error happened
555 *              ExtraMessage        - additional error message
556 *
557 * RETURN:      None
558 *
559 * DESCRIPTION: Main error reporting routine for the ASL compiler (all code
560 *              except the parser.)
561 *
562 ******************************************************************************/
563
564void
565AslError (
566    UINT8                   Level,
567    UINT8                   MessageId,
568    ACPI_PARSE_OBJECT       *Op,
569    char                    *ExtraMessage)
570{
571
572    switch (Level)
573    {
574    case ASL_WARNING2:
575    case ASL_WARNING3:
576        if (Gbl_WarningLevel < Level)
577        {
578            return;
579        }
580        break;
581
582    default:
583        break;
584    }
585
586
587    if (Op)
588    {
589        AslCommonError (Level, MessageId, Op->Asl.LineNumber,
590                        Op->Asl.LogicalLineNumber,
591                        Op->Asl.LogicalByteOffset,
592                        Op->Asl.Column,
593                        Op->Asl.Filename, ExtraMessage);
594    }
595    else
596    {
597        AslCommonError (Level, MessageId, 0,
598                        0, 0, 0, NULL, ExtraMessage);
599    }
600}
601
602
603/*******************************************************************************
604 *
605 * FUNCTION:    AslCoreSubsystemError
606 *
607 * PARAMETERS:  Op                  - Parse node where error happened
608 *              Status              - The ACPI CA Exception
609 *              ExtraMessage        - additional error message
610 *              Abort               - TRUE -> Abort compilation
611 *
612 * RETURN:      None
613 *
614 * DESCRIPTION: Error reporting routine for exceptions returned by the ACPI
615 *              CA core subsystem.
616 *
617 ******************************************************************************/
618
619void
620AslCoreSubsystemError (
621    ACPI_PARSE_OBJECT       *Op,
622    ACPI_STATUS             Status,
623    char                    *ExtraMessage,
624    BOOLEAN                 Abort)
625{
626
627    sprintf (MsgBuffer, "%s %s", AcpiFormatException (Status), ExtraMessage);
628
629    if (Op)
630    {
631        AslCommonError (ASL_ERROR, ASL_MSG_CORE_EXCEPTION, Op->Asl.LineNumber,
632                        Op->Asl.LogicalLineNumber,
633                        Op->Asl.LogicalByteOffset,
634                        Op->Asl.Column,
635                        Op->Asl.Filename, MsgBuffer);
636    }
637    else
638    {
639        AslCommonError (ASL_ERROR, ASL_MSG_CORE_EXCEPTION, 0,
640                        0, 0, 0, NULL, MsgBuffer);
641    }
642
643    if (Abort)
644    {
645        AslAbort ();
646    }
647}
648
649
650/*******************************************************************************
651 *
652 * FUNCTION:    AslCompilererror
653 *
654 * PARAMETERS:  CompilerMessage         - Error message from the parser
655 *
656 * RETURN:      Status (0 for now)
657 *
658 * DESCRIPTION: Report an error situation discovered in a production
659 *              NOTE: don't change the name of this function, it is called
660 *              from the auto-generated parser.
661 *
662 ******************************************************************************/
663
664int
665AslCompilererror (
666    char                    *CompilerMessage)
667{
668
669    AslCommonError (ASL_ERROR, ASL_MSG_SYNTAX, Gbl_CurrentLineNumber,
670                    Gbl_LogicalLineNumber, Gbl_CurrentLineOffset,
671                    Gbl_CurrentColumn, Gbl_Files[ASL_FILE_INPUT].Filename,
672                    CompilerMessage);
673
674    return 0;
675}
676
677
678