1 /*****************************************************************************/
5 /* Error handling for the cc65 C compiler */
9 /* (C) 1998-2000 Ullrich von Bassewitz */
11 /* D-70597 Stuttgart */
12 /* EMail: uz@musoftware.de */
15 /* This software is provided 'as-is', without any expressed or implied */
16 /* warranty. In no event will the authors be held liable for any damages */
17 /* arising from the use of this software. */
19 /* Permission is granted to anyone to use this software for any purpose, */
20 /* including commercial applications, and to alter it and redistribute it */
21 /* freely, subject to the following restrictions: */
23 /* 1. The origin of this software must not be misrepresented; you must not */
24 /* claim that you wrote the original software. If you use this software */
25 /* in a product, an acknowledgment in the product documentation would be */
26 /* appreciated but is not required. */
27 /* 2. Altered source versions must be plainly marked as such, and must not */
28 /* be misrepresented as being the original software. */
29 /* 3. This notice may not be removed or altered from any source */
32 /*****************************************************************************/
41 /*****************************************************************************/
43 /*****************************************************************************/
49 WARN_NONE, /* No warning */
50 WARN_UNREACHABLE_CODE,
52 WARN_COND_ALWAYS_TRUE,
55 WARN_FUNC_WITHOUT_PROTO,
58 WARN_FUNC_MUST_BE_EXTERN,
61 WARN_CONSTANT_IS_LONG,
64 WARN_COUNT /* Warning count */
69 ERR_NONE, /* No error */
71 ERR_UNEXPECTED_NEWLINE,
76 ERR_SEMICOLON_EXPECTED,
85 ERR_INCOMPATIBLE_TYPES,
86 ERR_INCOMPATIBLE_POINTERS,
87 ERR_TOO_MANY_FUNC_ARGS,
88 ERR_TOO_FEW_FUNC_ARGS,
90 ERR_DUPLICATE_MACRO_ARG,
91 ERR_VAR_IDENT_EXPECTED,
92 ERR_INT_EXPR_EXPECTED,
93 ERR_CONST_EXPR_EXPECTED,
95 ERR_INCLUDE_LTERM_EXPECTED,
96 ERR_INCLUDE_RTERM_EXPECTED,
97 ERR_INCLUDE_NOT_FOUND,
98 ERR_INCLUDE_OPEN_FAILURE,
99 ERR_INVALID_USER_ERROR,
101 ERR_UNEXPECTED_CPP_ENDIF,
102 ERR_UNEXPECTED_CPP_ELSE,
103 ERR_CPP_ENDIF_EXPECTED,
104 ERR_CPP_DIRECTIVE_EXPECTED,
105 ERR_MULTIPLE_DEFINITION,
108 ERR_MUST_RETURN_VALUE,
109 ERR_CANNOT_RETURN_VALUE,
110 ERR_UNEXPECTED_CONTINUE,
111 ERR_UNDEFINED_SYMBOL,
115 ERR_TOO_MANY_INITIALIZERS,
116 ERR_INIT_INCOMPLETE_TYPE,
117 ERR_CANNOT_SUBSCRIPT,
120 ERR_STRUCT_FIELD_MISMATCH,
121 ERR_STRUCT_PTR_EXPECTED,
124 ERR_CPP_EXPR_EXPECTED,
126 ERR_ILLEGAL_FUNC_CALL,
127 ERR_ILLEGAL_INDIRECT,
129 ERR_ILLEGAL_MACRO_CALL,
130 ERR_ILLEGAL_HEX_DIGIT,
131 ERR_ILLEGAL_CHARCONST,
132 ERR_ILLEGAL_MODIFIER,
133 ERR_ILLEGAL_STORAGE_CLASS,
134 ERR_ILLEGAL_SEG_NAME,
140 ERR_MISSING_PARAM_NAME,
143 ERR_CANNOT_TAKE_ADDR_OF_REG,
148 ERR_COUNT /* Error count */
155 FAT_CANNOT_OPEN_OUTPUT,
156 FAT_CANNOT_WRITE_OUTPUT,
157 FAT_CANNOT_OPEN_INPUT,
162 FAT_TOO_MANY_CASE_LABELS,
163 FAT_COUNT /* Fatal error count */
168 /* Count of errors/warnings */
169 extern unsigned ErrorCount;
170 extern unsigned WarningCount;
174 /*****************************************************************************/
176 /*****************************************************************************/
180 void Warning (unsigned WarnNum, ...);
181 /* Print warning message. */
183 void PPWarning (unsigned WarnNum, ...);
184 /* Print warning message. For use within the preprocessor. */
186 void Error (unsigned ErrNum, ...);
187 /* Print an error message */
189 void PPError (unsigned ErrNum, ...);
190 /* Print an error message. For use within the preprocessor. */
192 void Fatal (unsigned FatNum, ...);
193 /* Print a message about a fatal error and die */
195 void Internal (char* Format, ...);
196 /* Print a message about an internal compiler error and die. */
198 void ErrorReport (void);
199 /* Report errors (called at end of compile) */