2000-05-28 13:40:48 +00:00
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/* */
|
2000-08-01 21:36:45 +00:00
|
|
|
|
/* error.c */
|
2000-05-28 13:40:48 +00:00
|
|
|
|
/* */
|
2000-08-01 21:36:45 +00:00
|
|
|
|
/* Error handling for the ca65 macroassembler */
|
2000-05-28 13:40:48 +00:00
|
|
|
|
/* */
|
|
|
|
|
/* */
|
|
|
|
|
/* */
|
2003-03-17 10:14:43 +00:00
|
|
|
|
/* (C) 1998-2003 Ullrich von Bassewitz */
|
2003-11-08 17:20:21 +00:00
|
|
|
|
/* R<>merstra<72>e 52 */
|
2003-03-17 10:14:43 +00:00
|
|
|
|
/* D-70794 Filderstadt */
|
|
|
|
|
/* EMail: uz@cc65.org */
|
2000-05-28 13:40:48 +00:00
|
|
|
|
/* */
|
|
|
|
|
/* */
|
|
|
|
|
/* This software is provided 'as-is', without any expressed or implied */
|
|
|
|
|
/* warranty. In no event will the authors be held liable for any damages */
|
|
|
|
|
/* arising from the use of this software. */
|
|
|
|
|
/* */
|
|
|
|
|
/* Permission is granted to anyone to use this software for any purpose, */
|
|
|
|
|
/* including commercial applications, and to alter it and redistribute it */
|
|
|
|
|
/* freely, subject to the following restrictions: */
|
|
|
|
|
/* */
|
|
|
|
|
/* 1. The origin of this software must not be misrepresented; you must not */
|
|
|
|
|
/* claim that you wrote the original software. If you use this software */
|
|
|
|
|
/* in a product, an acknowledgment in the product documentation would be */
|
|
|
|
|
/* appreciated but is not required. */
|
|
|
|
|
/* 2. Altered source versions must be plainly marked as such, and must not */
|
|
|
|
|
/* be misrepresented as being the original software. */
|
|
|
|
|
/* 3. This notice may not be removed or altered from any source */
|
|
|
|
|
/* distribution. */
|
|
|
|
|
/* */
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <stdarg.h>
|
2000-08-02 14:12:36 +00:00
|
|
|
|
|
2000-08-01 21:36:45 +00:00
|
|
|
|
/* ca65 */
|
|
|
|
|
#include "filetab.h"
|
2000-06-03 11:15:11 +00:00
|
|
|
|
#include "nexttok.h"
|
2000-05-28 13:40:48 +00:00
|
|
|
|
#include "error.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/* Data */
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Warning level */
|
2003-11-07 19:28:37 +00:00
|
|
|
|
unsigned WarnLevel = 1;
|
2000-05-28 13:40:48 +00:00
|
|
|
|
|
|
|
|
|
/* Statistics */
|
|
|
|
|
unsigned ErrorCount = 0;
|
|
|
|
|
unsigned WarningCount = 0;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/* Warnings */
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-11-08 17:20:21 +00:00
|
|
|
|
void WarningMsg (const FilePos* Pos, unsigned Level, const char* Format, va_list ap)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
/* Print warning message. */
|
|
|
|
|
{
|
2003-11-08 17:20:21 +00:00
|
|
|
|
if (Level <= WarnLevel) {
|
|
|
|
|
fprintf (stderr, "%s(%lu): Warning: ",
|
|
|
|
|
GetFileName (Pos->Name), Pos->Line);
|
|
|
|
|
vfprintf (stderr, Format, ap);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
fprintf (stderr, "\n");
|
|
|
|
|
++WarningCount;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-11-08 17:20:21 +00:00
|
|
|
|
void Warning (unsigned Level, const char* Format, ...)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
/* Print warning message. */
|
|
|
|
|
{
|
|
|
|
|
va_list ap;
|
2003-11-08 17:20:21 +00:00
|
|
|
|
va_start (ap, Format);
|
|
|
|
|
WarningMsg (&CurPos, Level, Format, ap);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
va_end (ap);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-11-08 17:20:21 +00:00
|
|
|
|
void PWarning (const FilePos* Pos, unsigned Level, const char* Format, ...)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
/* Print warning message giving an explicit file and position. */
|
|
|
|
|
{
|
|
|
|
|
va_list ap;
|
2003-11-08 17:20:21 +00:00
|
|
|
|
va_start (ap, Format);
|
|
|
|
|
WarningMsg (Pos, Level, Format, ap);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
va_end (ap);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/* Errors */
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-11-08 17:20:21 +00:00
|
|
|
|
void ErrorMsg (const FilePos* Pos, const char* Format, va_list ap)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
/* Print an error message */
|
|
|
|
|
{
|
2003-11-08 17:20:21 +00:00
|
|
|
|
fprintf (stderr, "%s(%lu): Error: ",
|
|
|
|
|
GetFileName (Pos->Name), Pos->Line);
|
|
|
|
|
vfprintf (stderr, Format, ap);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
fprintf (stderr, "\n");
|
|
|
|
|
++ErrorCount;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-11-08 17:20:21 +00:00
|
|
|
|
void Error (const char* Format, ...)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
/* Print an error message */
|
|
|
|
|
{
|
|
|
|
|
va_list ap;
|
2003-11-08 17:20:21 +00:00
|
|
|
|
va_start (ap, Format);
|
|
|
|
|
ErrorMsg (&CurPos, Format, ap);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
va_end (ap);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-11-08 17:20:21 +00:00
|
|
|
|
void PError (const FilePos* Pos, const char* Format, ...)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
/* Print an error message giving an explicit file and position. */
|
|
|
|
|
{
|
|
|
|
|
va_list ap;
|
2003-11-08 17:20:21 +00:00
|
|
|
|
va_start (ap, Format);
|
|
|
|
|
ErrorMsg (Pos, Format, ap);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
va_end (ap);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-11-08 17:20:21 +00:00
|
|
|
|
void ErrorSkip (const char* Format, ...)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
/* Print an error message and skip the rest of the line */
|
|
|
|
|
{
|
|
|
|
|
va_list ap;
|
2003-11-08 17:20:21 +00:00
|
|
|
|
va_start (ap, Format);
|
|
|
|
|
ErrorMsg (&CurPos, Format, ap);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
va_end (ap);
|
|
|
|
|
|
|
|
|
|
SkipUntilSep ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
/* Code */
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2003-11-08 17:20:21 +00:00
|
|
|
|
void Fatal (const char* Format, ...)
|
2000-05-28 13:40:48 +00:00
|
|
|
|
/* Print a message about a fatal error and die */
|
|
|
|
|
{
|
|
|
|
|
va_list ap;
|
|
|
|
|
|
2003-11-08 17:20:21 +00:00
|
|
|
|
va_start (ap, Format);
|
|
|
|
|
fprintf (stderr, "Fatal error: ");
|
|
|
|
|
vfprintf (stderr, Format, ap);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
fprintf (stderr, "\n");
|
|
|
|
|
va_end (ap);
|
|
|
|
|
|
|
|
|
|
/* And die... */
|
|
|
|
|
exit (EXIT_FAILURE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Internal (const char* Format, ...)
|
|
|
|
|
/* Print a message about an internal compiler error and die. */
|
|
|
|
|
{
|
|
|
|
|
va_list ap;
|
2003-11-08 17:20:21 +00:00
|
|
|
|
va_start (ap, Format);
|
2000-05-28 13:40:48 +00:00
|
|
|
|
fprintf (stderr, "Internal assembler error\n");
|
|
|
|
|
vfprintf (stderr, Format, ap);
|
|
|
|
|
va_end (ap);
|
|
|
|
|
fprintf (stderr, "\n");
|
|
|
|
|
|
|
|
|
|
exit (EXIT_FAILURE);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|