OSDN Git Service

PR fortran/20811
[pf3gnuchains/gcc-fork.git] / gcc / fortran / options.c
1 /* Parse and display command line options.
2    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation,
3    Inc.
4    Contributed by Andy Vaught
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING.  If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
21 02110-1301, USA.  */
22
23
24 #include "config.h"
25 #include "system.h"
26 #include "coretypes.h"
27 #include "tree.h"
28 #include "flags.h"
29 #include "intl.h"
30 #include "opts.h"
31 #include "options.h"
32 #include "tree-inline.h"
33
34 #include "gfortran.h"
35 #include "target.h"
36
37 gfc_option_t gfc_option;
38
39
40 /* Get ready for options handling.  */
41
42 unsigned int
43 gfc_init_options (unsigned int argc ATTRIBUTE_UNUSED,
44                   const char **argv ATTRIBUTE_UNUSED)
45 {
46   gfc_source_file = NULL;
47   gfc_option.module_dir = NULL;
48   gfc_option.source_form = FORM_UNKNOWN;
49   gfc_option.fixed_line_length = 72;
50   gfc_option.max_identifier_length = GFC_MAX_SYMBOL_LEN;
51   gfc_option.verbose = 0;
52
53   gfc_option.warn_aliasing = 0;
54   gfc_option.warn_conversion = 0;
55   gfc_option.warn_implicit_interface = 0;
56   gfc_option.warn_line_truncation = 0;
57   gfc_option.warn_underflow = 1;
58   gfc_option.warn_surprising = 0;
59   gfc_option.warn_unused_labels = 0;
60
61   gfc_option.flag_default_double = 0;
62   gfc_option.flag_default_integer = 0;
63   gfc_option.flag_default_real = 0;
64   gfc_option.flag_dollar_ok = 0;
65   gfc_option.flag_underscoring = 1;
66   gfc_option.flag_f2c = 0;
67   gfc_option.flag_second_underscore = -1;
68   gfc_option.flag_implicit_none = 0;
69   gfc_option.flag_max_stack_var_size = 32768;
70   gfc_option.flag_module_access_private = 0;
71   gfc_option.flag_no_backend = 0;
72   gfc_option.flag_pack_derived = 0;
73   gfc_option.flag_repack_arrays = 0;
74   gfc_option.flag_automatic = 1;
75   gfc_option.flag_backslash = 1;
76   gfc_option.flag_cray_pointer = 0;
77   gfc_option.flag_d_lines = -1;
78
79   gfc_option.q_kind = gfc_default_double_kind;
80
81   gfc_option.fpe = 0;
82
83   flag_argument_noalias = 2;
84   flag_errno_math = 0;
85
86   gfc_option.allow_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL
87     | GFC_STD_F2003 | GFC_STD_F95 | GFC_STD_F77 | GFC_STD_GNU
88     | GFC_STD_LEGACY;
89   gfc_option.warn_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL
90     | GFC_STD_F2003 | GFC_STD_LEGACY;
91
92   gfc_option.warn_nonstd_intrinsics = 0;
93
94   /* -fshort-enums can be default on some targets.  */
95   gfc_option.fshort_enums = targetm.default_short_enums ();
96
97   return CL_Fortran;
98 }
99
100
101 /* Determine the source form from the filename extension.  We assume
102    case insensitivity.  */
103
104 static gfc_source_form
105 form_from_filename (const char *filename)
106 {
107
108   static const struct
109   {
110     const char *extension;
111     gfc_source_form form;
112   }
113   exttype[] =
114   {
115     {
116     ".f90", FORM_FREE}
117     ,
118     {
119     ".f95", FORM_FREE}
120     ,
121     {
122     ".f", FORM_FIXED}
123     ,
124     {
125     ".for", FORM_FIXED}
126     ,
127     {
128     "", FORM_UNKNOWN}
129   };            /* sentinel value */
130
131   gfc_source_form f_form;
132   const char *fileext;
133   int i;
134
135   /* Find end of file name.  Note, filename is either a NULL pointer or
136      a NUL terminated string.  */
137   i = 0;
138   while (filename[i] != '\0')
139     i++;
140
141   /* Find last period.  */
142   while (i >= 0 && (filename[i] != '.'))
143     i--;
144
145   /* Did we see a file extension?  */
146   if (i < 0)
147     return FORM_UNKNOWN; /* Nope  */
148
149   /* Get file extension and compare it to others.  */
150   fileext = &(filename[i]);
151
152   i = -1;
153   f_form = FORM_UNKNOWN;
154   do
155     {
156       i++;
157       if (strcasecmp (fileext, exttype[i].extension) == 0)
158         {
159           f_form = exttype[i].form;
160           break;
161         }
162     }
163   while (exttype[i].form != FORM_UNKNOWN);
164
165   return f_form;
166 }
167
168
169 /* Finalize commandline options.  */
170
171 bool
172 gfc_post_options (const char **pfilename)
173 {
174   const char *filename = *pfilename;
175   char *source_path;
176   int i;
177
178   /* Verify the input file name.  */
179   if (!filename || strcmp (filename, "-") == 0)
180     {
181       filename = "";
182     }
183
184   gfc_source_file = filename;
185
186   /* Adds the path where the source file is to the list of include files.  */
187
188   i = strlen(gfc_source_file);
189   while (i > 0 && !IS_DIR_SEPARATOR(gfc_source_file[i]))
190     i--;
191   if (i != 0)
192     {
193       source_path = alloca (i + 1);
194       memcpy (source_path, gfc_source_file, i);
195       source_path[i] = 0;
196       gfc_add_include_path (source_path);
197     }
198   else
199     gfc_add_include_path (".");
200
201   /* Decide which form the file will be read in as.  */
202
203   if (gfc_option.source_form != FORM_UNKNOWN)
204     gfc_current_form = gfc_option.source_form;
205   else
206     {
207       gfc_current_form = form_from_filename (filename);
208
209       if (gfc_current_form == FORM_UNKNOWN)
210         {
211           gfc_current_form = FORM_FREE;
212           gfc_warning_now ("Reading file '%s' as free form.", 
213                            (filename[0] == '\0') ? "<stdin>" : filename); 
214         }
215     }
216
217   /* If the user specified -fd-lines-as-{code|comments} verify that we're
218      in fixed form.  */
219   if (gfc_current_form == FORM_FREE)
220     {
221       if (gfc_option.flag_d_lines == 0)
222         gfc_warning_now ("'-fd-lines-as-comments' has no effect "
223                          "in free form.");
224       else if (gfc_option.flag_d_lines == 1)
225         gfc_warning_now ("'-fd-lines-as-code' has no effect "
226                          "in free form.");
227     }
228
229   flag_inline_trees = 1;
230
231   /* Use tree inlining.  */
232   if (!flag_no_inline)
233     flag_no_inline = 1;
234   if (flag_inline_functions)
235     flag_inline_trees = 2;
236
237   /* If -pedantic, warn about the use of GNU extensions.  */
238   if (pedantic && (gfc_option.allow_std & GFC_STD_GNU) != 0)
239     gfc_option.warn_std |= GFC_STD_GNU;
240   /* -std=legacy -pedantic is effectively -std=gnu.  */
241   if (pedantic && (gfc_option.allow_std & GFC_STD_LEGACY) != 0)
242     gfc_option.warn_std |= GFC_STD_F95_OBS | GFC_STD_F95_DEL | GFC_STD_LEGACY;
243
244   /* If the user didn't explicitly specify -f(no)-second-underscore we
245      use it if we're trying to be compatible with f2c, and not
246      otherwise.  */
247   if (gfc_option.flag_second_underscore == -1)
248     gfc_option.flag_second_underscore = gfc_option.flag_f2c;
249
250   /* Implement -fno-automatic as -fmax-stack-var-size=0.  */
251   if (!gfc_option.flag_automatic)
252     gfc_option.flag_max_stack_var_size = 0;
253
254   return false;
255 }
256
257
258 /* Set the options for -Wall.  */
259
260 static void
261 set_Wall (void)
262 {
263
264   gfc_option.warn_aliasing = 1;
265   gfc_option.warn_line_truncation = 1;
266   gfc_option.warn_underflow = 1;
267   gfc_option.warn_surprising = 1;
268   gfc_option.warn_unused_labels = 1;
269   gfc_option.warn_nonstd_intrinsics = 1;
270
271   set_Wunused (1);
272   warn_return_type = 1;
273   warn_switch = 1;
274
275   /* We save the value of warn_uninitialized, since if they put
276      -Wuninitialized on the command line, we need to generate a
277      warning about not using it without also specifying -O.  */
278
279   if (warn_uninitialized != 1)
280     warn_uninitialized = 2;
281 }
282
283
284 static void
285 gfc_handle_module_path_options (const char *arg)
286 {
287
288   if (gfc_option.module_dir != NULL)
289     {
290       gfc_status ("gfortran: Only one -M option allowed\n");
291       exit (3);
292     }
293
294   if (arg == NULL)
295     {
296       gfc_status ("gfortran: Directory required after -M\n");
297       exit (3);
298     }
299
300   gfc_option.module_dir = (char *) gfc_getmem (strlen (arg) + 2);
301   strcpy (gfc_option.module_dir, arg);
302   strcat (gfc_option.module_dir, "/");
303 }
304
305 static void
306 gfc_handle_fpe_trap_option (const char *arg)
307 {
308   int result, pos = 0, n;
309   static const char * const exception[] = { "invalid", "denormal", "zero",
310                                             "overflow", "underflow",
311                                             "precision", NULL };
312   static const int opt_exception[] = { GFC_FPE_INVALID, GFC_FPE_DENORMAL,
313                                        GFC_FPE_ZERO, GFC_FPE_OVERFLOW,
314                                        GFC_FPE_UNDERFLOW, GFC_FPE_PRECISION,
315                                        0 };
316  
317   while (*arg)
318     {
319       while (*arg == ',')
320         arg++;
321       while (arg[pos] && arg[pos] != ',')
322         pos++;
323       result = 0;
324       for (n = 0; exception[n] != NULL; n++)
325         {
326           if (exception[n] && strncmp (exception[n], arg, pos) == 0)
327             {
328               gfc_option.fpe |= opt_exception[n];
329               arg += pos;
330               pos = 0;
331               result = 1;
332               break;
333             }
334         }
335       if (! result)
336         gfc_fatal_error ("Argument to -ffpe-trap is not valid: %s", arg);
337     }
338 }
339
340 /* Handle command-line options.  Returns 0 if unrecognized, 1 if
341    recognized and handled.  */
342 int
343 gfc_handle_option (size_t scode, const char *arg, int value)
344 {
345   int result = 1;
346   enum opt_code code = (enum opt_code) scode;
347
348   /* Ignore file names.  */
349   if (code == N_OPTS)
350     return 1;
351
352   switch (code)
353     {
354     default:
355       result = 0;
356       break;
357
358     case OPT_Wall:
359       set_Wall ();
360       break;
361
362     case OPT_Waliasing:
363       gfc_option.warn_aliasing = value;
364       break;
365
366     case OPT_Wconversion:
367       gfc_option.warn_conversion = value;
368       break;
369
370     case OPT_Wimplicit_interface:
371       gfc_option.warn_implicit_interface = value;
372       break;
373
374     case OPT_Wline_truncation:
375       gfc_option.warn_line_truncation = value;
376       break;
377
378     case OPT_Wunderflow:
379       gfc_option.warn_underflow = value;
380       break;
381
382     case OPT_Wsurprising:
383       gfc_option.warn_surprising = value;
384       break;
385
386     case OPT_Wunused_labels:
387       gfc_option.warn_unused_labels = value;
388       break;
389       
390     case OPT_fcray_pointer:
391       gfc_option.flag_cray_pointer = value;
392       break;
393
394     case OPT_ff2c:
395       gfc_option.flag_f2c = value;
396       break;
397
398     case OPT_fdollar_ok:
399       gfc_option.flag_dollar_ok = value;
400       break;
401
402     case OPT_fautomatic:
403       gfc_option.flag_automatic = value;
404       break;
405
406     case OPT_fbackslash:
407       gfc_option.flag_backslash = value;
408       break;
409
410     case OPT_fd_lines_as_code:
411       gfc_option.flag_d_lines = 1;
412       break;
413
414     case OPT_fd_lines_as_comments:
415       gfc_option.flag_d_lines = 0;
416       break;
417
418     case OPT_fdump_parse_tree:
419       gfc_option.verbose = value;
420       break;
421
422     case OPT_ffixed_form:
423       gfc_option.source_form = FORM_FIXED;
424       break;
425
426     case OPT_ffree_form:
427       gfc_option.source_form = FORM_FREE;
428       break;
429
430     case OPT_funderscoring:
431       gfc_option.flag_underscoring = value;
432       break;
433
434     case OPT_fsecond_underscore:
435       gfc_option.flag_second_underscore = value;
436       break;
437
438     case OPT_fimplicit_none:
439       gfc_option.flag_implicit_none = value;
440       break;
441
442     case OPT_fmax_stack_var_size_:
443       gfc_option.flag_max_stack_var_size = value;
444       break;
445
446     case OPT_fmodule_private:
447       gfc_option.flag_module_access_private = value;
448       break;
449
450     case OPT_fno_backend:
451       gfc_option.flag_no_backend = value;
452       break;
453
454     case OPT_fpack_derived:
455       gfc_option.flag_pack_derived = value;
456       break;
457
458     case OPT_frepack_arrays:
459       gfc_option.flag_repack_arrays = value;
460       break;
461
462     case OPT_ffixed_line_length_none:
463       gfc_option.fixed_line_length = 0;
464       break;
465
466     case OPT_ffixed_line_length_:
467       if (value != 0 && value < 7)
468         gfc_fatal_error ("Fixed line length must be at least seven.");
469       gfc_option.fixed_line_length = value;
470       break;
471
472     case OPT_fmax_identifier_length_:
473       if (value > GFC_MAX_SYMBOL_LEN)
474         gfc_fatal_error ("Maximum supported idenitifier length is %d",
475                          GFC_MAX_SYMBOL_LEN);
476       gfc_option.max_identifier_length = value;
477       break;
478
479     case OPT_qkind_:
480       if (gfc_validate_kind (BT_REAL, value, true) < 0)
481         gfc_fatal_error ("Argument to -fqkind isn't a valid real kind");
482       gfc_option.q_kind = value;
483       break;
484
485     case OPT_fdefault_integer_8:
486       gfc_option.flag_default_integer = value;
487       break;
488
489     case OPT_fdefault_real_8:
490       gfc_option.flag_default_real = value;
491       break;
492
493     case OPT_fdefault_double_8:
494       gfc_option.flag_default_double = value;
495       break;
496
497     case OPT_I:
498       gfc_add_include_path (arg);
499       break;
500
501     case OPT_J:
502     case OPT_M:
503       gfc_handle_module_path_options (arg);
504       break;
505     
506     case OPT_ffpe_trap_:
507       gfc_handle_fpe_trap_option (arg);
508       break;
509
510     case OPT_std_f95:
511       gfc_option.allow_std = GFC_STD_F95_OBS | GFC_STD_F95 | GFC_STD_F77;
512       gfc_option.warn_std = GFC_STD_F95_OBS;
513       gfc_option.max_identifier_length = 31;
514       break;
515
516     case OPT_std_f2003:
517       gfc_option.allow_std = GFC_STD_F95_OBS | GFC_STD_F77 
518         | GFC_STD_F2003 | GFC_STD_F95;
519       gfc_option.warn_std = GFC_STD_F95_OBS;
520       gfc_option.max_identifier_length = 63;
521       break;
522
523     case OPT_std_gnu:
524       gfc_option.allow_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL
525         | GFC_STD_F77 | GFC_STD_F95 | GFC_STD_F2003
526         | GFC_STD_GNU | GFC_STD_LEGACY;
527       gfc_option.warn_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL
528         | GFC_STD_LEGACY;
529       break;
530
531     case OPT_std_legacy:
532       gfc_option.allow_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL
533         | GFC_STD_F77 | GFC_STD_F95 | GFC_STD_F2003
534         | GFC_STD_GNU | GFC_STD_LEGACY;
535       gfc_option.warn_std = 0;
536       break;
537
538     case OPT_Wnonstd_intrinsics:
539       gfc_option.warn_nonstd_intrinsics = 1;
540       break;
541
542     case OPT_fshort_enums:
543       gfc_option.fshort_enums = 1;
544       break;
545     }
546
547   return result;
548 }