OSDN Git Service

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