OSDN Git Service

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