]> andersk Git - splint.git/blame - src/cppmain.c
commitng to fix cvs archive. Code works with gcc272 but not 295. Currently passed...
[splint.git] / src / cppmain.c
CommitLineData
885824d3 1/*
2** LCLint - annotation-assisted static program checker
3** Copyright (C) 1994-2000 University of Virginia,
4** Massachusetts Institute of Technology
5**
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.
10**
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.
15**
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.
19**
20** For information on lclint: lclint-request@cs.virginia.edu
21** To report a bug: lclint-bug@cs.virginia.edu
22** For more information: http://lclint.cs.virginia.edu
23*/
24/*
25** cppmain.c
26*/
27/* CPP main program, using CPP Library.
28 Copyright (C) 1995 Free Software Foundation, Inc.
29 Written by Per Bothner, 1994-95.
30
31This program is free software; you can redistribute it and/or modify it
32under the terms of the GNU General Public License as published by the
33Free Software Foundation; either version 2, or (at your option) any
34later version.
35
36This program is distributed in the hope that it will be useful,
37but WITHOUT ANY WARRANTY; without even the implied warranty of
38MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
39GNU General Public License for more details.
40
41You should have received a copy of the GNU General Public License
42along with this program; if not, write to the Free Software
43Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
44
45 In other words, you are welcome to use, share and improve this program.
46 You are forbidden to forbid anyone else to use, share and improve
47 what you give them. Help stamp out software-hoarding! */
48
49# include "lclintMacros.nf"
50# include "llbasic.h"
51# include "cpp.h"
52# include "cpplib.h"
53# include "cpphash.h"
54# include "cpperror.h"
55# include "llmain.h"
56
57# include <stdio.h>
58
59# ifdef WIN32
60/*@-ansireserved@*/
61extern /*@external@*/ /*@observer@*/ char *getenv (const char *);
62/*@=ansireserved@*/
63# endif
64
65/* char *progname; */
66
67cppReader g_cppState;
68
69#ifdef abort
70/* More 'friendly' abort that prints the line and file.
71 config.h can #define abort fancy_abort if you like that sort of thing. */
72
73void
74fancy_abort ()
75{
76 fatal ("Internal gcc abort.");
77}
78#endif
79
80void cppReader_initMod ()
81{
82 struct cppOptions *opts = (struct cppOptions *) dmalloc (sizeof (*opts));
83
84 cppReader_init (&g_cppState);
85 llassert (g_cppState.opts == NULL);
86 g_cppState.opts = opts;
87
88 cppOptions_init (opts);
89 /*@-compdef@*/ /* g_cppState is not yet innitialized */
90} /*@=compdef@*/
91
92void cppReader_initialize ()
93{
94 cppReader_initializeReader (&g_cppState);
95}
96
97int cppProcess (/*@dependent@*/ cstring infile,
98 /*@dependent@*/ cstring outfile)
99{
100 FILE *ofile;
101 struct cppOptions *opts = CPPOPTIONS (&g_cppState);
102
103 opts->out_fname = outfile;
104 opts->in_fname = infile;
105 opts->out_fname = outfile;
106
107 if (cppFatalErrors (&g_cppState))
108 {
109 llexit (LLFAILURE);
110 }
111
112 g_cppState.show_column = TRUE;
113
114 if (cppReader_startProcess (&g_cppState, opts->in_fname) == 0)
115 {
116 llexit (LLFAILURE);
117 }
118
119 ofile = fopen (cstring_toCharsSafe (outfile), "w");
120
121 if (ofile == NULL)
122 {
123 fileTable_noDelete (context_fileTable (), outfile);
124 llfatalerror (message ("Cannot create temporary file for "
125 "pre-processor output. Trying to "
126 "open: %s. Use -tmpdir to change "
127 "the directory for temporary files.",
128 outfile));
129 }
130
131 for (;;)
132 {
133 enum cpp_token kind;
134
135 llassert (g_cppState.token_buffer != NULL);
136
137 if (!opts->no_output)
138 {
139 (void) fwrite (g_cppState.token_buffer, (size_t) 1,
140 cppReader_getWritten (&g_cppState), ofile);
141 }
142
143 cppReader_setWritten (&g_cppState, 0);
144 kind = cppGetToken (&g_cppState);
145
146 if (kind == CPP_EOF)
147 break;
148 }
149
150 cppReader_finish (&g_cppState);
151 check (fclose (ofile) == 0);
152
153 /* Resotre the original definition table. */
154
155 if (!context_getFlag (FLG_SINGLEINCLUDE))
156 {
157 cppReader_restoreHashtab ();
158 }
159
160
161 /* Undefine everything from this file! */
162
163 if (g_cppState.errors != 0) {
164 return -1;
165 }
166
167 return 0;
168}
169
170void cppAddIncludeDir (cstring dir)
171{
172 /* -I option (Add directory to include path) */
173 struct file_name_list *dirtmp = (struct file_name_list *) dmalloc (sizeof (*dirtmp));
174
175 DPRINTF (("Add include: %s", dir));
176
177 dirtmp->next = 0; /* New one goes on the end */
178 dirtmp->control_macro = 0;
a0a162cd 179 dirtmp->c_system_include_path = FALSE;
885824d3 180
181 /* This copy is necessary...but shouldn't be? */
182 /*@-onlytrans@*/
183 dirtmp->fname = cstring_copy (dir);
184 /*@=onlytrans@*/
185
a0a162cd 186 dirtmp->got_name_map = FALSE;
885824d3 187 cppReader_addIncludeChain (&g_cppState, dirtmp);
188}
189
190void cppDoDefine (cstring str)
191{
192 cppBuffer *tbuf = g_cppState.buffer;
193
194 g_cppState.buffer = NULL;
195 cppReader_define (&g_cppState, cstring_toCharsSafe (str));
196 g_cppState.buffer = tbuf;
197}
198
199void cppDoUndefine (cstring str)
200{
201 int sym_length;
202 HASHNODE *hp;
203 char *buf = cstring_toCharsSafe (str);
204
205 sym_length = cppReader_checkMacroName (&g_cppState, buf,
206 cstring_makeLiteralTemp ("macro"));
207
208 while ((hp = cppReader_lookup (buf, sym_length, -1)) != NULL)
209 {
210 /*@-exposetrans@*/ /*@-dependenttrans@*/
211 cppReader_deleteMacro (hp);
212 /*@=exposetrans@*/ /*@=dependenttrans@*/
213 }
214}
215
216void cppReader_saveDefinitions ()
217{
218 if (!context_getFlag (FLG_SINGLEINCLUDE))
219 {
220 cppReader_saveHashtab ();
221 }
222}
This page took 0.102102 seconds and 5 git commands to generate.