2 ** Splint - annotation-assisted static program checker
3 ** Copyright (C) 1994-2003 University of Virginia,
4 ** Massachusetts Institute of Technology
6 ** This program is free software; you can redistribute it and/or modify it
7 ** under the terms of the GNU General Public License as published by the
8 ** Free Software Foundation; either version 2 of the License, or (at your
9 ** option) any later version.
11 ** This program is distributed in the hope that it will be useful, but
12 ** WITHOUT ANY WARRANTY; without even the implied warranty of
13 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 ** General Public License for more details.
16 ** The GNU General Public License is available from http://www.gnu.org/ or
17 ** the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
18 ** MA 02111-1307, USA.
20 ** For information on splint: info@splint.org
21 ** To report a bug: splint-bug@splint.org
22 ** For more information: http://www.splint.org
27 /* Default error handlers for CPP Library.
28 Copyright (C) 1986, 87, 89, 92, 93, 94, 1995 Free Software Foundation, Inc.
29 Written by Per Bothner, 1994.
30 Based on CCCP program by by Paul Rubin, June 1986
31 Adapted to ANSI C, Richard Stallman, Jan 1987
33 This program is free software; you can redistribute it and/or modify it
34 under the terms of the GNU General Public License as published by the
35 Free Software Foundation; either version 2, or (at your option) any
38 This program is distributed in the hope that it will be useful,
39 but WITHOUT ANY WARRANTY; without even the implied warranty of
40 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
41 GNU General Public License for more details.
43 You should have received a copy of the GNU General Public License
44 along with this program; if not, write to the Free Software
45 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
47 In other words, you are welcome to use, share and improve this program.
48 You are forbidden to forbid anyone else to use, share and improve
49 what you give them. Help stamp out software-hoarding! */
58 /*@-loopswitchbreak@*/
59 /*@-switchloopbreak@*/
76 /*@+matchanyintegral@*/
77 /*@-onlyunqglobaltrans@*/
84 # include "splintMacros.nf"
87 # include "cpperror.h"
89 static void cppReader_warningWithLine (cppReader
*p_pfile
,
90 int p_line
, int p_column
,
91 /*@only@*/ cstring p_msg
);
93 static /*@only@*/ fileloc
cppReader_getLoc (cppReader
*);
95 /* Print the file names and line numbers of the #include
96 commands which led to the current file. */
98 static void cppReader_printContainingFiles (cppReader
*pfile
)
99 /*@modifies g_warningstream, p_pfile@*/
105 /* Error processing command line. */
109 /* If stack of files hasn't changed since we last printed
110 this info, don't repeat it. */
111 if (pfile
->input_stack_listing_current
)
116 ip
= cppReader_fileBuffer (pfile
);
118 /* Give up if we don't find a source file. */
124 /* Find the other, outer source files. */
125 while ((ip
= cppBuffer_prevBuffer (ip
)) != cppReader_nullBuffer (pfile
))
130 cppBuffer_getLineAndColumn (ip
, &line
, &col
);
131 if (ip
->fname
!= NULL
)
136 fprintf (g_warningstream
, " In file included");
139 fprintf (g_warningstream
, ",\n ");
142 fprintf (g_warningstream
, " from %s",
143 cstring_toCharsSafe (temps
= fileloc_unparseRaw (ip
->nominal_fname
, line
)));
145 cstring_free (temps
);
150 fprintf (g_warningstream
, "\n");
153 /* Record we have printed the status as of this time. */
154 pfile
->input_stack_listing_current
= TRUE
;
157 bool xcppoptgenerror (const char *srcFile
, int srcLine
,
159 /*@only@*/ cstring s
,
163 fileloc loc
= cppReader_getLoc (pfile
);
165 if (context_flagOn (o
, loc
))
167 if (xlloptgenerror (srcFile
, srcLine
, o
, s
, loc
))
169 cppReader_printContainingFiles (pfile
);
183 /* IS_ERROR is 2 for "fatal" error, 1 for error, 0 for warning */
186 cppReader_message (cppReader
*pfile
, int is_error
, /*@only@*/ cstring msg
)
190 /* fprintf (stderr, "warning: "); */
192 else if (is_error
== 2)
194 pfile
->errors
= cppReader_fatalErrorLimit
;
196 else if (pfile
->errors
< cppReader_fatalErrorLimit
)
205 fprintf (stderr
, "%s", cstring_toCharsSafe (msg
));
206 fprintf (stderr
, "\n");
209 /* Same as cppReader_error, except we consider the error to be "fatal",
210 such as inconsistent options. I.e. there is little point in continuing.
211 (We do not exit, to support use of cpplib as a library.
212 Instead, it is the caller's responsibility to check
213 cpplib_fatalErrors. */
216 cppReader_fatalError (cppReader
*pfile
, /*@only@*/ cstring str
)
218 fprintf (stderr
, "preprocessor: ");
219 cppReader_message (pfile
, 2, str
);
224 cppReader_pfatalWithName (cppReader
*pfile
, cstring name
)
226 cppReader_perrorWithName (pfile
, name
);
227 exit (FATAL_EXIT_CODE
);
229 # endif /* DEADCODE */
231 static /*@only@*/ fileloc
232 cppReader_getLoc (cppReader
*pfile
)
234 cppBuffer
*ip
= cppReader_fileBuffer (pfile
);
236 if (ip
!= NULL
&& ip
->buf
!= NULL
)
239 cstring fname
= ip
->nominal_fname
;
240 fileId fid
= fileTable_lookup (context_fileTable (), fname
);
242 if (!fileId_isValid (fid
))
245 ** filename used in #line comment is new
248 fid
= fileTable_addFile (context_fileTable (), FILE_NORMAL
, fname
);
251 cppBuffer_getLineAndColumn (ip
, &line
, &col
);
252 return fileloc_create (fid
, line
, col
);
256 return fileloc_createBuiltin ();
261 cppReader_errorLit (cppReader
*pfile
, /*@observer@*/ cstring msg
)
263 cppReader_error (pfile
, cstring_copy (msg
));
267 cppReader_error (cppReader
*pfile
, /*@only@*/ cstring msg
)
269 if (cppoptgenerror (FLG_PREPROC
, msg
, pfile
))
275 /* Print error message but don't count it. */
278 cppReader_warningLit (cppReader
*pfile
, cstring msg
)
280 cppReader_warning (pfile
, cstring_copy (msg
));
284 cppReader_warning (cppReader
*pfile
, /*@only@*/ cstring msg
)
286 if (CPPOPTIONS (pfile
)->warnings_are_errors
)
289 cppoptgenerror (FLG_PREPROC
, msg
, pfile
);
292 /* Print an error message and maybe count it. */
295 cppReader_pedwarnLit (cppReader
*pfile
, /*@observer@*/ cstring msg
)
297 cppReader_pedwarn (pfile
, cstring_copy (msg
));
301 cppReader_pedwarn (cppReader
*pfile
, /*@only@*/ cstring msg
)
303 if (CPPOPTIONS (pfile
)->pedantic_errors
)
305 cppReader_error (pfile
, msg
);
309 cppReader_warning (pfile
, msg
);
314 cppReader_errorWithLine (cppReader
*pfile
, int line
, int column
,
315 /*@only@*/ cstring msg
)
317 fileloc loc
= cppReader_getLoc (pfile
);
318 fileloc_setLineno (loc
, line
);
319 fileloc_setColumn (loc
, column
);
321 cppoptgenerror (FLG_PREPROC
, message ("%s: %s",
322 fileloc_unparse (loc
),
328 cppReader_warningWithLine (cppReader
*pfile
,
329 int line
, int column
,
330 /*@only@*/ cstring msg
)
332 if (CPPOPTIONS (pfile
)->warnings_are_errors
)
335 cppReader_errorWithLine (pfile
, line
, column
, msg
);
339 cppReader_pedwarnWithLine (cppReader
*pfile
, int line
, int column
,
340 /*@only@*/ cstring msg
)
342 if (CPPOPTIONS (pfile
)->pedantic_errors
)
344 cppReader_errorWithLine (pfile
, column
, line
, msg
);
348 cppReader_warningWithLine (pfile
, line
, column
, msg
);
352 void cppReader_perrorWithName (cppReader
*pfile
, cstring name
)
354 cppoptgenerror (FLG_PREPROC
,
355 message ("%s: Preprocessing error: %s",
356 name
, lldecodeerror (errno
)),