]> git.sur5r.net Git - cc65/blob - src/cc65/error.h
623dae4ff553459a7e3625f473d8f23774360d9c
[cc65] / src / cc65 / error.h
1 /*****************************************************************************/
2 /*                                                                           */
3 /*                                  error.h                                  */
4 /*                                                                           */
5 /*                  Error handling for the cc65 C compiler                   */
6 /*                                                                           */
7 /*                                                                           */
8 /*                                                                           */
9 /* (C) 1998-2000 Ullrich von Bassewitz                                       */
10 /*               Wacholderweg 14                                             */
11 /*               D-70597 Stuttgart                                           */
12 /* EMail:        uz@musoftware.de                                            */
13 /*                                                                           */
14 /*                                                                           */
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.                                    */
18 /*                                                                           */
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:                            */
22 /*                                                                           */
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              */
30 /*    distribution.                                                          */
31 /*                                                                           */
32 /*****************************************************************************/
33
34
35
36 #ifndef ERROR_H
37 #define ERROR_H
38
39
40
41 /*****************************************************************************/
42 /*                                   Data                                    */
43 /*****************************************************************************/
44
45
46
47 /* Warning numbers */
48 enum Warnings {
49     WARN_NONE,                          /* No warning */
50     WARN_UNREACHABLE_CODE,
51     WARN_COND_NEVER_TRUE,
52     WARN_COND_ALWAYS_TRUE,
53     WARN_PTR_TO_INT_CONV,
54     WARN_INT_TO_PTR_CONV,
55     WARN_FUNC_WITHOUT_PROTO,
56     WARN_UNKNOWN_PRAGMA,
57     WARN_NO_CASE_LABELS,
58     WARN_FUNC_MUST_BE_EXTERN,
59     WARN_UNUSED_PARM,
60     WARN_UNUSED_ITEM,
61     WARN_CONSTANT_IS_LONG,
62     WARN_NESTED_COMMENT,
63     WARN_USELESS_DECL,
64     WARN_COUNT                          /* Warning count */
65 };
66
67 /* Error numbers */
68 enum Errors {
69     ERR_NONE,                           /* No error */
70     ERR_INVALID_CHAR,
71     ERR_UNEXPECTED_NEWLINE,
72     ERR_EOF_IN_COMMENT,
73     ERR_SYNTAX,
74     ERR_QUOTE_EXPECTED,
75     ERR_COLON_EXPECTED,
76     ERR_SEMICOLON_EXPECTED,
77     ERR_LPAREN_EXPECTED,
78     ERR_RPAREN_EXPECTED,
79     ERR_LBRACK_EXPECTED,
80     ERR_RBRACK_EXPECTED,
81     ERR_LCURLY_EXPECTED,
82     ERR_RCURLY_EXPECTED,
83     ERR_IDENT_EXPECTED,
84     ERR_TYPE_EXPECTED,
85     ERR_INCOMPATIBLE_TYPES,
86     ERR_INCOMPATIBLE_POINTERS,
87     ERR_TOO_MANY_FUNC_ARGS,
88     ERR_TOO_FEW_FUNC_ARGS,
89     ERR_MACRO_ARGCOUNT,
90     ERR_DUPLICATE_MACRO_ARG,
91     ERR_VAR_IDENT_EXPECTED,
92     ERR_INT_EXPR_EXPECTED,
93     ERR_CONST_EXPR_EXPECTED,
94     ERR_NO_ACTIVE_LOOP,
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,
100     ERR_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,
106     ERR_STRLIT_EXPECTED,
107     ERR_WHILE_EXPECTED,
108     ERR_MUST_RETURN_VALUE,
109     ERR_CANNOT_RETURN_VALUE,
110     ERR_UNEXPECTED_CONTINUE,
111     ERR_UNDEFINED_SYMBOL,
112     ERR_UNDEFINED_LABEL,
113     ERR_INCLUDE_NESTING,
114     ERR_TOO_MANY_LOCALS,
115     ERR_TOO_MANY_INITIALIZERS,
116     ERR_INIT_INCOMPLETE_TYPE,
117     ERR_CANNOT_SUBSCRIPT,
118     ERR_OP_NOT_ALLOWED,
119     ERR_STRUCT_EXPECTED,
120     ERR_STRUCT_FIELD_MISMATCH,
121     ERR_STRUCT_PTR_EXPECTED,
122     ERR_LVALUE_EXPECTED,
123     ERR_EXPR_EXPECTED,
124     ERR_CPP_EXPR_EXPECTED,
125     ERR_ILLEGAL_TYPE,
126     ERR_ILLEGAL_FUNC_CALL,
127     ERR_ILLEGAL_INDIRECT,
128     ERR_ILLEGAL_ADDRESS,
129     ERR_ILLEGAL_MACRO_CALL,
130     ERR_ILLEGAL_HEX_DIGIT,
131     ERR_ILLEGAL_CHARCONST,
132     ERR_ILLEGAL_MODIFIER,
133     ERR_ILLEGAL_QUALIFIER,
134     ERR_ILLEGAL_STORAGE_CLASS,
135     ERR_ILLEGAL_SEG_NAME,
136     ERR_DIV_BY_ZERO,
137     ERR_MOD_BY_ZERO,
138     ERR_RANGE,
139     ERR_SYMBOL_KIND,
140     ERR_LEVEL_NESTING,
141     ERR_MISSING_PARAM_NAME,
142     ERR_OLD_STYLE_PROTO,
143     ERR_PARAM_DECL,
144     ERR_CANNOT_TAKE_ADDR_OF_REG,
145     ERR_ILLEGAL_SIZE,
146     ERR_FASTCALL,
147     ERR_UNKNOWN_SIZE,
148     ERR_UNKNOWN_IDENT,
149     ERR_DUPLICATE_QUALIFIER,
150     ERR_CONST_ASSIGN,
151     ERR_COUNT                           /* Error count */
152 };
153
154 /* Fatal errors */
155 enum Fatals {
156     FAT_NONE,
157     FAT_TOO_MANY_ERRORS,
158     FAT_CANNOT_OPEN_OUTPUT,
159     FAT_CANNOT_WRITE_OUTPUT,
160     FAT_CANNOT_OPEN_INPUT,
161     FAT_OUT_OF_MEMORY,
162     FAT_STACK_OVERFLOW,
163     FAT_STACK_EMPTY,
164     FAT_OUT_OF_STRSPACE,
165     FAT_TOO_MANY_CASE_LABELS,
166     FAT_COUNT                           /* Fatal error count */
167 };
168
169
170
171 /* Count of errors/warnings */
172 extern unsigned ErrorCount;
173 extern unsigned WarningCount;
174
175
176
177 /*****************************************************************************/
178 /*                                   code                                    */
179 /*****************************************************************************/
180
181
182
183 void Warning (unsigned WarnNum, ...);
184 /* Print warning message. */
185
186 void PPWarning (unsigned WarnNum, ...);
187 /* Print warning message. For use within the preprocessor. */
188
189 void Error (unsigned ErrNum, ...);
190 /* Print an error message */
191
192 void PPError (unsigned ErrNum, ...);
193 /* Print an error message. For use within the preprocessor.  */
194
195 void Fatal (unsigned FatNum, ...);
196 /* Print a message about a fatal error and die */
197
198 void Internal (char* Format, ...);
199 /* Print a message about an internal compiler error and die. */
200
201 void ErrorReport (void);
202 /* Report errors (called at end of compile) */
203
204
205
206 /* End of error.h */
207 #endif
208
209
210
211
212