c594eb8aa25b718f06b2da1c9b3e8ccd6e74baeb
[fw/sdcc] / support / cpp2 / sdcpp.c
1 /*-------------------------------------------------------------------------
2     sdcppmain.c - sdcpp: SDCC preprocessor main file, using cpplib.
3
4     Written by Borut Razem, 2006.
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, or (at your option) any
9     later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19
20     In other words, you are welcome to use, share and improve this program.
21     You are forbidden to forbid anyone else to use, share and improve
22     what you give them.   Help stamp out software-hoarding!
23 -------------------------------------------------------------------------*/
24
25 #include "config.h"
26 #include "system.h"
27 #include "cpplib.h"
28 #include "internal.h"
29 #include "version.h"
30 #include "mkdeps.h"
31 #include "opts.h"
32 #include "intl.h"
33 #include "c-pretty-print.h"
34 #include "diagnostic.h"
35
36 #define CPP_FATAL_LIMIT 1000
37 /* True if we have seen a "fatal" error.  */
38 #define CPP_FATAL_ERRORS(PFILE) (cpp_errors (PFILE) >= CPP_FATAL_LIMIT)
39
40 const char *progname;           /* Needs to be global.  */
41
42 /* From laghooks-def.h */
43 /* The whole thing.  The structure is defined in langhooks.h.  */
44 #define LANG_HOOKS_INITIALIZER { \
45   LANG_HOOKS_INIT_OPTIONS, \
46   LANG_HOOKS_INITIALIZE_DIAGNOSTICS, \
47   LANG_HOOKS_HANDLE_OPTION, \
48   LANG_HOOKS_MISSING_ARGUMENT, \
49   LANG_HOOKS_POST_OPTIONS, \
50   LANG_HOOKS_INIT, \
51   LANG_HOOKS_FINISH, \
52   LANG_HOOKS_PRINT_ERROR_FUNCTION, \
53 }
54
55 /* From c-lang.c */
56 #define LANG_HOOKS_INIT_OPTIONS sdcpp_init_options
57 #define LANG_HOOKS_INITIALIZE_DIAGNOSTICS sdcpp_initialize_diagnostics
58 #define LANG_HOOKS_HANDLE_OPTION sdcpp_common_handle_option
59 #define LANG_HOOKS_MISSING_ARGUMENT sdcpp_common_missing_argument
60 #define LANG_HOOKS_POST_OPTIONS sdcpp_common_post_options
61 #define LANG_HOOKS_INIT sdcpp_common_init
62 #define LANG_HOOKS_FINISH sdcpp_common_finish
63 #define LANG_HOOKS_PRINT_ERROR_FUNCTION sdcpp_print_error_function
64
65 static unsigned int sdcpp_init_options (unsigned int argc, const char **argv);
66 static void sdcpp_initialize_diagnostics (diagnostic_context *context);
67 static void sdcpp_print_error_function (diagnostic_context *context, const char *file);
68
69 /* Each front end provides its own lang hook initializer.  */
70 const struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
71
72 /* Name of top-level original source file (what was input to cpp).
73    This comes from the #-command at the beginning of the actual input.
74    If there isn't any there, then this is the cc1 input file name.  */
75
76 const char *main_input_filename;
77
78 #ifndef USE_MAPPED_LOCATION
79 location_t unknown_location = { NULL, 0 };
80 #endif
81
82 /* Current position in real source file.  */
83
84 location_t input_location;
85
86 struct line_maps line_table;
87
88 /* Stack of currently pending input files.  */
89
90 struct file_stack *input_file_stack;
91
92 /* Incremented on each change to input_file_stack.  */
93 int input_file_stack_tick;
94
95 /* Temporarily suppress certain warnings.
96    This is set while reading code from a system header file.  */
97
98 int in_system_header = 0;
99
100 /* Nonzero means change certain warnings into errors.
101    Usually these are warnings about failure to conform to some standard.  */
102
103 int flag_pedantic_errors = 0;
104
105 cpp_reader *parse_in;           /* Declared in c-pragma.h.  */
106
107 /* Nonzero means `char' should be signed.  */
108
109 int flag_signed_char;
110
111 /* Nonzero means don't output line number information.  */
112
113 char flag_no_line_commands;
114
115 /* Nonzero causes -E output not to be done, but directives such as
116    #define that have side effects are still obeyed.  */
117
118 char flag_no_output;
119
120 /* Nonzero means dump macros in some fashion.  */
121
122 char flag_dump_macros;
123
124 /* Nonzero means pass #include lines through to the output.  */
125
126 char flag_dump_includes;
127
128 /* 0 means we want the preprocessor to not emit line directives for
129    the current working directory.  1 means we want it to do it.  -1
130    means we should decide depending on whether debugging information
131    is being emitted or not.  */
132
133 int flag_working_directory = -1;
134
135 /* The current working directory of a translation.  It's generally the
136    directory from which compilation was initiated, but a preprocessed
137    file may specify the original directory in which it was
138    created.  */
139
140 static const char *src_pwd;
141
142 /* Initialize src_pwd with the given string, and return true.  If it
143    was already initialized, return false.  As a special case, it may
144    be called with a NULL argument to test whether src_pwd has NOT been
145    initialized yet.  */
146
147 /* From intl.c */
148 /* Opening quotation mark for diagnostics.  */
149 const char *open_quote = "'";
150
151 /* Closing quotation mark for diagnostics.  */
152 const char *close_quote = "'";
153 /* ----------- */
154
155 bool
156 set_src_pwd (const char *pwd)
157 {
158   if (src_pwd)
159     return false;
160
161   src_pwd = xstrdup (pwd);
162   return true;
163 }
164
165 /* Return the directory from which the translation unit was initiated,
166    in case set_src_pwd() was not called before to assign it a
167    different value.  */
168
169 const char *
170 get_src_pwd (void)
171 {
172   if (! src_pwd)
173     src_pwd = getpwd ();
174
175    return src_pwd;
176 }
177
178 /* SDCPP specific pragmas */
179 /* SDCC specific
180    sdcc_hash pragma */
181 static void
182 do_pragma_sdcc_hash (cpp_reader *pfile)
183 {
184     const cpp_token *tok = _cpp_lex_token (pfile);
185
186     if (tok->type == CPP_PLUS)
187     {
188         CPP_OPTION(pfile, allow_naked_hash)++;
189     }
190     else if (tok->type == CPP_MINUS)
191     {
192         CPP_OPTION(pfile, allow_naked_hash)--;
193     }
194     else
195     {
196         cpp_error (pfile, CPP_DL_ERROR,
197                    "invalid #pragma sdcc_hash directive, need '+' or '-'");
198     }
199 }
200
201 /* SDCC specific
202    pedantic_parse_number pragma */
203 static void
204 do_pragma_pedantic_parse_number (cpp_reader *pfile)
205 {
206     const cpp_token *tok = _cpp_lex_token (pfile);
207
208   if (tok->type == CPP_PLUS)
209     {
210       CPP_OPTION(pfile, pedantic_parse_number)++;
211     }
212   else if (tok->type == CPP_MINUS)
213     {
214       CPP_OPTION(pfile, pedantic_parse_number)--;
215     }
216   else
217     {
218       cpp_error (pfile, CPP_DL_ERROR,
219                  "invalid #pragma pedantic_parse_number directive, need '+' or '-'");
220     }
221 }
222
223 /* SDCC _asm specific
224    switch _asm block preprocessing on / off */
225 static void
226 do_pragma_preproc_asm (cpp_reader *pfile)
227 {
228   const cpp_token *tok = _cpp_lex_token (pfile);
229
230   if (tok->type == CPP_PLUS)
231     {
232       CPP_OPTION(pfile, preproc_asm)++;
233     }
234   else if (tok->type == CPP_MINUS)
235     {
236       CPP_OPTION(pfile, preproc_asm)--;
237     }
238   else
239     {
240       cpp_error (pfile, CPP_DL_ERROR,
241                  "invalid #pragma preproc_asm directive, need '+' or '-'");
242     }
243 }
244
245 /* SDCPP specific option initialization */
246 static unsigned int
247 sdcpp_init_options (unsigned int argc, const char **argv)
248 {
249   unsigned int ret = sdcpp_common_init_options(argc, argv);
250
251   CPP_OPTION (parse_in, preproc_asm) = 1;
252   CPP_OPTION (parse_in, pedantic_parse_number) = 0;
253   CPP_OPTION (parse_in, obj_ext) = NULL;
254
255   /* Kevin abuse for SDCC. */
256   cpp_register_pragma(parse_in, 0, "sdcc_hash", do_pragma_sdcc_hash, false);
257   /* SDCC _asm specific */
258   cpp_register_pragma(parse_in, 0, "preproc_asm", do_pragma_preproc_asm, false);
259   /* SDCC specific */
260   cpp_register_pragma(parse_in, 0, "pedantic_parse_number", do_pragma_pedantic_parse_number, false);
261
262   /* SDCC _asm specific */
263   parse_in->spec_nodes.n__asm = cpp_lookup (parse_in, DSC("_asm"));
264
265   return ret;
266 }
267
268 static void
269 sdcpp_initialize_diagnostics (diagnostic_context *context)
270 {
271   pretty_printer *base = context->printer;
272   c_pretty_printer *pp = xmalloc (sizeof (c_pretty_printer));
273   memcpy (pp_base (pp), base, sizeof (pretty_printer));
274   pp_c_pretty_printer_init (pp);
275   context->printer = (pretty_printer *) pp;
276
277   /* It is safe to free this object because it was previously malloc()'d.  */
278   free (base);
279 }
280
281 /* The default function to print out name of current function that caused
282    an error.  */
283 static void
284 sdcpp_print_error_function (diagnostic_context *context, const char *file)
285 {
286 }
287
288 /* Initialize the PRETTY-PRINTER for handling C codes.  */
289
290 void
291 pp_c_pretty_printer_init (c_pretty_printer *pp)
292 {
293 }
294
295 void
296 print_version (FILE *file, const char *indent)
297 {
298   fprintf (file, _("GNU CPP version %s (cpplib)"), version_string);
299 #ifdef TARGET_VERSION
300   TARGET_VERSION;
301 #endif
302   fputc ('\n', file);
303 }
304
305 /* Initialization of the front end environment, before command line
306    options are parsed.  Signal handlers, internationalization etc.
307    ARGV0 is main's argv[0].  */
308 static void
309 general_init (const char *argv0)
310 {
311   const char *p;
312
313   p = argv0 + strlen (argv0);
314   while (p != argv0 && !IS_DIR_SEPARATOR (p[-1]))
315     --p;
316   progname = p;
317
318   xmalloc_set_program_name (progname);
319
320   hex_init ();
321
322   gcc_init_libintl ();
323
324   /* Initialize the diagnostics reporting machinery, so option parsing
325      can give warnings and errors.  */
326   diagnostic_initialize (global_dc);
327 }
328
329 /* Process the options that have been parsed.  */
330 static void
331 process_options (void)
332 {
333   /* Allow the front end to perform consistency checks and do further
334      initialization based on the command line options.  This hook also
335      sets the original filename if appropriate (e.g. foo.i -> foo.c)
336      so we can correctly initialize debug output.  */
337   /*no_backend =*/ (*lang_hooks.post_options) (&main_input_filename);
338   input_filename = main_input_filename;
339 }
340
341 #if 0
342 /* A warning.  Use this for code which is correct according to the
343    relevant language specification but is likely to be buggy anyway.  */
344 void
345 warning (const char *msgid, ...)
346 {
347   va_list ap;
348
349   va_start (ap, msgid);
350   fprintf (stderr, "%s: error: ", progname);
351   vfprintf (stderr, msgid, ap);
352   va_end (ap);
353 }
354
355 /* A hard error: the code is definitely ill-formed, and an object file
356    will not be produced.  */
357 void
358 error (const char *msgid, ...)
359 {
360   va_list ap;
361
362   va_start (ap, msgid);
363   fprintf (stderr, "%s: warning: ", progname);
364   vfprintf (stderr, msgid, ap);
365   va_end (ap);
366 }
367
368 /* Print a fatal I/O error message.  Argument are like printf.
369    Also include a system error message based on `errno'.  */
370 void
371 fatal_io_error (const char *msgid, ...)
372 {
373   va_list ap;
374
375   va_start (ap, msgid);
376   fprintf (stderr, "%s: %s: ", progname, xstrerror (errno));
377   vfprintf(stderr, msgid, ap);
378   va_end (ap);
379   exit (FATAL_EXIT_CODE);
380 }
381 #endif
382
383 /* Parse a -d... command line switch.  */
384
385 void
386 decode_d_option (const char *arg)
387 {
388   int c;
389
390   while (*arg)
391     switch (c = *arg++)
392       {
393       case 'D': /* These are handled by the preprocessor.  */
394       case 'I':
395       case 'M':
396       case 'N':
397         break;
398
399       default:
400         warning (0, "unrecognized gcc debugging option: %c", c);
401         break;
402       }
403 }
404
405 /* Language-dependent initialization.  Returns nonzero on success.  */
406 static int
407 lang_dependent_init (const char *name)
408 {
409   /* Other front-end initialization.  */
410   if ((*lang_hooks.init) () == 0)
411     return 0;
412
413   return 1;
414 }
415
416 /* Clean up: close opened files, etc.  */
417
418 static void
419 finalize (void)
420 {
421   /* Language-specific end of compilation actions.  */
422   (*lang_hooks.finish) ();
423 }
424
425 /* Initialize the compiler, and compile the input file.  */
426 static void
427 do_compile (void)
428 {
429   process_options ();
430
431   /* Don't do any more if an error has already occurred.  */
432   if (!errorcount)
433     {
434       /* Language-dependent initialization.  Returns true on success.  */
435       lang_dependent_init (main_input_filename);
436
437       finalize ();
438     }
439 }
440
441 /* Entry point of cc1, cc1plus, jc1, f771, etc.
442    Exit code is FATAL_EXIT_CODE if can't open files or if there were
443    any errors, or SUCCESS_EXIT_CODE if compilation succeeded.
444
445    It is not safe to call this function more than once.  */
446
447 int
448 main (unsigned int argc, const char **argv)
449 {
450   /* Initialization of GCC's environment, and diagnostics.  */
451   general_init (argv[0]);
452
453   /* Parse the options and do minimal processing; basically just
454      enough to default flags appropriately.  */
455   decode_options (argc, argv);
456
457   /* Exit early if we can (e.g. -help).  */
458   if (!exit_after_options)
459     do_compile ();
460
461   if (errorcount || sorrycount)
462     return (FATAL_EXIT_CODE);
463
464   return (SUCCESS_EXIT_CODE);
465 }