OSDN Git Service

2007-02-03 Steven G. Kargl <kargl@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / fortran / options.c
1 /* Parse and display command line options.
2    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
3    Free Software Foundation, 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 #include "config.h"
24 #include "system.h"
25 #include "coretypes.h"
26 #include "tree.h"
27 #include "flags.h"
28 #include "intl.h"
29 #include "opts.h"
30 #include "options.h"
31 #include "params.h"
32 #include "tree-inline.h"
33 #include "gfortran.h"
34 #include "target.h"
35
36 gfc_option_t gfc_option;
37
38
39 /* Get ready for options handling.  */
40
41 unsigned int
42 gfc_init_options (unsigned int argc ATTRIBUTE_UNUSED,
43                   const char **argv ATTRIBUTE_UNUSED)
44 {
45   gfc_source_file = NULL;
46   gfc_option.module_dir = NULL;
47   gfc_option.source_form = FORM_UNKNOWN;
48   gfc_option.fixed_line_length = 72;
49   gfc_option.free_line_length = 132;
50   gfc_option.max_continue_fixed = 19;
51   gfc_option.max_continue_free = 39;
52   gfc_option.max_identifier_length = GFC_MAX_SYMBOL_LEN;
53   gfc_option.max_subrecord_length = 0;
54   gfc_option.convert = CONVERT_NATIVE;
55   gfc_option.record_marker = 0;
56   gfc_option.verbose = 0;
57
58   gfc_option.warn_aliasing = 0;
59   gfc_option.warn_ampersand = 0;
60   gfc_option.warn_character_truncation = 0;
61   gfc_option.warn_conversion = 0;
62   gfc_option.warn_implicit_interface = 0;
63   gfc_option.warn_line_truncation = 0;
64   gfc_option.warn_surprising = 0;
65   gfc_option.warn_tabs = 1;
66   gfc_option.warn_underflow = 1;
67   gfc_option.max_errors = 25;
68
69   gfc_option.flag_all_intrinsics = 0;
70   gfc_option.flag_default_double = 0;
71   gfc_option.flag_default_integer = 0;
72   gfc_option.flag_default_real = 0;
73   gfc_option.flag_dollar_ok = 0;
74   gfc_option.flag_underscoring = 1;
75   gfc_option.flag_f2c = 0;
76   gfc_option.flag_second_underscore = -1;
77   gfc_option.flag_implicit_none = 0;
78   gfc_option.flag_max_stack_var_size = 32768;
79   gfc_option.flag_range_check = 1;
80   gfc_option.flag_pack_derived = 0;
81   gfc_option.flag_repack_arrays = 0;
82   gfc_option.flag_preprocessed = 0;
83   gfc_option.flag_automatic = 1;
84   gfc_option.flag_backslash = 1;
85   gfc_option.flag_allow_leading_underscore = 0;
86   gfc_option.flag_dump_core = 0;
87   gfc_option.flag_external_blas = 0;
88   gfc_option.blas_matmul_limit = 30;
89   gfc_option.flag_cray_pointer = 0;
90   gfc_option.flag_d_lines = -1;
91   gfc_option.flag_openmp = 0;
92
93   gfc_option.fpe = 0;
94
95   /* Argument pointers cannot point to anything but their argument.  */
96   flag_argument_noalias = 3;
97
98   flag_errno_math = 0;
99
100   gfc_option.allow_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL
101     | GFC_STD_F2003 | GFC_STD_F95 | GFC_STD_F77 | GFC_STD_GNU
102     | GFC_STD_LEGACY;
103   gfc_option.warn_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL
104     | GFC_STD_LEGACY;
105
106   gfc_option.warn_nonstd_intrinsics = 0;
107
108   /* -fshort-enums can be default on some targets.  */
109   gfc_option.fshort_enums = targetm.default_short_enums ();
110
111   /* Increase MAX_ALIASED_VOPS to account for different characteristics
112      of Fortran regarding VOPs.  */
113   MAX_ALIASED_VOPS = 50;
114
115   return CL_Fortran;
116 }
117
118
119 /* Determine the source form from the filename extension.  We assume
120    case insensitivity.  */
121
122 static gfc_source_form
123 form_from_filename (const char *filename)
124 {
125   static const struct
126   {
127     const char *extension;
128     gfc_source_form form;
129   }
130   exttype[] =
131   {
132     {
133     ".f90", FORM_FREE}
134     ,
135     {
136     ".f95", FORM_FREE}
137     ,
138     {
139     ".f03", FORM_FREE}
140     ,
141     {
142     ".f", FORM_FIXED}
143     ,
144     {
145     ".for", FORM_FIXED}
146     ,
147     {
148     "", FORM_UNKNOWN}
149   };            /* sentinel value */
150
151   gfc_source_form f_form;
152   const char *fileext;
153   int i;
154
155   /* Find end of file name.  Note, filename is either a NULL pointer or
156      a NUL terminated string.  */
157   i = 0;
158   while (filename[i] != '\0')
159     i++;
160
161   /* Find last period.  */
162   while (i >= 0 && (filename[i] != '.'))
163     i--;
164
165   /* Did we see a file extension?  */
166   if (i < 0)
167     return FORM_UNKNOWN; /* Nope  */
168
169   /* Get file extension and compare it to others.  */
170   fileext = &(filename[i]);
171
172   i = -1;
173   f_form = FORM_UNKNOWN;
174   do
175     {
176       i++;
177       if (strcasecmp (fileext, exttype[i].extension) == 0)
178         {
179           f_form = exttype[i].form;
180           break;
181         }
182     }
183   while (exttype[i].form != FORM_UNKNOWN);
184
185   return f_form;
186 }
187
188
189 /* Finalize commandline options.  */
190
191 bool
192 gfc_post_options (const char **pfilename)
193 {
194   const char *filename = *pfilename, *canon_source_file = NULL;
195   char *source_path;
196   int i;
197
198   /* Verify the input file name.  */
199   if (!filename || strcmp (filename, "-") == 0)
200     {
201       filename = "";
202     }
203
204   if (gfc_option.flag_preprocessed)
205     {
206       /* For preprocessed files, if the first tokens are of the form # NUM.
207          handle the directives so we know the original file name.  */
208       gfc_source_file = gfc_read_orig_filename (filename, &canon_source_file);
209       if (gfc_source_file == NULL)
210         gfc_source_file = filename;
211       else
212         *pfilename = gfc_source_file;
213     }
214   else
215     gfc_source_file = filename;
216
217   if (canon_source_file == NULL)
218     canon_source_file = gfc_source_file;
219
220   /* Adds the path where the source file is to the list of include files.  */
221
222   i = strlen (canon_source_file);
223   while (i > 0 && !IS_DIR_SEPARATOR (canon_source_file[i]))
224     i--;
225
226   if (i != 0)
227     {
228       source_path = alloca (i + 1);
229       memcpy (source_path, canon_source_file, i);
230       source_path[i] = 0;
231       gfc_add_include_path (source_path, true);
232     }
233   else
234     gfc_add_include_path (".", true);
235
236   if (canon_source_file != gfc_source_file)
237     gfc_free ((void *) canon_source_file);
238
239   /* Decide which form the file will be read in as.  */
240
241   if (gfc_option.source_form != FORM_UNKNOWN)
242     gfc_current_form = gfc_option.source_form;
243   else
244     {
245       gfc_current_form = form_from_filename (filename);
246
247       if (gfc_current_form == FORM_UNKNOWN)
248         {
249           gfc_current_form = FORM_FREE;
250           gfc_warning_now ("Reading file '%s' as free form", 
251                            (filename[0] == '\0') ? "<stdin>" : filename);
252         }
253     }
254
255   /* If the user specified -fd-lines-as-{code|comments} verify that we're
256      in fixed form.  */
257   if (gfc_current_form == FORM_FREE)
258     {
259       if (gfc_option.flag_d_lines == 0)
260         gfc_warning_now ("'-fd-lines-as-comments' has no effect "
261                          "in free form");
262       else if (gfc_option.flag_d_lines == 1)
263         gfc_warning_now ("'-fd-lines-as-code' has no effect in free form");
264     }
265
266   flag_inline_trees = 1;
267
268   /* Use tree inlining.  */
269   if (!flag_no_inline)
270     flag_no_inline = 1;
271   if (flag_inline_functions)
272     flag_inline_trees = 2;
273
274   /* If -pedantic, warn about the use of GNU extensions.  */
275   if (pedantic && (gfc_option.allow_std & GFC_STD_GNU) != 0)
276     gfc_option.warn_std |= GFC_STD_GNU;
277   /* -std=legacy -pedantic is effectively -std=gnu.  */
278   if (pedantic && (gfc_option.allow_std & GFC_STD_LEGACY) != 0)
279     gfc_option.warn_std |= GFC_STD_F95_OBS | GFC_STD_F95_DEL | GFC_STD_LEGACY;
280
281   /* If the user didn't explicitly specify -f(no)-second-underscore we
282      use it if we're trying to be compatible with f2c, and not
283      otherwise.  */
284   if (gfc_option.flag_second_underscore == -1)
285     gfc_option.flag_second_underscore = gfc_option.flag_f2c;
286
287   /* Implement -fno-automatic as -fmax-stack-var-size=0.  */
288   if (!gfc_option.flag_automatic)
289     gfc_option.flag_max_stack_var_size = 0;
290   
291   if (pedantic)
292     { 
293       gfc_option.warn_ampersand = 1;
294       gfc_option.warn_tabs = 0;
295     }
296
297   if (gfc_option.flag_all_intrinsics)
298     gfc_option.warn_nonstd_intrinsics = 0;
299
300   return false;
301 }
302
303
304 /* Set the options for -Wall.  */
305
306 static void
307 set_Wall (int setting)
308 {
309   gfc_option.warn_aliasing = setting;
310   gfc_option.warn_ampersand = setting;
311   gfc_option.warn_line_truncation = setting;
312   gfc_option.warn_nonstd_intrinsics = setting;
313   gfc_option.warn_surprising = setting;
314   gfc_option.warn_tabs = !setting;
315   gfc_option.warn_underflow = setting;
316   gfc_option.warn_character_truncation = setting;
317
318   set_Wunused (setting);
319   warn_return_type = setting;
320   warn_switch = setting;
321
322   /* We save the value of warn_uninitialized, since if they put
323      -Wuninitialized on the command line, we need to generate a
324      warning about not using it without also specifying -O.  */
325   if (setting == 0)
326     warn_uninitialized = 0;
327   else if (warn_uninitialized != 1)
328     warn_uninitialized = 2;
329 }
330
331
332 static void
333 gfc_handle_module_path_options (const char *arg)
334 {
335
336   if (gfc_option.module_dir != NULL)
337     {
338       gfc_status ("gfortran: Only one -M option allowed\n");
339       exit (3);
340     }
341
342   if (arg == NULL)
343     {
344       gfc_status ("gfortran: Directory required after -M\n");
345       exit (3);
346     }
347
348   gfc_option.module_dir = (char *) gfc_getmem (strlen (arg) + 2);
349   strcpy (gfc_option.module_dir, arg);
350   strcat (gfc_option.module_dir, "/");
351
352   gfc_add_include_path (gfc_option.module_dir, true);
353 }
354
355
356 static void
357 gfc_handle_fpe_trap_option (const char *arg)
358 {
359   int result, pos = 0, n;
360   static const char * const exception[] = { "invalid", "denormal", "zero",
361                                             "overflow", "underflow",
362                                             "precision", NULL };
363   static const int opt_exception[] = { GFC_FPE_INVALID, GFC_FPE_DENORMAL,
364                                        GFC_FPE_ZERO, GFC_FPE_OVERFLOW,
365                                        GFC_FPE_UNDERFLOW, GFC_FPE_PRECISION,
366                                        0 };
367  
368   while (*arg)
369     {
370       while (*arg == ',')
371         arg++;
372
373       while (arg[pos] && arg[pos] != ',')
374         pos++;
375
376       result = 0;
377       for (n = 0; exception[n] != NULL; n++)
378         {
379           if (exception[n] && strncmp (exception[n], arg, pos) == 0)
380             {
381               gfc_option.fpe |= opt_exception[n];
382               arg += pos;
383               pos = 0;
384               result = 1;
385               break;
386             }
387         }
388       if (!result)
389         gfc_fatal_error ("Argument to -ffpe-trap is not valid: %s", arg);
390     }
391 }
392
393
394 /* Handle command-line options.  Returns 0 if unrecognized, 1 if
395    recognized and handled.  */
396
397 int
398 gfc_handle_option (size_t scode, const char *arg, int value)
399 {
400   int result = 1;
401   enum opt_code code = (enum opt_code) scode;
402
403   /* Ignore file names.  */
404   if (code == N_OPTS)
405     return 1;
406
407   switch (code)
408     {
409     default:
410       result = 0;
411       break;
412
413     case OPT_Wall:
414       set_Wall (value);
415       break;
416
417     case OPT_Waliasing:
418       gfc_option.warn_aliasing = value;
419       break;
420
421     case OPT_Wampersand:
422       gfc_option.warn_ampersand = value;
423       break;
424
425     case OPT_Wcharacter_truncation:
426       gfc_option.warn_character_truncation = value;
427       break;
428
429     case OPT_Wconversion:
430       gfc_option.warn_conversion = value;
431       break;
432
433     case OPT_Wimplicit_interface:
434       gfc_option.warn_implicit_interface = value;
435       break;
436
437     case OPT_Wline_truncation:
438       gfc_option.warn_line_truncation = value;
439       break;
440
441     case OPT_Wsurprising:
442       gfc_option.warn_surprising = value;
443       break;
444
445     case OPT_Wtabs:
446       gfc_option.warn_tabs = value;
447       break;
448
449     case OPT_Wunderflow:
450       gfc_option.warn_underflow = value;
451       break;
452
453     case OPT_fall_intrinsics:
454       gfc_option.flag_all_intrinsics = 1;
455       break;
456
457     case OPT_fautomatic:
458       gfc_option.flag_automatic = value;
459       break;
460
461     case OPT_fallow_leading_underscore:
462       gfc_option.flag_allow_leading_underscore = value;
463       break;
464       
465     case OPT_fbackslash:
466       gfc_option.flag_backslash = value;
467       break;
468       
469     case OPT_fdump_core:
470       gfc_option.flag_dump_core = value;
471       break;
472
473     case OPT_fcray_pointer:
474       gfc_option.flag_cray_pointer = value;
475       break;
476
477     case OPT_ff2c:
478       gfc_option.flag_f2c = value;
479       break;
480
481     case OPT_fdollar_ok:
482       gfc_option.flag_dollar_ok = value;
483       break;
484
485     case OPT_fexternal_blas:
486       gfc_option.flag_external_blas = value;
487       break;
488
489     case OPT_fblas_matmul_limit_:
490       gfc_option.blas_matmul_limit = value;
491       break;
492
493     case OPT_fd_lines_as_code:
494       gfc_option.flag_d_lines = 1;
495       break;
496
497     case OPT_fd_lines_as_comments:
498       gfc_option.flag_d_lines = 0;
499       break;
500
501     case OPT_fdump_parse_tree:
502       gfc_option.verbose = value;
503       break;
504
505     case OPT_ffixed_form:
506       gfc_option.source_form = FORM_FIXED;
507       break;
508
509     case OPT_ffixed_line_length_none:
510       gfc_option.fixed_line_length = 0;
511       break;
512
513     case OPT_ffixed_line_length_:
514       if (value != 0 && value < 7)
515         gfc_fatal_error ("Fixed line length must be at least seven.");
516       gfc_option.fixed_line_length = value;
517       break;
518
519     case OPT_ffree_form:
520       gfc_option.source_form = FORM_FREE;
521       break;
522
523     case OPT_fopenmp:
524       gfc_option.flag_openmp = value;
525       break;
526
527     case OPT_ffree_line_length_none:
528       gfc_option.free_line_length = 0;
529       break;
530
531     case OPT_ffree_line_length_:
532       gfc_option.free_line_length = value;
533       break;
534
535     case OPT_funderscoring:
536       gfc_option.flag_underscoring = value;
537       break;
538
539     case OPT_fsecond_underscore:
540       gfc_option.flag_second_underscore = value;
541       break;
542
543     case OPT_fimplicit_none:
544       gfc_option.flag_implicit_none = value;
545       break;
546
547     case OPT_fintrinsic_modules_path:
548       gfc_add_include_path (arg, false);
549       gfc_add_intrinsic_modules_path (arg);
550       break;
551
552     case OPT_fmax_errors_:
553       gfc_option.max_errors = value;
554       break;
555
556     case OPT_fmax_stack_var_size_:
557       gfc_option.flag_max_stack_var_size = value;
558       break;
559
560     case OPT_frange_check:
561       gfc_option.flag_range_check = value;
562       break;
563
564     case OPT_fpack_derived:
565       gfc_option.flag_pack_derived = value;
566       break;
567
568     case OPT_frepack_arrays:
569       gfc_option.flag_repack_arrays = value;
570       break;
571
572     case OPT_fpreprocessed:
573       gfc_option.flag_preprocessed = value;
574       break;
575
576     case OPT_fmax_identifier_length_:
577       if (value > GFC_MAX_SYMBOL_LEN)
578         gfc_fatal_error ("Maximum supported identifier length is %d",
579                          GFC_MAX_SYMBOL_LEN);
580       gfc_option.max_identifier_length = value;
581       break;
582
583     case OPT_fdefault_integer_8:
584       gfc_option.flag_default_integer = value;
585       break;
586
587     case OPT_fdefault_real_8:
588       gfc_option.flag_default_real = value;
589       break;
590
591     case OPT_fdefault_double_8:
592       gfc_option.flag_default_double = value;
593       break;
594
595     case OPT_I:
596       gfc_add_include_path (arg, true);
597       break;
598
599     case OPT_J:
600     case OPT_M:
601       gfc_handle_module_path_options (arg);
602       break;
603     
604     case OPT_ffpe_trap_:
605       gfc_handle_fpe_trap_option (arg);
606       break;
607
608     case OPT_std_f95:
609       gfc_option.allow_std = GFC_STD_F95_OBS | GFC_STD_F95 | GFC_STD_F77;
610       gfc_option.warn_std = GFC_STD_F95_OBS;
611       gfc_option.max_identifier_length = 31;
612       gfc_option.warn_ampersand = 1;
613       gfc_option.warn_tabs = 0;
614       break;
615
616     case OPT_std_f2003:
617       gfc_option.allow_std = GFC_STD_F95_OBS | GFC_STD_F77 
618         | GFC_STD_F2003 | GFC_STD_F95;
619       gfc_option.warn_std = GFC_STD_F95_OBS;
620       gfc_option.max_continue_fixed = 255;
621       gfc_option.max_continue_free = 255;
622       gfc_option.max_identifier_length = 63;
623       gfc_option.warn_ampersand = 1;
624       gfc_option.warn_tabs = 0;
625       break;
626
627     case OPT_std_gnu:
628       gfc_option.allow_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL
629         | GFC_STD_F77 | GFC_STD_F95 | GFC_STD_F2003
630         | GFC_STD_GNU | GFC_STD_LEGACY;
631       gfc_option.warn_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL
632         | GFC_STD_LEGACY;
633       break;
634
635     case OPT_std_legacy:
636       gfc_option.allow_std = GFC_STD_F95_OBS | GFC_STD_F95_DEL
637         | GFC_STD_F77 | GFC_STD_F95 | GFC_STD_F2003
638         | GFC_STD_GNU | GFC_STD_LEGACY;
639       gfc_option.warn_std = 0;
640       break;
641
642     case OPT_Wnonstd_intrinsics:
643       gfc_option.warn_nonstd_intrinsics = value;
644       break;
645
646     case OPT_fshort_enums:
647       gfc_option.fshort_enums = 1;
648       break;
649
650     case OPT_fconvert_little_endian:
651       gfc_option.convert = CONVERT_LITTLE;
652       break;
653
654     case OPT_fconvert_big_endian:
655       gfc_option.convert = CONVERT_BIG;
656       break;
657
658     case OPT_fconvert_native:
659       gfc_option.convert = CONVERT_NATIVE;
660       break;
661
662     case OPT_fconvert_swap:
663       gfc_option.convert = CONVERT_SWAP;
664       break;
665
666     case OPT_frecord_marker_4:
667       gfc_option.record_marker = 4;
668       break;
669
670     case OPT_frecord_marker_8:
671       gfc_option.record_marker = 8;
672       break;
673
674     case OPT_fmax_subrecord_length_:
675       if (value > MAX_SUBRECORD_LENGTH)
676         gfc_fatal_error ("Maximum subrecord length cannot exceed %d",
677                          MAX_SUBRECORD_LENGTH);
678
679       gfc_option.max_subrecord_length = value;
680     }
681
682   return result;
683 }