2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git] / gcc / fortran / scanner.c
blob8f517342129c94ae50f7afa75fd7cd05a60ae4e0
1 /* Character scanner.
2 Copyright (C) 2000-2014 Free Software Foundation, Inc.
3 Contributed by Andy Vaught
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* Set of subroutines to (ultimately) return the next character to the
22 various matching subroutines. This file's job is to read files and
23 build up lines that are parsed by the parser. This means that we
24 handle continuation lines and "include" lines.
26 The first thing the scanner does is to load an entire file into
27 memory. We load the entire file into memory for a couple reasons.
28 The first is that we want to be able to deal with nonseekable input
29 (pipes, stdin) and there is a lot of backing up involved during
30 parsing.
32 The second is that we want to be able to print the locus of errors,
33 and an error on line 999999 could conflict with something on line
34 one. Given nonseekable input, we've got to store the whole thing.
36 One thing that helps are the column truncation limits that give us
37 an upper bound on the size of individual lines. We don't store the
38 truncated stuff.
40 From the scanner's viewpoint, the higher level subroutines ask for
41 new characters and do a lot of jumping backwards. */
43 #include "config.h"
44 #include "system.h"
45 #include "coretypes.h"
46 #include "gfortran.h"
47 #include "toplev.h" /* For set_src_pwd. */
48 #include "debug.h"
49 #include "flags.h"
50 #include "cpp.h"
51 #include "scanner.h"
53 /* List of include file search directories. */
54 gfc_directorylist *include_dirs, *intrinsic_modules_dirs;
56 static gfc_file *file_head, *current_file;
58 static int continue_flag, end_flag, openmp_flag, gcc_attribute_flag;
59 static int continue_count, continue_line;
60 static locus openmp_locus;
61 static locus gcc_attribute_locus;
63 gfc_source_form gfc_current_form;
64 static gfc_linebuf *line_head, *line_tail;
66 locus gfc_current_locus;
67 const char *gfc_source_file;
68 static FILE *gfc_src_file;
69 static gfc_char_t *gfc_src_preprocessor_lines[2];
71 static struct gfc_file_change
73 const char *filename;
74 gfc_linebuf *lb;
75 int line;
76 } *file_changes;
77 size_t file_changes_cur, file_changes_count;
78 size_t file_changes_allocated;
81 /* Functions dealing with our wide characters (gfc_char_t) and
82 sequences of such characters. */
84 int
85 gfc_wide_fits_in_byte (gfc_char_t c)
87 return (c <= UCHAR_MAX);
90 static inline int
91 wide_is_ascii (gfc_char_t c)
93 return (gfc_wide_fits_in_byte (c) && ((unsigned char) c & ~0x7f) == 0);
96 int
97 gfc_wide_is_printable (gfc_char_t c)
99 return (gfc_wide_fits_in_byte (c) && ISPRINT ((unsigned char) c));
102 gfc_char_t
103 gfc_wide_tolower (gfc_char_t c)
105 return (wide_is_ascii (c) ? (gfc_char_t) TOLOWER((unsigned char) c) : c);
108 gfc_char_t
109 gfc_wide_toupper (gfc_char_t c)
111 return (wide_is_ascii (c) ? (gfc_char_t) TOUPPER((unsigned char) c) : c);
115 gfc_wide_is_digit (gfc_char_t c)
117 return (c >= '0' && c <= '9');
120 static inline int
121 wide_atoi (gfc_char_t *c)
123 #define MAX_DIGITS 20
124 char buf[MAX_DIGITS+1];
125 int i = 0;
127 while (gfc_wide_is_digit(*c) && i < MAX_DIGITS)
128 buf[i++] = *c++;
129 buf[i] = '\0';
130 return atoi (buf);
133 size_t
134 gfc_wide_strlen (const gfc_char_t *str)
136 size_t i;
138 for (i = 0; str[i]; i++)
141 return i;
144 gfc_char_t *
145 gfc_wide_memset (gfc_char_t *b, gfc_char_t c, size_t len)
147 size_t i;
149 for (i = 0; i < len; i++)
150 b[i] = c;
152 return b;
155 static gfc_char_t *
156 wide_strcpy (gfc_char_t *dest, const gfc_char_t *src)
158 gfc_char_t *d;
160 for (d = dest; (*d = *src) != '\0'; ++src, ++d)
163 return dest;
166 static gfc_char_t *
167 wide_strchr (const gfc_char_t *s, gfc_char_t c)
169 do {
170 if (*s == c)
172 return CONST_CAST(gfc_char_t *, s);
174 } while (*s++);
175 return 0;
178 char *
179 gfc_widechar_to_char (const gfc_char_t *s, int length)
181 size_t len, i;
182 char *res;
184 if (s == NULL)
185 return NULL;
187 /* Passing a negative length is used to indicate that length should be
188 calculated using gfc_wide_strlen(). */
189 len = (length >= 0 ? (size_t) length : gfc_wide_strlen (s));
190 res = XNEWVEC (char, len + 1);
192 for (i = 0; i < len; i++)
194 gcc_assert (gfc_wide_fits_in_byte (s[i]));
195 res[i] = (unsigned char) s[i];
198 res[len] = '\0';
199 return res;
202 gfc_char_t *
203 gfc_char_to_widechar (const char *s)
205 size_t len, i;
206 gfc_char_t *res;
208 if (s == NULL)
209 return NULL;
211 len = strlen (s);
212 res = gfc_get_wide_string (len + 1);
214 for (i = 0; i < len; i++)
215 res[i] = (unsigned char) s[i];
217 res[len] = '\0';
218 return res;
221 static int
222 wide_strncmp (const gfc_char_t *s1, const char *s2, size_t n)
224 gfc_char_t c1, c2;
226 while (n-- > 0)
228 c1 = *s1++;
229 c2 = *s2++;
230 if (c1 != c2)
231 return (c1 > c2 ? 1 : -1);
232 if (c1 == '\0')
233 return 0;
235 return 0;
239 gfc_wide_strncasecmp (const gfc_char_t *s1, const char *s2, size_t n)
241 gfc_char_t c1, c2;
243 while (n-- > 0)
245 c1 = gfc_wide_tolower (*s1++);
246 c2 = TOLOWER (*s2++);
247 if (c1 != c2)
248 return (c1 > c2 ? 1 : -1);
249 if (c1 == '\0')
250 return 0;
252 return 0;
256 /* Main scanner initialization. */
258 void
259 gfc_scanner_init_1 (void)
261 file_head = NULL;
262 line_head = NULL;
263 line_tail = NULL;
265 continue_count = 0;
266 continue_line = 0;
268 end_flag = 0;
272 /* Main scanner destructor. */
274 void
275 gfc_scanner_done_1 (void)
277 gfc_linebuf *lb;
278 gfc_file *f;
280 while(line_head != NULL)
282 lb = line_head->next;
283 free (line_head);
284 line_head = lb;
287 while(file_head != NULL)
289 f = file_head->next;
290 free (file_head->filename);
291 free (file_head);
292 file_head = f;
297 /* Adds path to the list pointed to by list. */
299 static void
300 add_path_to_list (gfc_directorylist **list, const char *path,
301 bool use_for_modules, bool head, bool warn)
303 gfc_directorylist *dir;
304 const char *p;
305 char *q;
306 struct stat st;
307 size_t len;
308 int i;
310 p = path;
311 while (*p == ' ' || *p == '\t') /* someone might do "-I include" */
312 if (*p++ == '\0')
313 return;
315 /* Strip trailing directory separators from the path, as this
316 will confuse Windows systems. */
317 len = strlen (p);
318 q = (char *) alloca (len + 1);
319 memcpy (q, p, len + 1);
320 i = len - 1;
321 while (i >=0 && IS_DIR_SEPARATOR (q[i]))
322 q[i--] = '\0';
324 if (stat (q, &st))
326 if (errno != ENOENT)
327 gfc_warning_now ("Include directory \"%s\": %s", path,
328 xstrerror(errno));
329 else
331 /* FIXME: Also support -Wmissing-include-dirs. */
332 if (warn)
333 gfc_warning_now ("Nonexistent include directory \"%s\"", path);
335 return;
337 else if (!S_ISDIR (st.st_mode))
339 gfc_warning_now ("\"%s\" is not a directory", path);
340 return;
343 if (head || *list == NULL)
345 dir = XCNEW (gfc_directorylist);
346 if (!head)
347 *list = dir;
349 else
351 dir = *list;
352 while (dir->next)
353 dir = dir->next;
355 dir->next = XCNEW (gfc_directorylist);
356 dir = dir->next;
359 dir->next = head ? *list : NULL;
360 if (head)
361 *list = dir;
362 dir->use_for_modules = use_for_modules;
363 dir->path = XCNEWVEC (char, strlen (p) + 2);
364 strcpy (dir->path, p);
365 strcat (dir->path, "/"); /* make '/' last character */
369 void
370 gfc_add_include_path (const char *path, bool use_for_modules, bool file_dir,
371 bool warn)
373 add_path_to_list (&include_dirs, path, use_for_modules, file_dir, warn);
375 /* For '#include "..."' these directories are automatically searched. */
376 if (!file_dir)
377 gfc_cpp_add_include_path (xstrdup(path), true);
381 void
382 gfc_add_intrinsic_modules_path (const char *path)
384 add_path_to_list (&intrinsic_modules_dirs, path, true, false, false);
388 /* Release resources allocated for options. */
390 void
391 gfc_release_include_path (void)
393 gfc_directorylist *p;
395 while (include_dirs != NULL)
397 p = include_dirs;
398 include_dirs = include_dirs->next;
399 free (p->path);
400 free (p);
403 while (intrinsic_modules_dirs != NULL)
405 p = intrinsic_modules_dirs;
406 intrinsic_modules_dirs = intrinsic_modules_dirs->next;
407 free (p->path);
408 free (p);
411 free (gfc_option.module_dir);
415 static FILE *
416 open_included_file (const char *name, gfc_directorylist *list,
417 bool module, bool system)
419 char *fullname;
420 gfc_directorylist *p;
421 FILE *f;
423 for (p = list; p; p = p->next)
425 if (module && !p->use_for_modules)
426 continue;
428 fullname = (char *) alloca(strlen (p->path) + strlen (name) + 1);
429 strcpy (fullname, p->path);
430 strcat (fullname, name);
432 f = gfc_open_file (fullname);
433 if (f != NULL)
435 if (gfc_cpp_makedep ())
436 gfc_cpp_add_dep (fullname, system);
438 return f;
442 return NULL;
446 /* Opens file for reading, searching through the include directories
447 given if necessary. If the include_cwd argument is true, we try
448 to open the file in the current directory first. */
450 FILE *
451 gfc_open_included_file (const char *name, bool include_cwd, bool module)
453 FILE *f = NULL;
455 if (IS_ABSOLUTE_PATH (name) || include_cwd)
457 f = gfc_open_file (name);
458 if (f && gfc_cpp_makedep ())
459 gfc_cpp_add_dep (name, false);
462 if (!f)
463 f = open_included_file (name, include_dirs, module, false);
465 return f;
469 /* Test to see if we're at the end of the main source file. */
472 gfc_at_end (void)
474 return end_flag;
478 /* Test to see if we're at the end of the current file. */
481 gfc_at_eof (void)
483 if (gfc_at_end ())
484 return 1;
486 if (line_head == NULL)
487 return 1; /* Null file */
489 if (gfc_current_locus.lb == NULL)
490 return 1;
492 return 0;
496 /* Test to see if we're at the beginning of a new line. */
499 gfc_at_bol (void)
501 if (gfc_at_eof ())
502 return 1;
504 return (gfc_current_locus.nextc == gfc_current_locus.lb->line);
508 /* Test to see if we're at the end of a line. */
511 gfc_at_eol (void)
513 if (gfc_at_eof ())
514 return 1;
516 return (*gfc_current_locus.nextc == '\0');
519 static void
520 add_file_change (const char *filename, int line)
522 if (file_changes_count == file_changes_allocated)
524 if (file_changes_allocated)
525 file_changes_allocated *= 2;
526 else
527 file_changes_allocated = 16;
528 file_changes = XRESIZEVEC (struct gfc_file_change, file_changes,
529 file_changes_allocated);
531 file_changes[file_changes_count].filename = filename;
532 file_changes[file_changes_count].lb = NULL;
533 file_changes[file_changes_count++].line = line;
536 static void
537 report_file_change (gfc_linebuf *lb)
539 size_t c = file_changes_cur;
540 while (c < file_changes_count
541 && file_changes[c].lb == lb)
543 if (file_changes[c].filename)
544 (*debug_hooks->start_source_file) (file_changes[c].line,
545 file_changes[c].filename);
546 else
547 (*debug_hooks->end_source_file) (file_changes[c].line);
548 ++c;
550 file_changes_cur = c;
553 void
554 gfc_start_source_files (void)
556 /* If the debugger wants the name of the main source file,
557 we give it. */
558 if (debug_hooks->start_end_main_source_file)
559 (*debug_hooks->start_source_file) (0, gfc_source_file);
561 file_changes_cur = 0;
562 report_file_change (gfc_current_locus.lb);
565 void
566 gfc_end_source_files (void)
568 report_file_change (NULL);
570 if (debug_hooks->start_end_main_source_file)
571 (*debug_hooks->end_source_file) (0);
574 /* Advance the current line pointer to the next line. */
576 void
577 gfc_advance_line (void)
579 if (gfc_at_end ())
580 return;
582 if (gfc_current_locus.lb == NULL)
584 end_flag = 1;
585 return;
588 if (gfc_current_locus.lb->next
589 && !gfc_current_locus.lb->next->dbg_emitted)
591 report_file_change (gfc_current_locus.lb->next);
592 gfc_current_locus.lb->next->dbg_emitted = true;
595 gfc_current_locus.lb = gfc_current_locus.lb->next;
597 if (gfc_current_locus.lb != NULL)
598 gfc_current_locus.nextc = gfc_current_locus.lb->line;
599 else
601 gfc_current_locus.nextc = NULL;
602 end_flag = 1;
607 /* Get the next character from the input, advancing gfc_current_file's
608 locus. When we hit the end of the line or the end of the file, we
609 start returning a '\n' in order to complete the current statement.
610 No Fortran line conventions are implemented here.
612 Requiring explicit advances to the next line prevents the parse
613 pointer from being on the wrong line if the current statement ends
614 prematurely. */
616 static gfc_char_t
617 next_char (void)
619 gfc_char_t c;
621 if (gfc_current_locus.nextc == NULL)
622 return '\n';
624 c = *gfc_current_locus.nextc++;
625 if (c == '\0')
627 gfc_current_locus.nextc--; /* Remain on this line. */
628 c = '\n';
631 return c;
635 /* Skip a comment. When we come here the parse pointer is positioned
636 immediately after the comment character. If we ever implement
637 compiler directives within comments, here is where we parse the
638 directive. */
640 static void
641 skip_comment_line (void)
643 gfc_char_t c;
647 c = next_char ();
649 while (c != '\n');
651 gfc_advance_line ();
656 gfc_define_undef_line (void)
658 char *tmp;
660 /* All lines beginning with '#' are either #define or #undef. */
661 if (debug_info_level != DINFO_LEVEL_VERBOSE || gfc_peek_ascii_char () != '#')
662 return 0;
664 if (wide_strncmp (gfc_current_locus.nextc, "#define ", 8) == 0)
666 tmp = gfc_widechar_to_char (&gfc_current_locus.nextc[8], -1);
667 (*debug_hooks->define) (gfc_linebuf_linenum (gfc_current_locus.lb),
668 tmp);
669 free (tmp);
672 if (wide_strncmp (gfc_current_locus.nextc, "#undef ", 7) == 0)
674 tmp = gfc_widechar_to_char (&gfc_current_locus.nextc[7], -1);
675 (*debug_hooks->undef) (gfc_linebuf_linenum (gfc_current_locus.lb),
676 tmp);
677 free (tmp);
680 /* Skip the rest of the line. */
681 skip_comment_line ();
683 return 1;
687 /* Return true if GCC$ was matched. */
688 static bool
689 skip_gcc_attribute (locus start)
691 bool r = false;
692 char c;
693 locus old_loc = gfc_current_locus;
695 if ((c = next_char ()) == 'g' || c == 'G')
696 if ((c = next_char ()) == 'c' || c == 'C')
697 if ((c = next_char ()) == 'c' || c == 'C')
698 if ((c = next_char ()) == '$')
699 r = true;
701 if (r == false)
702 gfc_current_locus = old_loc;
703 else
705 gcc_attribute_flag = 1;
706 gcc_attribute_locus = old_loc;
707 gfc_current_locus = start;
710 return r;
715 /* Comment lines are null lines, lines containing only blanks or lines
716 on which the first nonblank line is a '!'.
717 Return true if !$ openmp conditional compilation sentinel was
718 seen. */
720 static bool
721 skip_free_comments (void)
723 locus start;
724 gfc_char_t c;
725 int at_bol;
727 for (;;)
729 at_bol = gfc_at_bol ();
730 start = gfc_current_locus;
731 if (gfc_at_eof ())
732 break;
735 c = next_char ();
736 while (gfc_is_whitespace (c));
738 if (c == '\n')
740 gfc_advance_line ();
741 continue;
744 if (c == '!')
746 /* Keep the !GCC$ line. */
747 if (at_bol && skip_gcc_attribute (start))
748 return false;
750 /* If -fopenmp, we need to handle here 2 things:
751 1) don't treat !$omp as comments, but directives
752 2) handle OpenMP conditional compilation, where
753 !$ should be treated as 2 spaces (for initial lines
754 only if followed by space). */
755 if (gfc_option.gfc_flag_openmp && at_bol)
757 locus old_loc = gfc_current_locus;
758 if (next_char () == '$')
760 c = next_char ();
761 if (c == 'o' || c == 'O')
763 if (((c = next_char ()) == 'm' || c == 'M')
764 && ((c = next_char ()) == 'p' || c == 'P'))
766 if ((c = next_char ()) == ' ' || c == '\t'
767 || continue_flag)
769 while (gfc_is_whitespace (c))
770 c = next_char ();
771 if (c != '\n' && c != '!')
773 openmp_flag = 1;
774 openmp_locus = old_loc;
775 gfc_current_locus = start;
776 return false;
779 else
780 gfc_warning_now ("!$OMP at %C starts a commented "
781 "line as it neither is followed "
782 "by a space nor is a "
783 "continuation line");
785 gfc_current_locus = old_loc;
786 next_char ();
787 c = next_char ();
789 if (continue_flag || c == ' ' || c == '\t')
791 gfc_current_locus = old_loc;
792 next_char ();
793 openmp_flag = 0;
794 return true;
797 gfc_current_locus = old_loc;
799 skip_comment_line ();
800 continue;
803 break;
806 if (openmp_flag && at_bol)
807 openmp_flag = 0;
809 gcc_attribute_flag = 0;
810 gfc_current_locus = start;
811 return false;
815 /* Skip comment lines in fixed source mode. We have the same rules as
816 in skip_free_comment(), except that we can have a 'c', 'C' or '*'
817 in column 1, and a '!' cannot be in column 6. Also, we deal with
818 lines with 'd' or 'D' in column 1, if the user requested this. */
820 static void
821 skip_fixed_comments (void)
823 locus start;
824 int col;
825 gfc_char_t c;
827 if (! gfc_at_bol ())
829 start = gfc_current_locus;
830 if (! gfc_at_eof ())
833 c = next_char ();
834 while (gfc_is_whitespace (c));
836 if (c == '\n')
837 gfc_advance_line ();
838 else if (c == '!')
839 skip_comment_line ();
842 if (! gfc_at_bol ())
844 gfc_current_locus = start;
845 return;
849 for (;;)
851 start = gfc_current_locus;
852 if (gfc_at_eof ())
853 break;
855 c = next_char ();
856 if (c == '\n')
858 gfc_advance_line ();
859 continue;
862 if (c == '!' || c == 'c' || c == 'C' || c == '*')
864 if (skip_gcc_attribute (start))
866 /* Canonicalize to *$omp. */
867 *start.nextc = '*';
868 return;
871 /* If -fopenmp, we need to handle here 2 things:
872 1) don't treat !$omp|c$omp|*$omp as comments, but directives
873 2) handle OpenMP conditional compilation, where
874 !$|c$|*$ should be treated as 2 spaces if the characters
875 in columns 3 to 6 are valid fixed form label columns
876 characters. */
877 if (gfc_current_locus.lb != NULL
878 && continue_line < gfc_linebuf_linenum (gfc_current_locus.lb))
879 continue_line = gfc_linebuf_linenum (gfc_current_locus.lb);
881 if (gfc_option.gfc_flag_openmp)
883 if (next_char () == '$')
885 c = next_char ();
886 if (c == 'o' || c == 'O')
888 if (((c = next_char ()) == 'm' || c == 'M')
889 && ((c = next_char ()) == 'p' || c == 'P'))
891 c = next_char ();
892 if (c != '\n'
893 && ((openmp_flag && continue_flag)
894 || c == ' ' || c == '\t' || c == '0'))
897 c = next_char ();
898 while (gfc_is_whitespace (c));
899 if (c != '\n' && c != '!')
901 /* Canonicalize to *$omp. */
902 *start.nextc = '*';
903 openmp_flag = 1;
904 gfc_current_locus = start;
905 return;
910 else
912 int digit_seen = 0;
914 for (col = 3; col < 6; col++, c = next_char ())
915 if (c == ' ')
916 continue;
917 else if (c == '\t')
919 col = 6;
920 break;
922 else if (c < '0' || c > '9')
923 break;
924 else
925 digit_seen = 1;
927 if (col == 6 && c != '\n'
928 && ((continue_flag && !digit_seen)
929 || c == ' ' || c == '\t' || c == '0'))
931 gfc_current_locus = start;
932 start.nextc[0] = ' ';
933 start.nextc[1] = ' ';
934 continue;
938 gfc_current_locus = start;
940 skip_comment_line ();
941 continue;
944 if (gfc_option.flag_d_lines != -1 && (c == 'd' || c == 'D'))
946 if (gfc_option.flag_d_lines == 0)
948 skip_comment_line ();
949 continue;
951 else
952 *start.nextc = c = ' ';
955 col = 1;
957 while (gfc_is_whitespace (c))
959 c = next_char ();
960 col++;
963 if (c == '\n')
965 gfc_advance_line ();
966 continue;
969 if (col != 6 && c == '!')
971 if (gfc_current_locus.lb != NULL
972 && continue_line < gfc_linebuf_linenum (gfc_current_locus.lb))
973 continue_line = gfc_linebuf_linenum (gfc_current_locus.lb);
974 skip_comment_line ();
975 continue;
978 break;
981 openmp_flag = 0;
982 gcc_attribute_flag = 0;
983 gfc_current_locus = start;
987 /* Skips the current line if it is a comment. */
989 void
990 gfc_skip_comments (void)
992 if (gfc_current_form == FORM_FREE)
993 skip_free_comments ();
994 else
995 skip_fixed_comments ();
999 /* Get the next character from the input, taking continuation lines
1000 and end-of-line comments into account. This implies that comment
1001 lines between continued lines must be eaten here. For higher-level
1002 subroutines, this flattens continued lines into a single logical
1003 line. The in_string flag denotes whether we're inside a character
1004 context or not. */
1006 gfc_char_t
1007 gfc_next_char_literal (gfc_instring in_string)
1009 locus old_loc;
1010 int i, prev_openmp_flag;
1011 gfc_char_t c;
1013 continue_flag = 0;
1015 restart:
1016 c = next_char ();
1017 if (gfc_at_end ())
1019 continue_count = 0;
1020 return c;
1023 if (gfc_current_form == FORM_FREE)
1025 bool openmp_cond_flag;
1027 if (!in_string && c == '!')
1029 if (gcc_attribute_flag
1030 && memcmp (&gfc_current_locus, &gcc_attribute_locus,
1031 sizeof (gfc_current_locus)) == 0)
1032 goto done;
1034 if (openmp_flag
1035 && memcmp (&gfc_current_locus, &openmp_locus,
1036 sizeof (gfc_current_locus)) == 0)
1037 goto done;
1039 /* This line can't be continued */
1042 c = next_char ();
1044 while (c != '\n');
1046 /* Avoid truncation warnings for comment ending lines. */
1047 gfc_current_locus.lb->truncated = 0;
1049 goto done;
1052 /* Check to see if the continuation line was truncated. */
1053 if (gfc_option.warn_line_truncation && gfc_current_locus.lb != NULL
1054 && gfc_current_locus.lb->truncated)
1056 int maxlen = gfc_option.free_line_length;
1057 gfc_char_t *current_nextc = gfc_current_locus.nextc;
1059 gfc_current_locus.lb->truncated = 0;
1060 gfc_current_locus.nextc = gfc_current_locus.lb->line + maxlen;
1061 gfc_warning_now ("Line truncated at %L", &gfc_current_locus);
1062 gfc_current_locus.nextc = current_nextc;
1065 if (c != '&')
1066 goto done;
1068 /* If the next nonblank character is a ! or \n, we've got a
1069 continuation line. */
1070 old_loc = gfc_current_locus;
1072 c = next_char ();
1073 while (gfc_is_whitespace (c))
1074 c = next_char ();
1076 /* Character constants to be continued cannot have commentary
1077 after the '&'. */
1079 if (in_string && c != '\n')
1081 gfc_current_locus = old_loc;
1082 c = '&';
1083 goto done;
1086 if (c != '!' && c != '\n')
1088 gfc_current_locus = old_loc;
1089 c = '&';
1090 goto done;
1093 prev_openmp_flag = openmp_flag;
1094 continue_flag = 1;
1095 if (c == '!')
1096 skip_comment_line ();
1097 else
1098 gfc_advance_line ();
1100 if (gfc_at_eof ())
1101 goto not_continuation;
1103 /* We've got a continuation line. If we are on the very next line after
1104 the last continuation, increment the continuation line count and
1105 check whether the limit has been exceeded. */
1106 if (gfc_linebuf_linenum (gfc_current_locus.lb) == continue_line + 1)
1108 if (++continue_count == gfc_option.max_continue_free)
1110 if (gfc_notification_std (GFC_STD_GNU) || pedantic)
1111 gfc_warning ("Limit of %d continuations exceeded in "
1112 "statement at %C", gfc_option.max_continue_free);
1116 /* Now find where it continues. First eat any comment lines. */
1117 openmp_cond_flag = skip_free_comments ();
1119 if (gfc_current_locus.lb != NULL
1120 && continue_line < gfc_linebuf_linenum (gfc_current_locus.lb))
1121 continue_line = gfc_linebuf_linenum (gfc_current_locus.lb);
1123 if (prev_openmp_flag != openmp_flag)
1125 gfc_current_locus = old_loc;
1126 openmp_flag = prev_openmp_flag;
1127 c = '&';
1128 goto done;
1131 /* Now that we have a non-comment line, probe ahead for the
1132 first non-whitespace character. If it is another '&', then
1133 reading starts at the next character, otherwise we must back
1134 up to where the whitespace started and resume from there. */
1136 old_loc = gfc_current_locus;
1138 c = next_char ();
1139 while (gfc_is_whitespace (c))
1140 c = next_char ();
1142 if (openmp_flag)
1144 for (i = 0; i < 5; i++, c = next_char ())
1146 gcc_assert (gfc_wide_tolower (c) == (unsigned char) "!$omp"[i]);
1147 if (i == 4)
1148 old_loc = gfc_current_locus;
1150 while (gfc_is_whitespace (c))
1151 c = next_char ();
1154 if (c != '&')
1156 if (in_string)
1158 gfc_current_locus.nextc--;
1159 if (gfc_option.warn_ampersand && in_string == INSTRING_WARN)
1160 gfc_warning ("Missing '&' in continued character "
1161 "constant at %C");
1163 /* Both !$omp and !$ -fopenmp continuation lines have & on the
1164 continuation line only optionally. */
1165 else if (openmp_flag || openmp_cond_flag)
1166 gfc_current_locus.nextc--;
1167 else
1169 c = ' ';
1170 gfc_current_locus = old_loc;
1171 goto done;
1175 else /* Fixed form. */
1177 /* Fixed form continuation. */
1178 if (!in_string && c == '!')
1180 /* Skip comment at end of line. */
1183 c = next_char ();
1185 while (c != '\n');
1187 /* Avoid truncation warnings for comment ending lines. */
1188 gfc_current_locus.lb->truncated = 0;
1191 if (c != '\n')
1192 goto done;
1194 /* Check to see if the continuation line was truncated. */
1195 if (gfc_option.warn_line_truncation && gfc_current_locus.lb != NULL
1196 && gfc_current_locus.lb->truncated)
1198 gfc_current_locus.lb->truncated = 0;
1199 gfc_warning_now ("Line truncated at %L", &gfc_current_locus);
1202 prev_openmp_flag = openmp_flag;
1203 continue_flag = 1;
1204 old_loc = gfc_current_locus;
1206 gfc_advance_line ();
1207 skip_fixed_comments ();
1209 /* See if this line is a continuation line. */
1210 if (openmp_flag != prev_openmp_flag)
1212 openmp_flag = prev_openmp_flag;
1213 goto not_continuation;
1216 if (!openmp_flag)
1217 for (i = 0; i < 5; i++)
1219 c = next_char ();
1220 if (c != ' ')
1221 goto not_continuation;
1223 else
1224 for (i = 0; i < 5; i++)
1226 c = next_char ();
1227 if (gfc_wide_tolower (c) != (unsigned char) "*$omp"[i])
1228 goto not_continuation;
1231 c = next_char ();
1232 if (c == '0' || c == ' ' || c == '\n')
1233 goto not_continuation;
1235 /* We've got a continuation line. If we are on the very next line after
1236 the last continuation, increment the continuation line count and
1237 check whether the limit has been exceeded. */
1238 if (gfc_linebuf_linenum (gfc_current_locus.lb) == continue_line + 1)
1240 if (++continue_count == gfc_option.max_continue_fixed)
1242 if (gfc_notification_std (GFC_STD_GNU) || pedantic)
1243 gfc_warning ("Limit of %d continuations exceeded in "
1244 "statement at %C",
1245 gfc_option.max_continue_fixed);
1249 if (gfc_current_locus.lb != NULL
1250 && continue_line < gfc_linebuf_linenum (gfc_current_locus.lb))
1251 continue_line = gfc_linebuf_linenum (gfc_current_locus.lb);
1254 /* Ready to read first character of continuation line, which might
1255 be another continuation line! */
1256 goto restart;
1258 not_continuation:
1259 c = '\n';
1260 gfc_current_locus = old_loc;
1262 done:
1263 if (c == '\n')
1264 continue_count = 0;
1265 continue_flag = 0;
1266 return c;
1270 /* Get the next character of input, folded to lowercase. In fixed
1271 form mode, we also ignore spaces. When matcher subroutines are
1272 parsing character literals, they have to call
1273 gfc_next_char_literal(). */
1275 gfc_char_t
1276 gfc_next_char (void)
1278 gfc_char_t c;
1282 c = gfc_next_char_literal (NONSTRING);
1284 while (gfc_current_form == FORM_FIXED && gfc_is_whitespace (c));
1286 return gfc_wide_tolower (c);
1289 char
1290 gfc_next_ascii_char (void)
1292 gfc_char_t c = gfc_next_char ();
1294 return (gfc_wide_fits_in_byte (c) ? (unsigned char) c
1295 : (unsigned char) UCHAR_MAX);
1299 gfc_char_t
1300 gfc_peek_char (void)
1302 locus old_loc;
1303 gfc_char_t c;
1305 old_loc = gfc_current_locus;
1306 c = gfc_next_char ();
1307 gfc_current_locus = old_loc;
1309 return c;
1313 char
1314 gfc_peek_ascii_char (void)
1316 gfc_char_t c = gfc_peek_char ();
1318 return (gfc_wide_fits_in_byte (c) ? (unsigned char) c
1319 : (unsigned char) UCHAR_MAX);
1323 /* Recover from an error. We try to get past the current statement
1324 and get lined up for the next. The next statement follows a '\n'
1325 or a ';'. We also assume that we are not within a character
1326 constant, and deal with finding a '\'' or '"'. */
1328 void
1329 gfc_error_recovery (void)
1331 gfc_char_t c, delim;
1333 if (gfc_at_eof ())
1334 return;
1336 for (;;)
1338 c = gfc_next_char ();
1339 if (c == '\n' || c == ';')
1340 break;
1342 if (c != '\'' && c != '"')
1344 if (gfc_at_eof ())
1345 break;
1346 continue;
1348 delim = c;
1350 for (;;)
1352 c = next_char ();
1354 if (c == delim)
1355 break;
1356 if (c == '\n')
1357 return;
1358 if (c == '\\')
1360 c = next_char ();
1361 if (c == '\n')
1362 return;
1365 if (gfc_at_eof ())
1366 break;
1371 /* Read ahead until the next character to be read is not whitespace. */
1373 void
1374 gfc_gobble_whitespace (void)
1376 static int linenum = 0;
1377 locus old_loc;
1378 gfc_char_t c;
1382 old_loc = gfc_current_locus;
1383 c = gfc_next_char_literal (NONSTRING);
1384 /* Issue a warning for nonconforming tabs. We keep track of the line
1385 number because the Fortran matchers will often back up and the same
1386 line will be scanned multiple times. */
1387 if (!gfc_option.warn_tabs && c == '\t')
1389 int cur_linenum = LOCATION_LINE (gfc_current_locus.lb->location);
1390 if (cur_linenum != linenum)
1392 linenum = cur_linenum;
1393 gfc_warning_now ("Nonconforming tab character at %C");
1397 while (gfc_is_whitespace (c));
1399 gfc_current_locus = old_loc;
1403 /* Load a single line into pbuf.
1405 If pbuf points to a NULL pointer, it is allocated.
1406 We truncate lines that are too long, unless we're dealing with
1407 preprocessor lines or if the option -ffixed-line-length-none is set,
1408 in which case we reallocate the buffer to fit the entire line, if
1409 need be.
1410 In fixed mode, we expand a tab that occurs within the statement
1411 label region to expand to spaces that leave the next character in
1412 the source region.
1414 If first_char is not NULL, it's a pointer to a single char value holding
1415 the first character of the line, which has already been read by the
1416 caller. This avoids the use of ungetc().
1418 load_line returns whether the line was truncated.
1420 NOTE: The error machinery isn't available at this point, so we can't
1421 easily report line and column numbers consistent with other
1422 parts of gfortran. */
1424 static int
1425 load_line (FILE *input, gfc_char_t **pbuf, int *pbuflen, const int *first_char)
1427 static int linenum = 0, current_line = 1;
1428 int c, maxlen, i, preprocessor_flag, buflen = *pbuflen;
1429 int trunc_flag = 0, seen_comment = 0;
1430 int seen_printable = 0, seen_ampersand = 0, quoted = ' ';
1431 gfc_char_t *buffer;
1432 bool found_tab = false;
1434 /* Determine the maximum allowed line length. */
1435 if (gfc_current_form == FORM_FREE)
1436 maxlen = gfc_option.free_line_length;
1437 else if (gfc_current_form == FORM_FIXED)
1438 maxlen = gfc_option.fixed_line_length;
1439 else
1440 maxlen = 72;
1442 if (*pbuf == NULL)
1444 /* Allocate the line buffer, storing its length into buflen.
1445 Note that if maxlen==0, indicating that arbitrary-length lines
1446 are allowed, the buffer will be reallocated if this length is
1447 insufficient; since 132 characters is the length of a standard
1448 free-form line, we use that as a starting guess. */
1449 if (maxlen > 0)
1450 buflen = maxlen;
1451 else
1452 buflen = 132;
1454 *pbuf = gfc_get_wide_string (buflen + 1);
1457 i = 0;
1458 buffer = *pbuf;
1460 if (first_char)
1461 c = *first_char;
1462 else
1463 c = getc (input);
1465 /* In order to not truncate preprocessor lines, we have to
1466 remember that this is one. */
1467 preprocessor_flag = (c == '#' ? 1 : 0);
1469 for (;;)
1471 if (c == EOF)
1472 break;
1474 if (c == '\n')
1476 /* Check for illegal use of ampersand. See F95 Standard 3.3.1.3. */
1477 if (gfc_current_form == FORM_FREE
1478 && !seen_printable && seen_ampersand)
1480 if (pedantic)
1481 gfc_error_now ("'&' not allowed by itself in line %d",
1482 current_line);
1483 else
1484 gfc_warning_now ("'&' not allowed by itself in line %d",
1485 current_line);
1487 break;
1490 if (c == '\r' || c == '\0')
1491 goto next_char; /* Gobble characters. */
1493 if (c == '&')
1495 if (seen_ampersand)
1497 seen_ampersand = 0;
1498 seen_printable = 1;
1500 else
1501 seen_ampersand = 1;
1504 if ((c != '&' && c != '!' && c != ' ') || (c == '!' && !seen_ampersand))
1505 seen_printable = 1;
1507 /* Is this a fixed-form comment? */
1508 if (gfc_current_form == FORM_FIXED && i == 0
1509 && (c == '*' || c == 'c' || c == 'd'))
1510 seen_comment = 1;
1512 if (quoted == ' ')
1514 if (c == '\'' || c == '"')
1515 quoted = c;
1517 else if (c == quoted)
1518 quoted = ' ';
1520 /* Is this a free-form comment? */
1521 if (c == '!' && quoted == ' ')
1522 seen_comment = 1;
1524 /* Vendor extension: "<tab>1" marks a continuation line. */
1525 if (found_tab)
1527 found_tab = false;
1528 if (c >= '1' && c <= '9')
1530 *(buffer-1) = c;
1531 goto next_char;
1535 if (gfc_current_form == FORM_FIXED && c == '\t' && i < 6)
1537 found_tab = true;
1539 if (!gfc_option.warn_tabs && seen_comment == 0
1540 && current_line != linenum)
1542 linenum = current_line;
1543 gfc_warning_now ("Nonconforming tab character in column %d "
1544 "of line %d", i+1, linenum);
1547 while (i < 6)
1549 *buffer++ = ' ';
1550 i++;
1553 goto next_char;
1556 *buffer++ = c;
1557 i++;
1559 if (maxlen == 0 || preprocessor_flag)
1561 if (i >= buflen)
1563 /* Reallocate line buffer to double size to hold the
1564 overlong line. */
1565 buflen = buflen * 2;
1566 *pbuf = XRESIZEVEC (gfc_char_t, *pbuf, (buflen + 1));
1567 buffer = (*pbuf) + i;
1570 else if (i >= maxlen)
1572 bool trunc_warn = true;
1574 /* Enhancement, if the very next non-space character is an ampersand
1575 or comment that we would otherwise warn about, don't mark as
1576 truncated. */
1578 /* Truncate the rest of the line. */
1579 for (;;)
1581 c = getc (input);
1582 if (c == '\r' || c == ' ')
1583 continue;
1585 if (c == '\n' || c == EOF)
1586 break;
1588 if (!trunc_warn && c != '!')
1589 trunc_warn = true;
1591 if (trunc_warn && ((gfc_current_form == FORM_FIXED && c == '&')
1592 || c == '!'))
1593 trunc_warn = false;
1595 if (c == '!')
1596 seen_comment = 1;
1598 if (trunc_warn && !seen_comment)
1599 trunc_flag = 1;
1602 c = '\n';
1603 continue;
1606 next_char:
1607 c = getc (input);
1610 /* Pad lines to the selected line length in fixed form. */
1611 if (gfc_current_form == FORM_FIXED
1612 && gfc_option.fixed_line_length != 0
1613 && !preprocessor_flag
1614 && c != EOF)
1616 while (i++ < maxlen)
1617 *buffer++ = ' ';
1620 *buffer = '\0';
1621 *pbuflen = buflen;
1622 current_line++;
1624 return trunc_flag;
1628 /* Get a gfc_file structure, initialize it and add it to
1629 the file stack. */
1631 static gfc_file *
1632 get_file (const char *name, enum lc_reason reason ATTRIBUTE_UNUSED)
1634 gfc_file *f;
1636 f = XCNEW (gfc_file);
1638 f->filename = xstrdup (name);
1640 f->next = file_head;
1641 file_head = f;
1643 f->up = current_file;
1644 if (current_file != NULL)
1645 f->inclusion_line = current_file->line;
1647 linemap_add (line_table, reason, false, f->filename, 1);
1649 return f;
1653 /* Deal with a line from the C preprocessor. The
1654 initial octothorp has already been seen. */
1656 static void
1657 preprocessor_line (gfc_char_t *c)
1659 bool flag[5];
1660 int i, line;
1661 gfc_char_t *wide_filename;
1662 gfc_file *f;
1663 int escaped, unescape;
1664 char *filename;
1666 c++;
1667 while (*c == ' ' || *c == '\t')
1668 c++;
1670 if (*c < '0' || *c > '9')
1671 goto bad_cpp_line;
1673 line = wide_atoi (c);
1675 c = wide_strchr (c, ' ');
1676 if (c == NULL)
1678 /* No file name given. Set new line number. */
1679 current_file->line = line;
1680 return;
1683 /* Skip spaces. */
1684 while (*c == ' ' || *c == '\t')
1685 c++;
1687 /* Skip quote. */
1688 if (*c != '"')
1689 goto bad_cpp_line;
1690 ++c;
1692 wide_filename = c;
1694 /* Make filename end at quote. */
1695 unescape = 0;
1696 escaped = false;
1697 while (*c && ! (!escaped && *c == '"'))
1699 if (escaped)
1700 escaped = false;
1701 else if (*c == '\\')
1703 escaped = true;
1704 unescape++;
1706 ++c;
1709 if (! *c)
1710 /* Preprocessor line has no closing quote. */
1711 goto bad_cpp_line;
1713 *c++ = '\0';
1715 /* Undo effects of cpp_quote_string. */
1716 if (unescape)
1718 gfc_char_t *s = wide_filename;
1719 gfc_char_t *d = gfc_get_wide_string (c - wide_filename - unescape);
1721 wide_filename = d;
1722 while (*s)
1724 if (*s == '\\')
1725 *d++ = *++s;
1726 else
1727 *d++ = *s;
1728 s++;
1730 *d = '\0';
1733 /* Get flags. */
1735 flag[1] = flag[2] = flag[3] = flag[4] = false;
1737 for (;;)
1739 c = wide_strchr (c, ' ');
1740 if (c == NULL)
1741 break;
1743 c++;
1744 i = wide_atoi (c);
1746 if (1 <= i && i <= 4)
1747 flag[i] = true;
1750 /* Convert the filename in wide characters into a filename in narrow
1751 characters. */
1752 filename = gfc_widechar_to_char (wide_filename, -1);
1754 /* Interpret flags. */
1756 if (flag[1]) /* Starting new file. */
1758 f = get_file (filename, LC_RENAME);
1759 add_file_change (f->filename, f->inclusion_line);
1760 current_file = f;
1763 if (flag[2]) /* Ending current file. */
1765 if (!current_file->up
1766 || filename_cmp (current_file->up->filename, filename) != 0)
1768 gfc_warning_now ("%s:%d: file %s left but not entered",
1769 current_file->filename, current_file->line,
1770 filename);
1771 if (unescape)
1772 free (wide_filename);
1773 free (filename);
1774 return;
1777 add_file_change (NULL, line);
1778 current_file = current_file->up;
1779 linemap_add (line_table, LC_RENAME, false, current_file->filename,
1780 current_file->line);
1783 /* The name of the file can be a temporary file produced by
1784 cpp. Replace the name if it is different. */
1786 if (filename_cmp (current_file->filename, filename) != 0)
1788 /* FIXME: we leak the old filename because a pointer to it may be stored
1789 in the linemap. Alternative could be using GC or updating linemap to
1790 point to the new name, but there is no API for that currently. */
1791 current_file->filename = xstrdup (filename);
1794 /* Set new line number. */
1795 current_file->line = line;
1796 if (unescape)
1797 free (wide_filename);
1798 free (filename);
1799 return;
1801 bad_cpp_line:
1802 gfc_warning_now ("%s:%d: Illegal preprocessor directive",
1803 current_file->filename, current_file->line);
1804 current_file->line++;
1808 static bool load_file (const char *, const char *, bool);
1810 /* include_line()-- Checks a line buffer to see if it is an include
1811 line. If so, we call load_file() recursively to load the included
1812 file. We never return a syntax error because a statement like
1813 "include = 5" is perfectly legal. We return false if no include was
1814 processed or true if we matched an include. */
1816 static bool
1817 include_line (gfc_char_t *line)
1819 gfc_char_t quote, *c, *begin, *stop;
1820 char *filename;
1822 c = line;
1824 if (gfc_option.gfc_flag_openmp)
1826 if (gfc_current_form == FORM_FREE)
1828 while (*c == ' ' || *c == '\t')
1829 c++;
1830 if (*c == '!' && c[1] == '$' && (c[2] == ' ' || c[2] == '\t'))
1831 c += 3;
1833 else
1835 if ((*c == '!' || *c == 'c' || *c == 'C' || *c == '*')
1836 && c[1] == '$' && (c[2] == ' ' || c[2] == '\t'))
1837 c += 3;
1841 while (*c == ' ' || *c == '\t')
1842 c++;
1844 if (gfc_wide_strncasecmp (c, "include", 7))
1845 return false;
1847 c += 7;
1848 while (*c == ' ' || *c == '\t')
1849 c++;
1851 /* Find filename between quotes. */
1853 quote = *c++;
1854 if (quote != '"' && quote != '\'')
1855 return false;
1857 begin = c;
1859 while (*c != quote && *c != '\0')
1860 c++;
1862 if (*c == '\0')
1863 return false;
1865 stop = c++;
1867 while (*c == ' ' || *c == '\t')
1868 c++;
1870 if (*c != '\0' && *c != '!')
1871 return false;
1873 /* We have an include line at this point. */
1875 *stop = '\0'; /* It's ok to trash the buffer, as this line won't be
1876 read by anything else. */
1878 filename = gfc_widechar_to_char (begin, -1);
1879 if (!load_file (filename, NULL, false))
1880 exit (FATAL_EXIT_CODE);
1882 free (filename);
1883 return true;
1887 /* Load a file into memory by calling load_line until the file ends. */
1889 static bool
1890 load_file (const char *realfilename, const char *displayedname, bool initial)
1892 gfc_char_t *line;
1893 gfc_linebuf *b;
1894 gfc_file *f;
1895 FILE *input;
1896 int len, line_len;
1897 bool first_line;
1898 const char *filename;
1899 /* If realfilename and displayedname are different and non-null then
1900 surely realfilename is the preprocessed form of
1901 displayedname. */
1902 bool preprocessed_p = (realfilename && displayedname
1903 && strcmp (realfilename, displayedname));
1905 filename = displayedname ? displayedname : realfilename;
1907 for (f = current_file; f; f = f->up)
1908 if (filename_cmp (filename, f->filename) == 0)
1910 fprintf (stderr, "%s:%d: Error: File '%s' is being included "
1911 "recursively\n", current_file->filename, current_file->line,
1912 filename);
1913 return false;
1916 if (initial)
1918 if (gfc_src_file)
1920 input = gfc_src_file;
1921 gfc_src_file = NULL;
1923 else
1924 input = gfc_open_file (realfilename);
1925 if (input == NULL)
1927 gfc_error_now ("Can't open file '%s'", filename);
1928 return false;
1931 else
1933 input = gfc_open_included_file (realfilename, false, false);
1934 if (input == NULL)
1936 fprintf (stderr, "%s:%d: Error: Can't open included file '%s'\n",
1937 current_file->filename, current_file->line, filename);
1938 return false;
1942 /* Load the file.
1944 A "non-initial" file means a file that is being included. In
1945 that case we are creating an LC_ENTER map.
1947 An "initial" file means a main file; one that is not included.
1948 That file has already got at least one (surely more) line map(s)
1949 created by gfc_init. So the subsequent map created in that case
1950 must have LC_RENAME reason.
1952 This latter case is not true for a preprocessed file. In that
1953 case, although the file is "initial", the line maps created by
1954 gfc_init was used during the preprocessing of the file. Now that
1955 the preprocessing is over and we are being fed the result of that
1956 preprocessing, we need to create a brand new line map for the
1957 preprocessed file, so the reason is going to be LC_ENTER. */
1959 f = get_file (filename, (initial && !preprocessed_p) ? LC_RENAME : LC_ENTER);
1960 if (!initial)
1961 add_file_change (f->filename, f->inclusion_line);
1962 current_file = f;
1963 current_file->line = 1;
1964 line = NULL;
1965 line_len = 0;
1966 first_line = true;
1968 if (initial && gfc_src_preprocessor_lines[0])
1970 preprocessor_line (gfc_src_preprocessor_lines[0]);
1971 free (gfc_src_preprocessor_lines[0]);
1972 gfc_src_preprocessor_lines[0] = NULL;
1973 if (gfc_src_preprocessor_lines[1])
1975 preprocessor_line (gfc_src_preprocessor_lines[1]);
1976 free (gfc_src_preprocessor_lines[1]);
1977 gfc_src_preprocessor_lines[1] = NULL;
1981 for (;;)
1983 int trunc = load_line (input, &line, &line_len, NULL);
1985 len = gfc_wide_strlen (line);
1986 if (feof (input) && len == 0)
1987 break;
1989 /* If this is the first line of the file, it can contain a byte
1990 order mark (BOM), which we will ignore:
1991 FF FE is UTF-16 little endian,
1992 FE FF is UTF-16 big endian,
1993 EF BB BF is UTF-8. */
1994 if (first_line
1995 && ((line_len >= 2 && line[0] == (unsigned char) '\xFF'
1996 && line[1] == (unsigned char) '\xFE')
1997 || (line_len >= 2 && line[0] == (unsigned char) '\xFE'
1998 && line[1] == (unsigned char) '\xFF')
1999 || (line_len >= 3 && line[0] == (unsigned char) '\xEF'
2000 && line[1] == (unsigned char) '\xBB'
2001 && line[2] == (unsigned char) '\xBF')))
2003 int n = line[1] == (unsigned char) '\xBB' ? 3 : 2;
2004 gfc_char_t *new_char = gfc_get_wide_string (line_len);
2006 wide_strcpy (new_char, &line[n]);
2007 free (line);
2008 line = new_char;
2009 len -= n;
2012 /* There are three things this line can be: a line of Fortran
2013 source, an include line or a C preprocessor directive. */
2015 if (line[0] == '#')
2017 /* When -g3 is specified, it's possible that we emit #define
2018 and #undef lines, which we need to pass to the middle-end
2019 so that it can emit correct debug info. */
2020 if (debug_info_level == DINFO_LEVEL_VERBOSE
2021 && (wide_strncmp (line, "#define ", 8) == 0
2022 || wide_strncmp (line, "#undef ", 7) == 0))
2024 else
2026 preprocessor_line (line);
2027 continue;
2031 /* Preprocessed files have preprocessor lines added before the byte
2032 order mark, so first_line is not about the first line of the file
2033 but the first line that's not a preprocessor line. */
2034 first_line = false;
2036 if (include_line (line))
2038 current_file->line++;
2039 continue;
2042 /* Add line. */
2044 b = XCNEWVAR (gfc_linebuf, gfc_linebuf_header_size
2045 + (len + 1) * sizeof (gfc_char_t));
2047 b->location
2048 = linemap_line_start (line_table, current_file->line++, 120);
2049 b->file = current_file;
2050 b->truncated = trunc;
2051 wide_strcpy (b->line, line);
2053 if (line_head == NULL)
2054 line_head = b;
2055 else
2056 line_tail->next = b;
2058 line_tail = b;
2060 while (file_changes_cur < file_changes_count)
2061 file_changes[file_changes_cur++].lb = b;
2064 /* Release the line buffer allocated in load_line. */
2065 free (line);
2067 fclose (input);
2069 if (!initial)
2070 add_file_change (NULL, current_file->inclusion_line + 1);
2071 current_file = current_file->up;
2072 linemap_add (line_table, LC_LEAVE, 0, NULL, 0);
2073 return true;
2077 /* Open a new file and start scanning from that file. Returns true
2078 if everything went OK, false otherwise. If form == FORM_UNKNOWN
2079 it tries to determine the source form from the filename, defaulting
2080 to free form. */
2082 bool
2083 gfc_new_file (void)
2085 bool result;
2087 if (gfc_cpp_enabled ())
2089 result = gfc_cpp_preprocess (gfc_source_file);
2090 if (!gfc_cpp_preprocess_only ())
2091 result = load_file (gfc_cpp_temporary_file (), gfc_source_file, true);
2093 else
2094 result = load_file (gfc_source_file, NULL, true);
2096 gfc_current_locus.lb = line_head;
2097 gfc_current_locus.nextc = (line_head == NULL) ? NULL : line_head->line;
2099 #if 0 /* Debugging aid. */
2100 for (; line_head; line_head = line_head->next)
2101 printf ("%s:%3d %s\n", LOCATION_FILE (line_head->location),
2102 LOCATION_LINE (line_head->location), line_head->line);
2104 exit (SUCCESS_EXIT_CODE);
2105 #endif
2107 return result;
2110 static char *
2111 unescape_filename (const char *ptr)
2113 const char *p = ptr, *s;
2114 char *d, *ret;
2115 int escaped, unescape = 0;
2117 /* Make filename end at quote. */
2118 escaped = false;
2119 while (*p && ! (! escaped && *p == '"'))
2121 if (escaped)
2122 escaped = false;
2123 else if (*p == '\\')
2125 escaped = true;
2126 unescape++;
2128 ++p;
2131 if (!*p || p[1])
2132 return NULL;
2134 /* Undo effects of cpp_quote_string. */
2135 s = ptr;
2136 d = XCNEWVEC (char, p + 1 - ptr - unescape);
2137 ret = d;
2139 while (s != p)
2141 if (*s == '\\')
2142 *d++ = *++s;
2143 else
2144 *d++ = *s;
2145 s++;
2147 *d = '\0';
2148 return ret;
2151 /* For preprocessed files, if the first tokens are of the form # NUM.
2152 handle the directives so we know the original file name. */
2154 const char *
2155 gfc_read_orig_filename (const char *filename, const char **canon_source_file)
2157 int c, len;
2158 char *dirname, *tmp;
2160 gfc_src_file = gfc_open_file (filename);
2161 if (gfc_src_file == NULL)
2162 return NULL;
2164 c = getc (gfc_src_file);
2166 if (c != '#')
2167 return NULL;
2169 len = 0;
2170 load_line (gfc_src_file, &gfc_src_preprocessor_lines[0], &len, &c);
2172 if (wide_strncmp (gfc_src_preprocessor_lines[0], "# 1 \"", 5) != 0)
2173 return NULL;
2175 tmp = gfc_widechar_to_char (&gfc_src_preprocessor_lines[0][5], -1);
2176 filename = unescape_filename (tmp);
2177 free (tmp);
2178 if (filename == NULL)
2179 return NULL;
2181 c = getc (gfc_src_file);
2183 if (c != '#')
2184 return filename;
2186 len = 0;
2187 load_line (gfc_src_file, &gfc_src_preprocessor_lines[1], &len, &c);
2189 if (wide_strncmp (gfc_src_preprocessor_lines[1], "# 1 \"", 5) != 0)
2190 return filename;
2192 tmp = gfc_widechar_to_char (&gfc_src_preprocessor_lines[1][5], -1);
2193 dirname = unescape_filename (tmp);
2194 free (tmp);
2195 if (dirname == NULL)
2196 return filename;
2198 len = strlen (dirname);
2199 if (len < 3 || dirname[len - 1] != '/' || dirname[len - 2] != '/')
2201 free (dirname);
2202 return filename;
2204 dirname[len - 2] = '\0';
2205 set_src_pwd (dirname);
2207 if (! IS_ABSOLUTE_PATH (filename))
2209 char *p = XCNEWVEC (char, len + strlen (filename));
2211 memcpy (p, dirname, len - 2);
2212 p[len - 2] = '/';
2213 strcpy (p + len - 1, filename);
2214 *canon_source_file = p;
2217 free (dirname);
2218 return filename;