OSDN Git Service

2008-05-03 Jerry DeLisle <jvdelisle@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / fortran / gfortran.h
1 /* gfortran header file
2    Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
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 3, 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 COPYING3.  If not see
20 <http://www.gnu.org/licenses/>.  */
21
22 #ifndef GCC_GFORTRAN_H
23 #define GCC_GFORTRAN_H
24
25 /* It's probably insane to have this large of a header file, but it
26    seemed like everything had to be recompiled anyway when a change
27    was made to a header file, and there were ordering issues with
28    multiple header files.  Besides, Microsoft's winnt.h was 250k last
29    time I looked, so by comparison this is perfectly reasonable.  */
30
31 /* Declarations common to the front-end and library are put in
32    libgfortran/libgfortran_frontend.h  */
33 #include "libgfortran.h"
34
35
36 #include "system.h"
37 #include "intl.h"
38 #include "coretypes.h"
39 #include "input.h"
40 #include "splay-tree.h"
41 /* The following ifdefs are recommended by the autoconf documentation
42    for any code using alloca.  */
43
44 /* AIX requires this to be the first thing in the file.  */
45 #ifdef __GNUC__
46 #else /* not __GNUC__ */
47 #ifdef HAVE_ALLOCA_H
48 #include <alloca.h>
49 #else /* do not HAVE_ALLOCA_H */
50 #ifdef _AIX
51 #pragma alloca
52 #else
53 #ifndef alloca                  /* predefined by HP cc +Olibcalls */
54 char *alloca ();
55 #endif /* not predefined */
56 #endif /* not _AIX */
57 #endif /* do not HAVE_ALLOCA_H */
58 #endif /* not __GNUC__ */
59
60 /* Major control parameters.  */
61
62 #define GFC_MAX_SYMBOL_LEN 63   /* Must be at least 63 for F2003.  */
63 #define GFC_MAX_BINDING_LABEL_LEN 126 /* (2 * GFC_MAX_SYMBOL_LEN) */
64 #define GFC_MAX_LINE 132        /* Characters beyond this are not seen.  */
65 #define GFC_LETTERS 26          /* Number of letters in the alphabet.  */
66
67 #define MAX_SUBRECORD_LENGTH 2147483639   /* 2**31-9 */
68
69
70 #define free(x) Use_gfc_free_instead_of_free()
71 #define gfc_is_whitespace(c) ((c==' ') || (c=='\t'))
72
73 #ifndef NULL
74 #define NULL ((void *) 0)
75 #endif
76
77 /* Stringization.  */
78 #define stringize(x) expand_macro(x)
79 #define expand_macro(x) # x
80
81 /* For a the runtime library, a standard prefix is a requirement to
82    avoid cluttering the namespace with things nobody asked for.  It's
83    ugly to look at and a pain to type when you add the prefix by hand,
84    so we hide it behind a macro.  */
85 #define PREFIX(x) "_gfortran_" x
86 #define PREFIX_LEN 10
87
88 #define BLANK_COMMON_NAME "__BLNK__"
89
90 /* Macro to initialize an mstring structure.  */
91 #define minit(s, t) { s, NULL, t }
92
93 /* Structure for storing strings to be matched by gfc_match_string.  */
94 typedef struct
95 {
96   const char *string;
97   const char *mp;
98   int tag;
99 }
100 mstring;
101
102
103
104 /*************************** Enums *****************************/
105
106 /* Used when matching and resolving data I/O transfer statements.  */
107
108 typedef enum
109 { M_READ, M_WRITE, M_PRINT, M_INQUIRE }
110 io_kind;
111
112 /* The author remains confused to this day about the convention of
113    returning '0' for 'SUCCESS'... or was it the other way around?  The
114    following enum makes things much more readable.  We also start
115    values off at one instead of zero.  */
116
117 typedef enum
118 { SUCCESS = 1, FAILURE }
119 try;
120
121 /* This is returned by gfc_notification_std to know if, given the flags
122    that were given (-std=, -pedantic) we should issue an error, a warning
123    or nothing.  */
124
125 typedef enum
126 { SILENT, WARNING, ERROR }
127 notification;
128
129 /* Matchers return one of these three values.  The difference between
130    MATCH_NO and MATCH_ERROR is that MATCH_ERROR means that a match was
131    successful, but that something non-syntactic is wrong and an error
132    has already been issued.  */
133
134 typedef enum
135 { MATCH_NO = 1, MATCH_YES, MATCH_ERROR }
136 match;
137
138 typedef enum
139 { FORM_FREE, FORM_FIXED, FORM_UNKNOWN }
140 gfc_source_form;
141
142 /* Basic types.  BT_VOID is used by ISO C Binding so funcs like c_f_pointer
143    can take any arg with the pointer attribute as a param.  */
144 typedef enum
145 { BT_UNKNOWN = 1, BT_INTEGER, BT_REAL, BT_COMPLEX,
146   BT_LOGICAL, BT_CHARACTER, BT_DERIVED, BT_PROCEDURE, BT_HOLLERITH,
147   BT_VOID
148 }
149 bt;
150
151 /* Expression node types.  */
152 typedef enum
153 { EXPR_OP = 1, EXPR_FUNCTION, EXPR_CONSTANT, EXPR_VARIABLE,
154   EXPR_SUBSTRING, EXPR_STRUCTURE, EXPR_ARRAY, EXPR_NULL
155 }
156 expr_t;
157
158 /* Array types.  */
159 typedef enum
160 { AS_EXPLICIT = 1, AS_ASSUMED_SHAPE, AS_DEFERRED,
161   AS_ASSUMED_SIZE, AS_UNKNOWN
162 }
163 array_type;
164
165 typedef enum
166 { AR_FULL = 1, AR_ELEMENT, AR_SECTION, AR_UNKNOWN }
167 ar_type;
168
169 /* Statement label types.  */
170 typedef enum
171 { ST_LABEL_UNKNOWN = 1, ST_LABEL_TARGET,
172   ST_LABEL_BAD_TARGET, ST_LABEL_FORMAT
173 }
174 gfc_sl_type;
175
176 /* Intrinsic operators.  */
177 typedef enum
178 { GFC_INTRINSIC_BEGIN = 0,
179   INTRINSIC_NONE = -1, INTRINSIC_UPLUS = GFC_INTRINSIC_BEGIN,
180   INTRINSIC_UMINUS, INTRINSIC_PLUS, INTRINSIC_MINUS, INTRINSIC_TIMES,
181   INTRINSIC_DIVIDE, INTRINSIC_POWER, INTRINSIC_CONCAT,
182   INTRINSIC_AND, INTRINSIC_OR, INTRINSIC_EQV, INTRINSIC_NEQV,
183   /* ==, /=, >, >=, <, <=  */
184   INTRINSIC_EQ, INTRINSIC_NE, INTRINSIC_GT, INTRINSIC_GE,
185   INTRINSIC_LT, INTRINSIC_LE, 
186   /* .EQ., .NE., .GT., .GE., .LT., .LE. (OS = Old-Style)  */
187   INTRINSIC_EQ_OS, INTRINSIC_NE_OS, INTRINSIC_GT_OS, INTRINSIC_GE_OS,
188   INTRINSIC_LT_OS, INTRINSIC_LE_OS, 
189   INTRINSIC_NOT, INTRINSIC_USER, INTRINSIC_ASSIGN, 
190   INTRINSIC_PARENTHESES, GFC_INTRINSIC_END /* Sentinel */
191 }
192 gfc_intrinsic_op;
193
194
195 /* This macro is the number of intrinsic operators that exist.
196    Assumptions are made about the numbering of the interface_op enums.  */
197 #define GFC_INTRINSIC_OPS GFC_INTRINSIC_END
198
199 /* Arithmetic results.  */
200 typedef enum
201 { ARITH_OK = 1, ARITH_OVERFLOW, ARITH_UNDERFLOW, ARITH_NAN,
202   ARITH_DIV0, ARITH_INCOMMENSURATE, ARITH_ASYMMETRIC
203 }
204 arith;
205
206 /* Statements.  */
207 typedef enum
208 {
209   ST_ARITHMETIC_IF, ST_ALLOCATE, ST_ATTR_DECL, ST_BACKSPACE, ST_BLOCK_DATA,
210   ST_CALL, ST_CASE, ST_CLOSE, ST_COMMON, ST_CONTINUE, ST_CONTAINS, ST_CYCLE,
211   ST_DATA, ST_DATA_DECL, ST_DEALLOCATE, ST_DO, ST_ELSE, ST_ELSEIF,
212   ST_ELSEWHERE, ST_END_BLOCK_DATA, ST_ENDDO, ST_IMPLIED_ENDDO,
213   ST_END_FILE, ST_FLUSH, ST_END_FORALL, ST_END_FUNCTION, ST_ENDIF,
214   ST_END_INTERFACE, ST_END_MODULE, ST_END_PROGRAM, ST_END_SELECT,
215   ST_END_SUBROUTINE, ST_END_WHERE, ST_END_TYPE, ST_ENTRY, ST_EQUIVALENCE,
216   ST_EXIT, ST_FORALL, ST_FORALL_BLOCK, ST_FORMAT, ST_FUNCTION, ST_GOTO,
217   ST_IF_BLOCK, ST_IMPLICIT, ST_IMPLICIT_NONE, ST_IMPORT, ST_INQUIRE, ST_INTERFACE,
218   ST_PARAMETER, ST_MODULE, ST_MODULE_PROC, ST_NAMELIST, ST_NULLIFY, ST_OPEN,
219   ST_PAUSE, ST_PRIVATE, ST_PROGRAM, ST_PUBLIC, ST_READ, ST_RETURN, ST_REWIND,
220   ST_STOP, ST_SUBROUTINE, ST_TYPE, ST_USE, ST_WHERE_BLOCK, ST_WHERE, ST_WAIT, 
221   ST_WRITE, ST_ASSIGNMENT, ST_POINTER_ASSIGNMENT, ST_SELECT_CASE, ST_SEQUENCE,
222   ST_SIMPLE_IF, ST_STATEMENT_FUNCTION, ST_DERIVED_DECL, ST_LABEL_ASSIGNMENT,
223   ST_ENUM, ST_ENUMERATOR, ST_END_ENUM,
224   ST_OMP_ATOMIC, ST_OMP_BARRIER, ST_OMP_CRITICAL, ST_OMP_END_CRITICAL,
225   ST_OMP_END_DO, ST_OMP_END_MASTER, ST_OMP_END_ORDERED, ST_OMP_END_PARALLEL,
226   ST_OMP_END_PARALLEL_DO, ST_OMP_END_PARALLEL_SECTIONS,
227   ST_OMP_END_PARALLEL_WORKSHARE, ST_OMP_END_SECTIONS, ST_OMP_END_SINGLE,
228   ST_OMP_END_WORKSHARE, ST_OMP_DO, ST_OMP_FLUSH, ST_OMP_MASTER, ST_OMP_ORDERED,
229   ST_OMP_PARALLEL, ST_OMP_PARALLEL_DO, ST_OMP_PARALLEL_SECTIONS,
230   ST_OMP_PARALLEL_WORKSHARE, ST_OMP_SECTIONS, ST_OMP_SECTION, ST_OMP_SINGLE,
231   ST_OMP_THREADPRIVATE, ST_OMP_WORKSHARE, ST_PROCEDURE,
232   ST_GET_FCN_CHARACTERISTICS, ST_NONE
233 }
234 gfc_statement;
235
236
237 /* Types of interfaces that we can have.  Assignment interfaces are
238    considered to be intrinsic operators.  */
239 typedef enum
240 {
241   INTERFACE_NAMELESS = 1, INTERFACE_GENERIC,
242   INTERFACE_INTRINSIC_OP, INTERFACE_USER_OP, INTERFACE_ABSTRACT
243 }
244 interface_type;
245
246 /* Symbol flavors: these are all mutually exclusive.
247    10 elements = 4 bits.  */
248 typedef enum sym_flavor
249 {
250   FL_UNKNOWN = 0, FL_PROGRAM, FL_BLOCK_DATA, FL_MODULE, FL_VARIABLE,
251   FL_PARAMETER, FL_LABEL, FL_PROCEDURE, FL_DERIVED, FL_NAMELIST,
252   FL_VOID
253 }
254 sym_flavor;
255
256 /* Procedure types.  7 elements = 3 bits.  */
257 typedef enum procedure_type
258 { PROC_UNKNOWN, PROC_MODULE, PROC_INTERNAL, PROC_DUMMY,
259   PROC_INTRINSIC, PROC_ST_FUNCTION, PROC_EXTERNAL
260 }
261 procedure_type;
262
263 /* Intent types.  */
264 typedef enum sym_intent
265 { INTENT_UNKNOWN = 0, INTENT_IN, INTENT_OUT, INTENT_INOUT
266 }
267 sym_intent;
268
269 /* Access types.  */
270 typedef enum gfc_access
271 { ACCESS_UNKNOWN = 0, ACCESS_PUBLIC, ACCESS_PRIVATE
272 }
273 gfc_access;
274
275 /* Flags to keep track of where an interface came from.
276    4 elements = 2 bits.  */
277 typedef enum ifsrc
278 { IFSRC_UNKNOWN = 0, IFSRC_DECL, IFSRC_IFBODY, IFSRC_USAGE
279 }
280 ifsrc;
281
282 /* Whether a SAVE attribute was set explicitly or implicitly.  */
283 typedef enum save_state
284 { SAVE_NONE = 0, SAVE_EXPLICIT, SAVE_IMPLICIT
285 }
286 save_state;
287
288 /* Strings for all symbol attributes.  We use these for dumping the
289    parse tree, in error messages, and also when reading and writing
290    modules.  In symbol.c.  */
291 extern const mstring flavors[];
292 extern const mstring procedures[];
293 extern const mstring intents[];
294 extern const mstring access_types[];
295 extern const mstring ifsrc_types[];
296 extern const mstring save_status[];
297
298 /* Enumeration of all the generic intrinsic functions.  Used by the
299    backend for identification of a function.  */
300
301 enum gfc_isym_id
302 {
303   /* GFC_ISYM_NONE is used for intrinsics which will never be seen by
304      the backend (eg. KIND).  */
305   GFC_ISYM_NONE = 0,
306   GFC_ISYM_ABORT,
307   GFC_ISYM_ABS,
308   GFC_ISYM_ACCESS,
309   GFC_ISYM_ACHAR,
310   GFC_ISYM_ACOS,
311   GFC_ISYM_ACOSH,
312   GFC_ISYM_ADJUSTL,
313   GFC_ISYM_ADJUSTR,
314   GFC_ISYM_AIMAG,
315   GFC_ISYM_AINT,
316   GFC_ISYM_ALARM,
317   GFC_ISYM_ALL,
318   GFC_ISYM_ALLOCATED,
319   GFC_ISYM_AND,
320   GFC_ISYM_ANINT,
321   GFC_ISYM_ANY,
322   GFC_ISYM_ASIN,
323   GFC_ISYM_ASINH,
324   GFC_ISYM_ASSOCIATED,
325   GFC_ISYM_ATAN,
326   GFC_ISYM_ATAN2,
327   GFC_ISYM_ATANH,
328   GFC_ISYM_BIT_SIZE,
329   GFC_ISYM_BTEST,
330   GFC_ISYM_CEILING,
331   GFC_ISYM_CHAR,
332   GFC_ISYM_CHDIR,
333   GFC_ISYM_CHMOD,
334   GFC_ISYM_CMPLX,
335   GFC_ISYM_COMMAND_ARGUMENT_COUNT,
336   GFC_ISYM_COMPLEX,
337   GFC_ISYM_CONJG,
338   GFC_ISYM_CONVERSION,
339   GFC_ISYM_COS,
340   GFC_ISYM_COSH,
341   GFC_ISYM_COUNT,
342   GFC_ISYM_CPU_TIME,
343   GFC_ISYM_CSHIFT,
344   GFC_ISYM_CTIME,
345   GFC_ISYM_DATE_AND_TIME,
346   GFC_ISYM_DBLE,
347   GFC_ISYM_DIGITS,
348   GFC_ISYM_DIM,
349   GFC_ISYM_DOT_PRODUCT,
350   GFC_ISYM_DPROD,
351   GFC_ISYM_DTIME,
352   GFC_ISYM_EOSHIFT,
353   GFC_ISYM_EPSILON,
354   GFC_ISYM_ERF,
355   GFC_ISYM_ERFC,
356   GFC_ISYM_ERFC_SCALED,
357   GFC_ISYM_ETIME,
358   GFC_ISYM_EXIT,
359   GFC_ISYM_EXP,
360   GFC_ISYM_EXPONENT,
361   GFC_ISYM_FDATE,
362   GFC_ISYM_FGET,
363   GFC_ISYM_FGETC,
364   GFC_ISYM_FLOOR,
365   GFC_ISYM_FLUSH,
366   GFC_ISYM_FNUM,
367   GFC_ISYM_FPUT,
368   GFC_ISYM_FPUTC,
369   GFC_ISYM_FRACTION,
370   GFC_ISYM_FREE,
371   GFC_ISYM_FSEEK,
372   GFC_ISYM_FSTAT,
373   GFC_ISYM_FTELL,
374   GFC_ISYM_GAMMA,
375   GFC_ISYM_GERROR,
376   GFC_ISYM_GETARG,
377   GFC_ISYM_GET_COMMAND,
378   GFC_ISYM_GET_COMMAND_ARGUMENT,
379   GFC_ISYM_GETCWD,
380   GFC_ISYM_GETENV,
381   GFC_ISYM_GET_ENVIRONMENT_VARIABLE,
382   GFC_ISYM_GETGID,
383   GFC_ISYM_GETLOG,
384   GFC_ISYM_GETPID,
385   GFC_ISYM_GETUID,
386   GFC_ISYM_GMTIME,
387   GFC_ISYM_HOSTNM,
388   GFC_ISYM_HUGE,
389   GFC_ISYM_HYPOT,
390   GFC_ISYM_IACHAR,
391   GFC_ISYM_IAND,
392   GFC_ISYM_IARGC,
393   GFC_ISYM_IBCLR,
394   GFC_ISYM_IBITS,
395   GFC_ISYM_IBSET,
396   GFC_ISYM_ICHAR,
397   GFC_ISYM_IDATE,
398   GFC_ISYM_IEOR,
399   GFC_ISYM_IERRNO,
400   GFC_ISYM_INDEX,
401   GFC_ISYM_INT,
402   GFC_ISYM_INT2,
403   GFC_ISYM_INT8,
404   GFC_ISYM_IOR,
405   GFC_ISYM_IRAND,
406   GFC_ISYM_ISATTY,
407   GFC_ISYM_IS_IOSTAT_END,
408   GFC_ISYM_IS_IOSTAT_EOR,
409   GFC_ISYM_ISNAN,
410   GFC_ISYM_ISHFT,
411   GFC_ISYM_ISHFTC,
412   GFC_ISYM_ITIME,
413   GFC_ISYM_J0,
414   GFC_ISYM_J1,
415   GFC_ISYM_JN,
416   GFC_ISYM_KILL,
417   GFC_ISYM_KIND,
418   GFC_ISYM_LBOUND,
419   GFC_ISYM_LEN,
420   GFC_ISYM_LEN_TRIM,
421   GFC_ISYM_LGAMMA,
422   GFC_ISYM_LGE,
423   GFC_ISYM_LGT,
424   GFC_ISYM_LINK,
425   GFC_ISYM_LLE,
426   GFC_ISYM_LLT,
427   GFC_ISYM_LOC,
428   GFC_ISYM_LOG,
429   GFC_ISYM_LOG10,
430   GFC_ISYM_LOGICAL,
431   GFC_ISYM_LONG,
432   GFC_ISYM_LSHIFT,
433   GFC_ISYM_LSTAT,
434   GFC_ISYM_LTIME,
435   GFC_ISYM_MALLOC,
436   GFC_ISYM_MATMUL,
437   GFC_ISYM_MAX,
438   GFC_ISYM_MAXEXPONENT,
439   GFC_ISYM_MAXLOC,
440   GFC_ISYM_MAXVAL,
441   GFC_ISYM_MCLOCK,
442   GFC_ISYM_MCLOCK8,
443   GFC_ISYM_MERGE,
444   GFC_ISYM_MIN,
445   GFC_ISYM_MINEXPONENT,
446   GFC_ISYM_MINLOC,
447   GFC_ISYM_MINVAL,
448   GFC_ISYM_MOD,
449   GFC_ISYM_MODULO,
450   GFC_ISYM_MOVE_ALLOC,
451   GFC_ISYM_MVBITS,
452   GFC_ISYM_NEAREST,
453   GFC_ISYM_NEW_LINE,
454   GFC_ISYM_NINT,
455   GFC_ISYM_NOT,
456   GFC_ISYM_NULL,
457   GFC_ISYM_OR,
458   GFC_ISYM_PACK,
459   GFC_ISYM_PERROR,
460   GFC_ISYM_PRECISION,
461   GFC_ISYM_PRESENT,
462   GFC_ISYM_PRODUCT,
463   GFC_ISYM_RADIX,
464   GFC_ISYM_RAND,
465   GFC_ISYM_RANDOM_NUMBER,
466   GFC_ISYM_RANDOM_SEED,
467   GFC_ISYM_RANGE,
468   GFC_ISYM_REAL,
469   GFC_ISYM_RENAME,
470   GFC_ISYM_REPEAT,
471   GFC_ISYM_RESHAPE,
472   GFC_ISYM_RRSPACING,
473   GFC_ISYM_RSHIFT,
474   GFC_ISYM_SC_KIND,
475   GFC_ISYM_SCALE,
476   GFC_ISYM_SCAN,
477   GFC_ISYM_SECNDS,
478   GFC_ISYM_SECOND,
479   GFC_ISYM_SET_EXPONENT,
480   GFC_ISYM_SHAPE,
481   GFC_ISYM_SIGN,
482   GFC_ISYM_SIGNAL,
483   GFC_ISYM_SI_KIND,
484   GFC_ISYM_SIN,
485   GFC_ISYM_SINH,
486   GFC_ISYM_SIZE,
487   GFC_ISYM_SLEEP,
488   GFC_ISYM_SIZEOF,
489   GFC_ISYM_SPACING,
490   GFC_ISYM_SPREAD,
491   GFC_ISYM_SQRT,
492   GFC_ISYM_SRAND,
493   GFC_ISYM_SR_KIND,
494   GFC_ISYM_STAT,
495   GFC_ISYM_SUM,
496   GFC_ISYM_SYMLINK,
497   GFC_ISYM_SYMLNK,
498   GFC_ISYM_SYSTEM,
499   GFC_ISYM_SYSTEM_CLOCK,
500   GFC_ISYM_TAN,
501   GFC_ISYM_TANH,
502   GFC_ISYM_TIME,
503   GFC_ISYM_TIME8,
504   GFC_ISYM_TINY,
505   GFC_ISYM_TRANSFER,
506   GFC_ISYM_TRANSPOSE,
507   GFC_ISYM_TRIM,
508   GFC_ISYM_TTYNAM,
509   GFC_ISYM_UBOUND,
510   GFC_ISYM_UMASK,
511   GFC_ISYM_UNLINK,
512   GFC_ISYM_UNPACK,
513   GFC_ISYM_VERIFY,
514   GFC_ISYM_XOR,
515   GFC_ISYM_Y0,
516   GFC_ISYM_Y1,
517   GFC_ISYM_YN
518 };
519 typedef enum gfc_isym_id gfc_isym_id;
520
521
522 typedef enum
523 {
524   GFC_INIT_REAL_OFF = 0,
525   GFC_INIT_REAL_ZERO,
526   GFC_INIT_REAL_NAN,
527   GFC_INIT_REAL_INF,
528   GFC_INIT_REAL_NEG_INF
529 }
530 init_local_real;
531
532 typedef enum
533 {
534   GFC_INIT_LOGICAL_OFF = 0,
535   GFC_INIT_LOGICAL_FALSE,
536   GFC_INIT_LOGICAL_TRUE
537 }
538 init_local_logical;
539
540 typedef enum
541 {
542   GFC_INIT_CHARACTER_OFF = 0,
543   GFC_INIT_CHARACTER_ON
544 }
545 init_local_character;
546
547 typedef enum
548 {
549   GFC_INIT_INTEGER_OFF = 0,
550   GFC_INIT_INTEGER_ON
551 }
552 init_local_integer;
553
554 /************************* Structures *****************************/
555
556 /* Used for keeping things in balanced binary trees.  */
557 #define BBT_HEADER(self) int priority; struct self *left, *right
558
559 #define NAMED_INTCST(a,b,c) a,
560 typedef enum
561 {
562   ISOFORTRANENV_INVALID = -1,
563 #include "iso-fortran-env.def"
564   ISOFORTRANENV_LAST, ISOFORTRANENV_NUMBER = ISOFORTRANENV_LAST
565 }
566 iso_fortran_env_symbol;
567 #undef NAMED_INTCST
568
569 #define NAMED_INTCST(a,b,c) a,
570 #define NAMED_REALCST(a,b,c) a,
571 #define NAMED_CMPXCST(a,b,c) a,
572 #define NAMED_LOGCST(a,b,c) a,
573 #define NAMED_CHARKNDCST(a,b,c) a,
574 #define NAMED_CHARCST(a,b,c) a,
575 #define DERIVED_TYPE(a,b,c) a,
576 #define PROCEDURE(a,b) a,
577 typedef enum
578 {
579   ISOCBINDING_INVALID = -1, 
580 #include "iso-c-binding.def"
581   ISOCBINDING_LAST,
582   ISOCBINDING_NUMBER = ISOCBINDING_LAST
583 }
584 iso_c_binding_symbol;
585 #undef NAMED_INTCST
586 #undef NAMED_REALCST
587 #undef NAMED_CMPXCST
588 #undef NAMED_LOGCST
589 #undef NAMED_CHARKNDCST
590 #undef NAMED_CHARCST
591 #undef DERIVED_TYPE
592 #undef PROCEDURE
593
594 typedef enum
595 {
596   INTMOD_NONE = 0, INTMOD_ISO_FORTRAN_ENV, INTMOD_ISO_C_BINDING
597 }
598 intmod_id;
599
600 typedef struct
601 {
602   char name[GFC_MAX_SYMBOL_LEN + 1];
603   int value;  /* Used for both integer and character values.  */
604   bt f90_type;
605 }
606 CInteropKind_t;
607
608 /* Array of structs, where the structs represent the C interop kinds.
609    The list will be implemented based on a hash of the kind name since
610    these could be accessed multiple times.
611    Declared in trans-types.c as a global, since it's in that file
612    that the list is initialized.  */
613 extern CInteropKind_t c_interop_kinds_table[];
614
615 /* Symbol attribute structure.  */
616 typedef struct
617 {
618   /* Variable attributes.  */
619   unsigned allocatable:1, dimension:1, external:1, intrinsic:1,
620     optional:1, pointer:1, target:1, value:1, volatile_:1,
621     dummy:1, result:1, assign:1, threadprivate:1, not_always_present:1,
622     implied_index:1, subref_array_pointer:1;
623
624   ENUM_BITFIELD (save_state) save:2;
625
626   unsigned data:1,              /* Symbol is named in a DATA statement.  */
627     protected:1,                /* Symbol has been marked as protected.  */
628     use_assoc:1,                /* Symbol has been use-associated.  */
629     use_only:1,                 /* Symbol has been use-associated, with ONLY.  */
630     use_rename:1,               /* Symbol has been use-associated and renamed.  */
631     imported:1;                 /* Symbol has been associated by IMPORT.  */
632
633   unsigned in_namelist:1, in_common:1, in_equivalence:1;
634   unsigned function:1, subroutine:1, procedure:1;
635   unsigned generic:1, generic_copy:1;
636   unsigned implicit_type:1;     /* Type defined via implicit rules.  */
637   unsigned untyped:1;           /* No implicit type could be found.  */
638
639   unsigned is_bind_c:1;         /* say if is bound to C */
640
641   /* These flags are both in the typespec and attribute.  The attribute
642      list is what gets read from/written to a module file.  The typespec
643      is created from a decl being processed.  */
644   unsigned is_c_interop:1;      /* It's c interoperable.  */
645   unsigned is_iso_c:1;          /* Symbol is from iso_c_binding.  */
646
647   /* Function/subroutine attributes */
648   unsigned sequence:1, elemental:1, pure:1, recursive:1;
649   unsigned unmaskable:1, masked:1, contained:1, mod_proc:1, abstract:1;
650
651   /* This is set if the subroutine doesn't return.  Currently, this
652      is only possible for intrinsic subroutines.  */
653   unsigned noreturn:1;
654
655   /* Set if this procedure is an alternate entry point.  These procedures
656      don't have any code associated, and the backend will turn them into
657      thunks to the master function.  */
658   unsigned entry:1;
659
660   /* Set if this is the master function for a procedure with multiple
661      entry points.  */
662   unsigned entry_master:1;
663
664   /* Set if this is the master function for a function with multiple
665      entry points where characteristics of the entry points differ.  */
666   unsigned mixed_entry_master:1;
667
668   /* Set if a function must always be referenced by an explicit interface.  */
669   unsigned always_explicit:1;
670
671   /* Set if the symbol has been referenced in an expression.  No further
672      modification of type or type parameters is permitted.  */
673   unsigned referenced:1;
674
675   /* Set if the symbol has ambiguous interfaces.  */
676   unsigned ambiguous_interfaces:1;
677
678   /* Set if this is the symbol for the main program.  */
679   unsigned is_main_program:1;
680
681   /* Mutually exclusive multibit attributes.  */
682   ENUM_BITFIELD (gfc_access) access:2;
683   ENUM_BITFIELD (sym_intent) intent:2;
684   ENUM_BITFIELD (sym_flavor) flavor:4;
685   ENUM_BITFIELD (ifsrc) if_source:2;
686
687   ENUM_BITFIELD (procedure_type) proc:3;
688
689   /* Special attributes for Cray pointers, pointees.  */
690   unsigned cray_pointer:1, cray_pointee:1;
691
692   /* The symbol is a derived type with allocatable components, pointer 
693      components or private components, possibly nested.  zer_comp
694      is true if the derived type has no component at all.  */
695   unsigned alloc_comp:1, pointer_comp:1, private_comp:1, zero_comp:1;
696
697   /* The namespace where the VOLATILE attribute has been set.  */
698   struct gfc_namespace *volatile_ns;
699 }
700 symbol_attribute;
701
702
703 /* The following three structures are used to identify a location in
704    the sources.
705
706    gfc_file is used to maintain a tree of the source files and how
707    they include each other
708
709    gfc_linebuf holds a single line of source code and information
710    which file it resides in
711
712    locus point to the sourceline and the character in the source
713    line.
714 */
715
716 typedef struct gfc_file
717 {
718   struct gfc_file *next, *up;
719   int inclusion_line, line;
720   char *filename;
721 } gfc_file;
722
723 typedef struct gfc_linebuf
724 {
725   source_location location;
726   struct gfc_file *file;
727   struct gfc_linebuf *next;
728
729   int truncated;
730   bool dbg_emitted;
731
732   char line[1];
733 } gfc_linebuf;
734
735 #define gfc_linebuf_header_size (offsetof (gfc_linebuf, line))
736
737 #define gfc_linebuf_linenum(LBUF) (LOCATION_LINE ((LBUF)->location))
738
739 typedef struct
740 {
741   char *nextc;
742   gfc_linebuf *lb;
743 } locus;
744
745 /* In order for the "gfc" format checking to work correctly, you must
746    have declared a typedef locus first.  */
747 #if GCC_VERSION >= 4001
748 #define ATTRIBUTE_GCC_GFC(m, n) __attribute__ ((__format__ (__gcc_gfc__, m, n))) ATTRIBUTE_NONNULL(m)
749 #else
750 #define ATTRIBUTE_GCC_GFC(m, n) ATTRIBUTE_NONNULL(m)
751 #endif
752
753
754 extern int gfc_suppress_error;
755
756
757 /* Character length structures hold the expression that gives the
758    length of a character variable.  We avoid putting these into
759    gfc_typespec because doing so prevents us from doing structure
760    copies and forces us to deallocate any typespecs we create, as well
761    as structures that contain typespecs.  They also can have multiple
762    character typespecs pointing to them.
763
764    These structures form a singly linked list within the current
765    namespace and are deallocated with the namespace.  It is possible to
766    end up with gfc_charlen structures that have nothing pointing to them.  */
767
768 typedef struct gfc_charlen
769 {
770   struct gfc_expr *length;
771   struct gfc_charlen *next;
772   tree backend_decl;
773
774   int resolved;
775 }
776 gfc_charlen;
777
778 #define gfc_get_charlen() gfc_getmem(sizeof(gfc_charlen))
779
780 /* Type specification structure.  FIXME: derived and cl could be union???  */
781 typedef struct
782 {
783   bt type;
784   int kind;
785   struct gfc_symbol *derived;
786   gfc_charlen *cl;      /* For character types only.  */
787   struct gfc_symbol *interface; /* For PROCEDURE declarations.  */
788   int is_c_interop;
789   int is_iso_c;
790   bt f90_type; 
791 }
792 gfc_typespec;
793
794 /* Array specification.  */
795 typedef struct
796 {
797   int rank;     /* A rank of zero means that a variable is a scalar.  */
798   array_type type;
799   struct gfc_expr *lower[GFC_MAX_DIMENSIONS], *upper[GFC_MAX_DIMENSIONS];
800
801   /* These two fields are used with the Cray Pointer extension.  */
802   bool cray_pointee; /* True iff this spec belongs to a cray pointee.  */
803   bool cp_was_assumed; /* AS_ASSUMED_SIZE cp arrays are converted to
804                         AS_EXPLICIT, but we want to remember that we
805                         did this.  */
806
807 }
808 gfc_array_spec;
809
810 #define gfc_get_array_spec() gfc_getmem(sizeof(gfc_array_spec))
811
812
813 /* Components of derived types.  */
814 typedef struct gfc_component
815 {
816   const char *name;
817   gfc_typespec ts;
818
819   int pointer, allocatable, dimension;
820   gfc_access access;
821   gfc_array_spec *as;
822
823   tree backend_decl;
824   locus loc;
825   struct gfc_expr *initializer;
826   struct gfc_component *next;
827 }
828 gfc_component;
829
830 #define gfc_get_component() gfc_getmem(sizeof(gfc_component))
831
832 /* Formal argument lists are lists of symbols.  */
833 typedef struct gfc_formal_arglist
834 {
835   /* Symbol representing the argument at this position in the arglist.  */
836   struct gfc_symbol *sym;
837   /* Points to the next formal argument.  */
838   struct gfc_formal_arglist *next;
839 }
840 gfc_formal_arglist;
841
842 #define gfc_get_formal_arglist() gfc_getmem(sizeof(gfc_formal_arglist))
843
844
845 /* The gfc_actual_arglist structure is for actual arguments.  */
846 typedef struct gfc_actual_arglist
847 {
848   const char *name;
849   /* Alternate return label when the expr member is null.  */
850   struct gfc_st_label *label;
851
852   /* This is set to the type of an eventual omitted optional
853      argument. This is used to determine if a hidden string length
854      argument has to be added to a function call.  */
855   bt missing_arg_type;
856
857   struct gfc_expr *expr;
858   struct gfc_actual_arglist *next;
859 }
860 gfc_actual_arglist;
861
862 #define gfc_get_actual_arglist() gfc_getmem(sizeof(gfc_actual_arglist))
863
864
865 /* Because a symbol can belong to multiple namelists, they must be
866    linked externally to the symbol itself.  */
867 typedef struct gfc_namelist
868 {
869   struct gfc_symbol *sym;
870   struct gfc_namelist *next;
871 }
872 gfc_namelist;
873
874 #define gfc_get_namelist() gfc_getmem(sizeof(gfc_namelist))
875
876 enum
877 {
878   OMP_LIST_PRIVATE,
879   OMP_LIST_FIRSTPRIVATE,
880   OMP_LIST_LASTPRIVATE,
881   OMP_LIST_COPYPRIVATE,
882   OMP_LIST_SHARED,
883   OMP_LIST_COPYIN,
884   OMP_LIST_PLUS,
885   OMP_LIST_REDUCTION_FIRST = OMP_LIST_PLUS,
886   OMP_LIST_MULT,
887   OMP_LIST_SUB,
888   OMP_LIST_AND,
889   OMP_LIST_OR,
890   OMP_LIST_EQV,
891   OMP_LIST_NEQV,
892   OMP_LIST_MAX,
893   OMP_LIST_MIN,
894   OMP_LIST_IAND,
895   OMP_LIST_IOR,
896   OMP_LIST_IEOR,
897   OMP_LIST_REDUCTION_LAST = OMP_LIST_IEOR,
898   OMP_LIST_NUM
899 };
900
901 /* Because a symbol can belong to multiple namelists, they must be
902    linked externally to the symbol itself.  */
903 typedef struct gfc_omp_clauses
904 {
905   struct gfc_expr *if_expr;
906   struct gfc_expr *num_threads;
907   gfc_namelist *lists[OMP_LIST_NUM];
908   enum
909     {
910       OMP_SCHED_NONE,
911       OMP_SCHED_STATIC,
912       OMP_SCHED_DYNAMIC,
913       OMP_SCHED_GUIDED,
914       OMP_SCHED_RUNTIME
915     } sched_kind;
916   struct gfc_expr *chunk_size;
917   enum
918     {
919       OMP_DEFAULT_UNKNOWN,
920       OMP_DEFAULT_NONE,
921       OMP_DEFAULT_PRIVATE,
922       OMP_DEFAULT_SHARED
923     } default_sharing;
924   bool nowait, ordered;
925 }
926 gfc_omp_clauses;
927
928 #define gfc_get_omp_clauses() gfc_getmem(sizeof(gfc_omp_clauses))
929
930
931 /* The gfc_st_label structure is a doubly linked list attached to a
932    namespace that records the usage of statement labels within that
933    space.  */
934 /* TODO: Make format/statement specifics a union.  */
935 typedef struct gfc_st_label
936 {
937   BBT_HEADER(gfc_st_label);
938
939   int value;
940
941   gfc_sl_type defined, referenced;
942
943   struct gfc_expr *format;
944
945   tree backend_decl;
946
947   locus where;
948 }
949 gfc_st_label;
950
951
952 /* gfc_interface()-- Interfaces are lists of symbols strung together.  */
953 typedef struct gfc_interface
954 {
955   struct gfc_symbol *sym;
956   locus where;
957   struct gfc_interface *next;
958 }
959 gfc_interface;
960
961 #define gfc_get_interface() gfc_getmem(sizeof(gfc_interface))
962
963
964 /* User operator nodes.  These are like stripped down symbols.  */
965 typedef struct
966 {
967   const char *name;
968
969   gfc_interface *operator;
970   struct gfc_namespace *ns;
971   gfc_access access;
972 }
973 gfc_user_op;
974
975 /* Symbol nodes.  These are important things.  They are what the
976    standard refers to as "entities".  The possibly multiple names that
977    refer to the same entity are accomplished by a binary tree of
978    symtree structures that is balanced by the red-black method-- more
979    than one symtree node can point to any given symbol.  */
980
981 typedef struct gfc_symbol
982 {
983   const char *name;     /* Primary name, before renaming */
984   const char *module;   /* Module this symbol came from */
985   locus declared_at;
986
987   gfc_typespec ts;
988   symbol_attribute attr;
989
990   /* The formal member points to the formal argument list if the
991      symbol is a function or subroutine name.  If the symbol is a
992      generic name, the generic member points to the list of
993      interfaces.  */
994
995   gfc_interface *generic;
996   gfc_access component_access;
997
998   gfc_formal_arglist *formal;
999   struct gfc_namespace *formal_ns;
1000
1001   struct gfc_expr *value;       /* Parameter/Initializer value */
1002   gfc_array_spec *as;
1003   struct gfc_symbol *result;    /* function result symbol */
1004   gfc_component *components;    /* Derived type components */
1005
1006   /* Defined only for Cray pointees; points to their pointer.  */
1007   struct gfc_symbol *cp_pointer;
1008
1009   struct gfc_symbol *common_next;       /* Links for COMMON syms */
1010
1011   /* This is in fact a gfc_common_head but it is only used for pointer
1012      comparisons to check if symbols are in the same common block.  */
1013   struct gfc_common_head* common_head;
1014
1015   /* Make sure setup code for dummy arguments is generated in the correct
1016      order.  */
1017   int dummy_order;
1018
1019   int entry_id;
1020
1021   gfc_namelist *namelist, *namelist_tail;
1022
1023   /* Change management fields.  Symbols that might be modified by the
1024      current statement have the mark member nonzero and are kept in a
1025      singly linked list through the tlink field.  Of these symbols,
1026      symbols with old_symbol equal to NULL are symbols created within
1027      the current statement.  Otherwise, old_symbol points to a copy of
1028      the old symbol.  */
1029
1030   struct gfc_symbol *old_symbol, *tlink;
1031   unsigned mark:1, new:1;
1032   /* Nonzero if all equivalences associated with this symbol have been
1033      processed.  */
1034   unsigned equiv_built:1;
1035   /* Set if this variable is used as an index name in a FORALL.  */
1036   unsigned forall_index:1;
1037   int refs;
1038   struct gfc_namespace *ns;     /* namespace containing this symbol */
1039
1040   tree backend_decl;
1041    
1042   /* Identity of the intrinsic module the symbol comes from, or
1043      INTMOD_NONE if it's not imported from a intrinsic module.  */
1044   intmod_id from_intmod;
1045   /* Identity of the symbol from intrinsic modules, from enums maintained
1046      separately by each intrinsic module.  Used together with from_intmod,
1047      it uniquely identifies a symbol from an intrinsic module.  */
1048   int intmod_sym_id;
1049
1050   /* This may be repetitive, since the typespec now has a binding
1051      label field.  */
1052   char binding_label[GFC_MAX_BINDING_LABEL_LEN + 1];
1053   /* Store a reference to the common_block, if this symbol is in one.  */
1054   struct gfc_common_head *common_block;
1055 }
1056 gfc_symbol;
1057
1058
1059 /* This structure is used to keep track of symbols in common blocks.  */
1060 typedef struct gfc_common_head
1061 {
1062   locus where;
1063   char use_assoc, saved, threadprivate;
1064   char name[GFC_MAX_SYMBOL_LEN + 1];
1065   struct gfc_symbol *head;
1066   char binding_label[GFC_MAX_BINDING_LABEL_LEN + 1];
1067   int is_bind_c;
1068 }
1069 gfc_common_head;
1070
1071 #define gfc_get_common_head() gfc_getmem(sizeof(gfc_common_head))
1072
1073
1074 /* A list of all the alternate entry points for a procedure.  */
1075
1076 typedef struct gfc_entry_list
1077 {
1078   /* The symbol for this entry point.  */
1079   gfc_symbol *sym;
1080   /* The zero-based id of this entry point.  */
1081   int id;
1082   /* The LABEL_EXPR marking this entry point.  */
1083   tree label;
1084   /* The nest item in the list.  */
1085   struct gfc_entry_list *next;
1086 }
1087 gfc_entry_list;
1088
1089 #define gfc_get_entry_list() \
1090   (gfc_entry_list *) gfc_getmem(sizeof(gfc_entry_list))
1091
1092 /* Within a namespace, symbols are pointed to by symtree nodes that
1093    are linked together in a balanced binary tree.  There can be
1094    several symtrees pointing to the same symbol node via USE
1095    statements.  */
1096
1097 typedef struct gfc_symtree
1098 {
1099   BBT_HEADER (gfc_symtree);
1100   const char *name;
1101   int ambiguous;
1102   union
1103   {
1104     gfc_symbol *sym;            /* Symbol associated with this node */
1105     gfc_user_op *uop;
1106     gfc_common_head *common;
1107   }
1108   n;
1109
1110 }
1111 gfc_symtree;
1112
1113 /* A linked list of derived types in the namespace.  */
1114 typedef struct gfc_dt_list
1115 {
1116   struct gfc_symbol *derived;
1117   struct gfc_dt_list *next;
1118 }
1119 gfc_dt_list;
1120
1121 #define gfc_get_dt_list() gfc_getmem(sizeof(gfc_dt_list))
1122
1123   /* A list of all derived types.  */
1124   extern gfc_dt_list *gfc_derived_types;
1125
1126 /* A namespace describes the contents of procedure, module or
1127    interface block.  */
1128 /* ??? Anything else use these?  */
1129
1130 typedef struct gfc_namespace
1131 {
1132   /* Tree containing all the symbols in this namespace.  */
1133   gfc_symtree *sym_root;
1134   /* Tree containing all the user-defined operators in the namespace.  */
1135   gfc_symtree *uop_root;
1136   /* Tree containing all the common blocks.  */
1137   gfc_symtree *common_root;
1138
1139   /* If set_flag[letter] is set, an implicit type has been set for letter.  */
1140   int set_flag[GFC_LETTERS];
1141   /* Keeps track of the implicit types associated with the letters.  */
1142   gfc_typespec default_type[GFC_LETTERS];
1143
1144   /* If this is a namespace of a procedure, this points to the procedure.  */
1145   struct gfc_symbol *proc_name;
1146   /* If this is the namespace of a unit which contains executable
1147      code, this points to it.  */
1148   struct gfc_code *code;
1149
1150   /* Points to the equivalences set up in this namespace.  */
1151   struct gfc_equiv *equiv;
1152
1153   /* Points to the equivalence groups produced by trans_common.  */
1154   struct gfc_equiv_list *equiv_lists;
1155
1156   gfc_interface *operator[GFC_INTRINSIC_OPS];
1157
1158   /* Points to the parent namespace, i.e. the namespace of a module or
1159      procedure in which the procedure belonging to this namespace is
1160      contained. The parent namespace points to this namespace either
1161      directly via CONTAINED, or indirectly via the chain built by
1162      SIBLING.  */
1163   struct gfc_namespace *parent;
1164   /* CONTAINED points to the first contained namespace. Sibling
1165      namespaces are chained via SIBLING.  */
1166   struct gfc_namespace  *contained, *sibling;
1167
1168   gfc_common_head blank_common;
1169   gfc_access default_access, operator_access[GFC_INTRINSIC_OPS];
1170
1171   gfc_st_label *st_labels;
1172   /* This list holds information about all the data initializers in
1173      this namespace.  */
1174   struct gfc_data *data;
1175
1176   gfc_charlen *cl_list;
1177
1178   int save_all, seen_save, seen_implicit_none;
1179
1180   /* Normally we don't need to refcount namespaces.  However when we read
1181      a module containing a function with multiple entry points, this
1182      will appear as several functions with the same formal namespace.  */
1183   int refs;
1184
1185   /* A list of all alternate entry points to this procedure (or NULL).  */
1186   gfc_entry_list *entries;
1187
1188   /* Set to 1 if namespace is a BLOCK DATA program unit.  */
1189   int is_block_data;
1190
1191   /* Set to 1 if namespace is an interface body with "IMPORT" used.  */
1192   int has_import_set;
1193 }
1194 gfc_namespace;
1195
1196 extern gfc_namespace *gfc_current_ns;
1197
1198 /* Global symbols are symbols of global scope. Currently we only use
1199    this to detect collisions already when parsing.
1200    TODO: Extend to verify procedure calls.  */
1201
1202 typedef struct gfc_gsymbol
1203 {
1204   BBT_HEADER(gfc_gsymbol);
1205
1206   const char *name;
1207   const char *sym_name;
1208   const char *mod_name;
1209   const char *binding_label;
1210   enum { GSYM_UNKNOWN=1, GSYM_PROGRAM, GSYM_FUNCTION, GSYM_SUBROUTINE,
1211         GSYM_MODULE, GSYM_COMMON, GSYM_BLOCK_DATA } type;
1212
1213   int defined, used;
1214   locus where;
1215 }
1216 gfc_gsymbol;
1217
1218 extern gfc_gsymbol *gfc_gsym_root;
1219
1220 /* Information on interfaces being built.  */
1221 typedef struct
1222 {
1223   interface_type type;
1224   gfc_symbol *sym;
1225   gfc_namespace *ns;
1226   gfc_user_op *uop;
1227   gfc_intrinsic_op op;
1228 }
1229 gfc_interface_info;
1230
1231 extern gfc_interface_info current_interface;
1232
1233
1234 /* Array reference.  */
1235 typedef struct gfc_array_ref
1236 {
1237   ar_type type;
1238   int dimen;                    /* # of components in the reference */
1239   locus where;
1240   gfc_array_spec *as;
1241
1242   locus c_where[GFC_MAX_DIMENSIONS];    /* All expressions can be NULL */
1243   struct gfc_expr *start[GFC_MAX_DIMENSIONS], *end[GFC_MAX_DIMENSIONS],
1244     *stride[GFC_MAX_DIMENSIONS];
1245
1246   enum
1247   { DIMEN_ELEMENT = 1, DIMEN_RANGE, DIMEN_VECTOR, DIMEN_UNKNOWN }
1248   dimen_type[GFC_MAX_DIMENSIONS];
1249
1250   struct gfc_expr *offset;
1251 }
1252 gfc_array_ref;
1253
1254 #define gfc_get_array_ref() gfc_getmem(sizeof(gfc_array_ref))
1255
1256
1257 /* Component reference nodes.  A variable is stored as an expression
1258    node that points to the base symbol.  After that, a singly linked
1259    list of component reference nodes gives the variable's complete
1260    resolution.  The array_ref component may be present and comes
1261    before the component component.  */
1262
1263 typedef enum
1264   { REF_ARRAY, REF_COMPONENT, REF_SUBSTRING }
1265 ref_type;
1266
1267 typedef struct gfc_ref
1268 {
1269   ref_type type;
1270
1271   union
1272   {
1273     struct gfc_array_ref ar;
1274
1275     struct
1276     {
1277       gfc_component *component;
1278       gfc_symbol *sym;
1279     }
1280     c;
1281
1282     struct
1283     {
1284       struct gfc_expr *start, *end;     /* Substring */
1285       gfc_charlen *length;
1286     }
1287     ss;
1288
1289   }
1290   u;
1291
1292   struct gfc_ref *next;
1293 }
1294 gfc_ref;
1295
1296 #define gfc_get_ref() gfc_getmem(sizeof(gfc_ref))
1297
1298
1299 /* Structures representing intrinsic symbols and their arguments lists.  */
1300 typedef struct gfc_intrinsic_arg
1301 {
1302   char name[GFC_MAX_SYMBOL_LEN + 1];
1303
1304   gfc_typespec ts;
1305   int optional;
1306   gfc_actual_arglist *actual;
1307
1308   struct gfc_intrinsic_arg *next;
1309
1310 }
1311 gfc_intrinsic_arg;
1312
1313
1314 /* Specifies the various kinds of check functions used to verify the
1315    argument lists of intrinsic functions. fX with X an integer refer
1316    to check functions of intrinsics with X arguments. f1m is used for
1317    the MAX and MIN intrinsics which can have an arbitrary number of
1318    arguments, f3ml is used for the MINLOC and MAXLOC intrinsics as
1319    these have special semantics.  */
1320
1321 typedef union
1322 {
1323   try (*f0)(void);
1324   try (*f1)(struct gfc_expr *);
1325   try (*f1m)(gfc_actual_arglist *);
1326   try (*f2)(struct gfc_expr *, struct gfc_expr *);
1327   try (*f3)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *);
1328   try (*f3ml)(gfc_actual_arglist *);
1329   try (*f3red)(gfc_actual_arglist *);
1330   try (*f4)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1331             struct gfc_expr *);
1332   try (*f5)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1333             struct gfc_expr *, struct gfc_expr *);
1334 }
1335 gfc_check_f;
1336
1337 /* Like gfc_check_f, these specify the type of the simplification
1338    function associated with an intrinsic. The fX are just like in
1339    gfc_check_f. cc is used for type conversion functions.  */
1340
1341 typedef union
1342 {
1343   struct gfc_expr *(*f0)(void);
1344   struct gfc_expr *(*f1)(struct gfc_expr *);
1345   struct gfc_expr *(*f2)(struct gfc_expr *, struct gfc_expr *);
1346   struct gfc_expr *(*f3)(struct gfc_expr *, struct gfc_expr *,
1347                          struct gfc_expr *);
1348   struct gfc_expr *(*f4)(struct gfc_expr *, struct gfc_expr *,
1349                          struct gfc_expr *, struct gfc_expr *);
1350   struct gfc_expr *(*f5)(struct gfc_expr *, struct gfc_expr *,
1351                          struct gfc_expr *, struct gfc_expr *,
1352                          struct gfc_expr *);
1353   struct gfc_expr *(*cc)(struct gfc_expr *, bt, int);
1354 }
1355 gfc_simplify_f;
1356
1357 /* Again like gfc_check_f, these specify the type of the resolution
1358    function associated with an intrinsic. The fX are just like in
1359    gfc_check_f. f1m is used for MIN and MAX, s1 is used for abort().  */
1360
1361 typedef union
1362 {
1363   void (*f0)(struct gfc_expr *);
1364   void (*f1)(struct gfc_expr *, struct gfc_expr *);
1365   void (*f1m)(struct gfc_expr *, struct gfc_actual_arglist *);
1366   void (*f2)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *);
1367   void (*f3)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1368              struct gfc_expr *);
1369   void (*f4)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1370              struct gfc_expr *, struct gfc_expr *);
1371   void (*f5)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1372              struct gfc_expr *, struct gfc_expr *, struct gfc_expr *);
1373   void (*s1)(struct gfc_code *);
1374 }
1375 gfc_resolve_f;
1376
1377
1378 typedef struct gfc_intrinsic_sym
1379 {
1380   const char *name, *lib_name;
1381   gfc_intrinsic_arg *formal;
1382   gfc_typespec ts;
1383   unsigned elemental:1, inquiry:1, transformational:1, pure:1, 
1384     generic:1, specific:1, actual_ok:1, noreturn:1, conversion:1;
1385
1386   int standard;
1387
1388   gfc_simplify_f simplify;
1389   gfc_check_f check;
1390   gfc_resolve_f resolve;
1391   struct gfc_intrinsic_sym *specific_head, *next;
1392   gfc_isym_id id;
1393
1394 }
1395 gfc_intrinsic_sym;
1396
1397
1398 /* Expression nodes.  The expression node types deserve explanations,
1399    since the last couple can be easily misconstrued:
1400
1401    EXPR_OP         Operator node pointing to one or two other nodes
1402    EXPR_FUNCTION   Function call, symbol points to function's name
1403    EXPR_CONSTANT   A scalar constant: Logical, String, Real, Int or Complex
1404    EXPR_VARIABLE   An Lvalue with a root symbol and possible reference list
1405                    which expresses structure, array and substring refs.
1406    EXPR_NULL       The NULL pointer value (which also has a basic type).
1407    EXPR_SUBSTRING  A substring of a constant string
1408    EXPR_STRUCTURE  A structure constructor
1409    EXPR_ARRAY      An array constructor.  */
1410
1411 #include <gmp.h>
1412 #include <mpfr.h>
1413 #define GFC_RND_MODE GMP_RNDN
1414
1415 typedef struct gfc_expr
1416 {
1417   expr_t expr_type;
1418
1419   gfc_typespec ts;      /* These two refer to the overall expression */
1420
1421   int rank;
1422   mpz_t *shape;         /* Can be NULL if shape is unknown at compile time */
1423
1424   /* Nonnull for functions and structure constructors */
1425   gfc_symtree *symtree;
1426
1427   gfc_ref *ref;
1428
1429   locus where;
1430
1431   /* True if the expression is a call to a function that returns an array,
1432      and if we have decided not to allocate temporary data for that array.  */
1433   unsigned int inline_noncopying_intrinsic : 1, is_boz : 1;
1434
1435   /* Used to quickly find a given constructor by its offset.  */
1436   splay_tree con_by_offset;
1437
1438   /* If an expression comes from a Hollerith constant or compile-time
1439      evaluation of a transfer statement, it may have a prescribed target-
1440      memory representation, and these cannot always be backformed from
1441      the value.  */
1442   struct
1443   {
1444     int length;
1445     char *string;
1446   }
1447   representation;
1448
1449   union
1450   {
1451     int logical;
1452
1453     io_kind iokind;
1454
1455     mpz_t integer;
1456
1457     mpfr_t real;
1458
1459     struct
1460     {
1461       mpfr_t r, i;
1462     }
1463     complex;
1464
1465     struct
1466     {
1467       gfc_intrinsic_op operator;
1468       gfc_user_op *uop;
1469       struct gfc_expr *op1, *op2;
1470     }
1471     op;
1472
1473     struct
1474     {
1475       gfc_actual_arglist *actual;
1476       const char *name; /* Points to the ultimate name of the function */
1477       gfc_intrinsic_sym *isym;
1478       gfc_symbol *esym;
1479     }
1480     function;
1481
1482     struct
1483     {
1484       int length;
1485       char *string;
1486     }
1487     character;
1488
1489     struct gfc_constructor *constructor;
1490   }
1491   value;
1492
1493 }
1494 gfc_expr;
1495
1496
1497 #define gfc_get_shape(rank) ((mpz_t *) gfc_getmem((rank)*sizeof(mpz_t)))
1498
1499 /* Structures for information associated with different kinds of
1500    numbers.  The first set of integer parameters define all there is
1501    to know about a particular kind.  The rest of the elements are
1502    computed from the first elements.  */
1503
1504 typedef struct
1505 {
1506   /* Values really representable by the target.  */
1507   mpz_t huge, pedantic_min_int, min_int;
1508
1509   int kind, radix, digits, bit_size, range;
1510
1511   /* True if the C type of the given name maps to this precision.
1512      Note that more than one bit can be set.  */
1513   unsigned int c_char : 1;
1514   unsigned int c_short : 1;
1515   unsigned int c_int : 1;
1516   unsigned int c_long : 1;
1517   unsigned int c_long_long : 1;
1518 }
1519 gfc_integer_info;
1520
1521 extern gfc_integer_info gfc_integer_kinds[];
1522
1523
1524 typedef struct
1525 {
1526   int kind, bit_size;
1527
1528   /* True if the C++ type bool, C99 type _Bool, maps to this precision.  */
1529   unsigned int c_bool : 1;
1530 }
1531 gfc_logical_info;
1532
1533 extern gfc_logical_info gfc_logical_kinds[];
1534
1535
1536 typedef struct
1537 {
1538   mpfr_t epsilon, huge, tiny, subnormal;
1539   int kind, radix, digits, min_exponent, max_exponent;
1540   int range, precision;
1541
1542   /* The precision of the type as reported by GET_MODE_PRECISION.  */
1543   int mode_precision;
1544
1545   /* True if the C type of the given name maps to this precision.
1546      Note that more than one bit can be set.  */
1547   unsigned int c_float : 1;
1548   unsigned int c_double : 1;
1549   unsigned int c_long_double : 1;
1550 }
1551 gfc_real_info;
1552
1553 extern gfc_real_info gfc_real_kinds[];
1554
1555
1556 /* Equivalence structures.  Equivalent lvalues are linked along the
1557    *eq pointer, equivalence sets are strung along the *next node.  */
1558 typedef struct gfc_equiv
1559 {
1560   struct gfc_equiv *next, *eq;
1561   gfc_expr *expr;
1562   const char *module;
1563   int used;
1564 }
1565 gfc_equiv;
1566
1567 #define gfc_get_equiv() gfc_getmem(sizeof(gfc_equiv))
1568
1569 /* Holds a single equivalence member after processing.  */
1570 typedef struct gfc_equiv_info
1571 {
1572   gfc_symbol *sym;
1573   HOST_WIDE_INT offset;
1574   HOST_WIDE_INT length;
1575   struct gfc_equiv_info *next;
1576 } gfc_equiv_info;
1577
1578 /* Holds equivalence groups, after they have been processed.  */
1579 typedef struct gfc_equiv_list
1580 {
1581   gfc_equiv_info *equiv;
1582   struct gfc_equiv_list *next;
1583 } gfc_equiv_list;
1584
1585 /* gfc_case stores the selector list of a case statement.  The *low
1586    and *high pointers can point to the same expression in the case of
1587    a single value.  If *high is NULL, the selection is from *low
1588    upwards, if *low is NULL the selection is *high downwards.
1589
1590    This structure has separate fields to allow single and double linked
1591    lists of CASEs at the same time.  The singe linked list along the NEXT
1592    field is a list of cases for a single CASE label.  The double linked
1593    list along the LEFT/RIGHT fields is used to detect overlap and to
1594    build a table of the cases for SELECT constructs with a CHARACTER
1595    case expression.  */
1596
1597 typedef struct gfc_case
1598 {
1599   /* Where we saw this case.  */
1600   locus where;
1601   int n;
1602
1603   /* Case range values.  If (low == high), it's a single value.  If one of
1604      the labels is NULL, it's an unbounded case.  If both are NULL, this
1605      represents the default case.  */
1606   gfc_expr *low, *high;
1607
1608   /* Next case label in the list of cases for a single CASE label.  */
1609   struct gfc_case *next;
1610
1611   /* Used for detecting overlap, and for code generation.  */
1612   struct gfc_case *left, *right;
1613
1614   /* True if this case label can never be matched.  */
1615   int unreachable;
1616 }
1617 gfc_case;
1618
1619 #define gfc_get_case() gfc_getmem(sizeof(gfc_case))
1620
1621
1622 typedef struct
1623 {
1624   gfc_expr *var, *start, *end, *step;
1625 }
1626 gfc_iterator;
1627
1628 #define gfc_get_iterator() gfc_getmem(sizeof(gfc_iterator))
1629
1630
1631 /* Allocation structure for ALLOCATE, DEALLOCATE and NULLIFY statements.  */
1632
1633 typedef struct gfc_alloc
1634 {
1635   gfc_expr *expr;
1636   struct gfc_alloc *next;
1637 }
1638 gfc_alloc;
1639
1640 #define gfc_get_alloc() gfc_getmem(sizeof(gfc_alloc))
1641
1642
1643 typedef struct
1644 {
1645   gfc_expr *unit, *file, *status, *access, *form, *recl,
1646     *blank, *position, *action, *delim, *pad, *iostat, *iomsg, *convert,
1647     *decimal, *encoding, *round, *sign, *asynchronous, *id;
1648   gfc_st_label *err;
1649 }
1650 gfc_open;
1651
1652
1653 typedef struct
1654 {
1655   gfc_expr *unit, *status, *iostat, *iomsg;
1656   gfc_st_label *err;
1657 }
1658 gfc_close;
1659
1660
1661 typedef struct
1662 {
1663   gfc_expr *unit, *iostat, *iomsg;
1664   gfc_st_label *err;
1665 }
1666 gfc_filepos;
1667
1668
1669 typedef struct
1670 {
1671   gfc_expr *unit, *file, *iostat, *exist, *opened, *number, *named,
1672     *name, *access, *sequential, *direct, *form, *formatted,
1673     *unformatted, *recl, *nextrec, *blank, *position, *action, *read,
1674     *write, *readwrite, *delim, *pad, *iolength, *iomsg, *convert, *strm_pos,
1675     *asynchronous, *decimal, *encoding, *pending, *round, *sign, *size, *id;
1676
1677   gfc_st_label *err;
1678
1679 }
1680 gfc_inquire;
1681
1682
1683 typedef struct
1684 {
1685   gfc_expr *unit, *iostat, *iomsg, *id;
1686   gfc_st_label *err, *end, *eor;
1687 }
1688 gfc_wait;
1689
1690
1691 typedef struct
1692 {
1693   gfc_expr *io_unit, *format_expr, *rec, *advance, *iostat, *size, *iomsg,
1694            *id, *pos, *asynchronous, *blank, *decimal, *delim, *pad, *round,
1695            *sign, *extra_comma;
1696
1697   gfc_symbol *namelist;
1698   /* A format_label of `format_asterisk' indicates the "*" format */
1699   gfc_st_label *format_label;
1700   gfc_st_label *err, *end, *eor;
1701
1702   locus eor_where, end_where, err_where;
1703 }
1704 gfc_dt;
1705
1706
1707 typedef struct gfc_forall_iterator
1708 {
1709   gfc_expr *var, *start, *end, *stride;
1710   struct gfc_forall_iterator *next;
1711 }
1712 gfc_forall_iterator;
1713
1714
1715 /* Executable statements that fill gfc_code structures.  */
1716 typedef enum
1717 {
1718   EXEC_NOP = 1, EXEC_ASSIGN, EXEC_LABEL_ASSIGN, EXEC_POINTER_ASSIGN,
1719   EXEC_GOTO, EXEC_CALL, EXEC_ASSIGN_CALL, EXEC_RETURN, EXEC_ENTRY,
1720   EXEC_PAUSE, EXEC_STOP, EXEC_CONTINUE, EXEC_INIT_ASSIGN,
1721   EXEC_IF, EXEC_ARITHMETIC_IF, EXEC_DO, EXEC_DO_WHILE, EXEC_SELECT,
1722   EXEC_FORALL, EXEC_WHERE, EXEC_CYCLE, EXEC_EXIT,
1723   EXEC_ALLOCATE, EXEC_DEALLOCATE,
1724   EXEC_OPEN, EXEC_CLOSE, EXEC_WAIT,
1725   EXEC_READ, EXEC_WRITE, EXEC_IOLENGTH, EXEC_TRANSFER, EXEC_DT_END,
1726   EXEC_BACKSPACE, EXEC_ENDFILE, EXEC_INQUIRE, EXEC_REWIND, EXEC_FLUSH,
1727   EXEC_OMP_CRITICAL, EXEC_OMP_DO, EXEC_OMP_FLUSH, EXEC_OMP_MASTER,
1728   EXEC_OMP_ORDERED, EXEC_OMP_PARALLEL, EXEC_OMP_PARALLEL_DO,
1729   EXEC_OMP_PARALLEL_SECTIONS, EXEC_OMP_PARALLEL_WORKSHARE,
1730   EXEC_OMP_SECTIONS, EXEC_OMP_SINGLE, EXEC_OMP_WORKSHARE,
1731   EXEC_OMP_ATOMIC, EXEC_OMP_BARRIER, EXEC_OMP_END_NOWAIT,
1732   EXEC_OMP_END_SINGLE
1733 }
1734 gfc_exec_op;
1735
1736 typedef struct gfc_code
1737 {
1738   gfc_exec_op op;
1739
1740   struct gfc_code *block, *next;
1741   locus loc;
1742
1743   gfc_st_label *here, *label, *label2, *label3;
1744   gfc_symtree *symtree;
1745   gfc_expr *expr, *expr2;
1746   /* A name isn't sufficient to identify a subroutine, we need the actual
1747      symbol for the interface definition.
1748   const char *sub_name;  */
1749   gfc_symbol *resolved_sym;
1750
1751   union
1752   {
1753     gfc_actual_arglist *actual;
1754     gfc_case *case_list;
1755     gfc_iterator *iterator;
1756     gfc_alloc *alloc_list;
1757     gfc_open *open;
1758     gfc_close *close;
1759     gfc_filepos *filepos;
1760     gfc_inquire *inquire;
1761     gfc_wait *wait;
1762     gfc_dt *dt;
1763     gfc_forall_iterator *forall_iterator;
1764     struct gfc_code *whichloop;
1765     int stop_code;
1766     gfc_entry_list *entry;
1767     gfc_omp_clauses *omp_clauses;
1768     const char *omp_name;
1769     gfc_namelist *omp_namelist;
1770     bool omp_bool;
1771   }
1772   ext;          /* Points to additional structures required by statement */
1773
1774   /* Backend_decl is used for cycle and break labels in do loops, and
1775      probably for other constructs as well, once we translate them.  */
1776   tree backend_decl;
1777 }
1778 gfc_code;
1779
1780
1781 /* Storage for DATA statements.  */
1782 typedef struct gfc_data_variable
1783 {
1784   gfc_expr *expr;
1785   gfc_iterator iter;
1786   struct gfc_data_variable *list, *next;
1787 }
1788 gfc_data_variable;
1789
1790
1791 typedef struct gfc_data_value
1792 {
1793   mpz_t repeat;
1794   gfc_expr *expr;
1795   struct gfc_data_value *next;
1796 }
1797 gfc_data_value;
1798
1799
1800 typedef struct gfc_data
1801 {
1802   gfc_data_variable *var;
1803   gfc_data_value *value;
1804   locus where;
1805
1806   struct gfc_data *next;
1807 }
1808 gfc_data;
1809
1810
1811 /* Structure for holding compile options */
1812 typedef struct
1813 {
1814   char *module_dir;
1815   gfc_source_form source_form;
1816   /* Maximum line lengths in fixed- and free-form source, respectively.
1817      When fixed_line_length or free_line_length are 0, the whole line is used,
1818      regardless of length.
1819
1820      If the user requests a fixed_line_length <7 then gfc_init_options()
1821      emits a fatal error.  */
1822   int fixed_line_length;
1823   int free_line_length;
1824   /* Maximum number of continuation lines in fixed- and free-form source,
1825      respectively.  */
1826   int max_continue_fixed;
1827   int max_continue_free;
1828   int max_identifier_length;
1829   int dump_parse_tree;
1830
1831   int warn_aliasing;
1832   int warn_ampersand;
1833   int warn_conversion;
1834   int warn_implicit_interface;
1835   int warn_line_truncation;
1836   int warn_surprising;
1837   int warn_tabs;
1838   int warn_underflow;
1839   int warn_character_truncation;
1840   int max_errors;
1841
1842   int flag_all_intrinsics;
1843   int flag_default_double;
1844   int flag_default_integer;
1845   int flag_default_real;
1846   int flag_dollar_ok;
1847   int flag_underscoring;
1848   int flag_second_underscore;
1849   int flag_implicit_none;
1850   int flag_max_stack_var_size;
1851   int flag_range_check;
1852   int flag_pack_derived;
1853   int flag_repack_arrays;
1854   int flag_preprocessed;
1855   int flag_f2c;
1856   int flag_automatic;
1857   int flag_backslash;
1858   int flag_backtrace;
1859   int flag_allow_leading_underscore;
1860   int flag_dump_core;
1861   int flag_external_blas;
1862   int blas_matmul_limit;
1863   int flag_cray_pointer;
1864   int flag_d_lines;
1865   int flag_openmp;
1866   int flag_sign_zero;
1867   int flag_module_private;
1868   int flag_recursive;
1869   int flag_init_local_zero;
1870   int flag_init_integer;
1871   int flag_init_integer_value;
1872   int flag_init_real;
1873   int flag_init_logical;
1874   int flag_init_character;
1875   char flag_init_character_value;
1876
1877   int fpe;
1878
1879   int warn_std;
1880   int allow_std;
1881   int warn_nonstd_intrinsics;
1882   int fshort_enums;
1883   int convert;
1884   int record_marker;
1885   int max_subrecord_length;
1886 }
1887 gfc_option_t;
1888
1889 extern gfc_option_t gfc_option;
1890
1891 /* Constructor nodes for array and structure constructors.  */
1892 typedef struct gfc_constructor
1893 {
1894   gfc_expr *expr;
1895   gfc_iterator *iterator;
1896   locus where;
1897   struct gfc_constructor *next;
1898   struct
1899   {
1900     mpz_t offset; /* Record the offset of array element which appears in
1901                      data statement like "data a(5)/4/".  */
1902     gfc_component *component; /* Record the component being initialized.  */
1903   }
1904   n;
1905   mpz_t repeat; /* Record the repeat number of initial values in data
1906                  statement like "data a/5*10/".  */
1907 }
1908 gfc_constructor;
1909
1910
1911 typedef struct iterator_stack
1912 {
1913   gfc_symtree *variable;
1914   mpz_t value;
1915   struct iterator_stack *prev;
1916 }
1917 iterator_stack;
1918 extern iterator_stack *iter_stack;
1919
1920 /************************ Function prototypes *************************/
1921
1922 /* decl.c */
1923 bool gfc_in_match_data (void);
1924
1925 /* scanner.c */
1926 void gfc_scanner_done_1 (void);
1927 void gfc_scanner_init_1 (void);
1928
1929 void gfc_add_include_path (const char *, bool);
1930 void gfc_add_intrinsic_modules_path (const char *);
1931 void gfc_release_include_path (void);
1932 FILE *gfc_open_included_file (const char *, bool, bool);
1933 FILE *gfc_open_intrinsic_module (const char *);
1934
1935 int gfc_at_end (void);
1936 int gfc_at_eof (void);
1937 int gfc_at_bol (void);
1938 int gfc_at_eol (void);
1939 void gfc_advance_line (void);
1940 int gfc_check_include (void);
1941 int gfc_define_undef_line (void);
1942
1943 void gfc_skip_comments (void);
1944 int gfc_next_char_literal (int);
1945 int gfc_next_char (void);
1946 int gfc_peek_char (void);
1947 void gfc_error_recovery (void);
1948 void gfc_gobble_whitespace (void);
1949 try gfc_new_file (void);
1950 const char * gfc_read_orig_filename (const char *, const char **);
1951
1952 extern gfc_source_form gfc_current_form;
1953 extern const char *gfc_source_file;
1954 extern locus gfc_current_locus;
1955
1956 void gfc_start_source_files (void);
1957 void gfc_end_source_files (void);
1958
1959 /* misc.c */
1960 void *gfc_getmem (size_t) ATTRIBUTE_MALLOC;
1961 void gfc_free (void *);
1962 int gfc_terminal_width (void);
1963 void gfc_clear_ts (gfc_typespec *);
1964 FILE *gfc_open_file (const char *);
1965 const char *gfc_basic_typename (bt);
1966 const char *gfc_typename (gfc_typespec *);
1967 const char *gfc_op2string (gfc_intrinsic_op);
1968 const char *gfc_code2string (const mstring *, int);
1969 int gfc_string2code (const mstring *, const char *);
1970 const char *gfc_intent_string (sym_intent);
1971
1972 void gfc_init_1 (void);
1973 void gfc_init_2 (void);
1974 void gfc_done_1 (void);
1975 void gfc_done_2 (void);
1976
1977 int get_c_kind (const char *, CInteropKind_t *);
1978
1979 /* options.c */
1980 unsigned int gfc_init_options (unsigned int, const char **);
1981 int gfc_handle_option (size_t, const char *, int);
1982 bool gfc_post_options (const char **);
1983
1984 /* iresolve.c */
1985 const char * gfc_get_string (const char *, ...) ATTRIBUTE_PRINTF_1;
1986
1987 /* error.c */
1988
1989 typedef struct gfc_error_buf
1990 {
1991   int flag;
1992   size_t allocated, index;
1993   char *message;
1994 } gfc_error_buf;
1995
1996 void gfc_error_init_1 (void);
1997 void gfc_buffer_error (int);
1998
1999 void gfc_warning (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
2000 void gfc_warning_now (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
2001 void gfc_clear_warning (void);
2002 void gfc_warning_check (void);
2003
2004 void gfc_error (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
2005 void gfc_error_now (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
2006 void gfc_fatal_error (const char *, ...) ATTRIBUTE_NORETURN ATTRIBUTE_GCC_GFC(1,2);
2007 void gfc_internal_error (const char *, ...) ATTRIBUTE_NORETURN ATTRIBUTE_GCC_GFC(1,2);
2008 void gfc_clear_error (void);
2009 int gfc_error_check (void);
2010 int gfc_error_flag_test (void);
2011
2012 notification gfc_notification_std (int);
2013 try gfc_notify_std (int, const char *, ...) ATTRIBUTE_GCC_GFC(2,3);
2014
2015 /* A general purpose syntax error.  */
2016 #define gfc_syntax_error(ST)    \
2017   gfc_error ("Syntax error in %s statement at %C", gfc_ascii_statement (ST));
2018
2019 void gfc_push_error (gfc_error_buf *);
2020 void gfc_pop_error (gfc_error_buf *);
2021 void gfc_free_error (gfc_error_buf *);
2022
2023 void gfc_get_errors (int *, int *);
2024
2025 /* arith.c */
2026 void gfc_arith_init_1 (void);
2027 void gfc_arith_done_1 (void);
2028 gfc_expr *gfc_enum_initializer (gfc_expr *, locus);
2029 arith gfc_check_integer_range (mpz_t p, int kind);
2030
2031 /* trans-types.c */
2032 try gfc_validate_c_kind (gfc_typespec *);
2033 try gfc_check_any_c_kind (gfc_typespec *);
2034 int gfc_validate_kind (bt, int, bool);
2035 extern int gfc_index_integer_kind;
2036 extern int gfc_default_integer_kind;
2037 extern int gfc_max_integer_kind;
2038 extern int gfc_default_real_kind;
2039 extern int gfc_default_double_kind;
2040 extern int gfc_default_character_kind;
2041 extern int gfc_default_logical_kind;
2042 extern int gfc_default_complex_kind;
2043 extern int gfc_c_int_kind;
2044 extern int gfc_intio_kind;
2045 extern int gfc_charlen_int_kind;
2046 extern int gfc_numeric_storage_size;
2047 extern int gfc_character_storage_size;
2048
2049 /* symbol.c */
2050 void gfc_clear_new_implicit (void);
2051 try gfc_add_new_implicit_range (int, int);
2052 try gfc_merge_new_implicit (gfc_typespec *);
2053 void gfc_set_implicit_none (void);
2054 void gfc_check_function_type (gfc_namespace *);
2055 bool gfc_is_intrinsic_typename (const char *);
2056
2057 gfc_typespec *gfc_get_default_type (gfc_symbol *, gfc_namespace *);
2058 try gfc_set_default_type (gfc_symbol *, int, gfc_namespace *);
2059
2060 void gfc_set_component_attr (gfc_component *, symbol_attribute *);
2061 void gfc_get_component_attr (symbol_attribute *, gfc_component *);
2062
2063 void gfc_set_sym_referenced (gfc_symbol *);
2064
2065 try gfc_add_attribute (symbol_attribute *, locus *);
2066 try gfc_add_allocatable (symbol_attribute *, locus *);
2067 try gfc_add_dimension (symbol_attribute *, const char *, locus *);
2068 try gfc_add_external (symbol_attribute *, locus *);
2069 try gfc_add_intrinsic (symbol_attribute *, locus *);
2070 try gfc_add_optional (symbol_attribute *, locus *);
2071 try gfc_add_pointer (symbol_attribute *, locus *);
2072 try gfc_add_cray_pointer (symbol_attribute *, locus *);
2073 try gfc_add_cray_pointee (symbol_attribute *, locus *);
2074 try gfc_mod_pointee_as (gfc_array_spec *);
2075 try gfc_add_protected (symbol_attribute *, const char *, locus *);
2076 try gfc_add_result (symbol_attribute *, const char *, locus *);
2077 try gfc_add_save (symbol_attribute *, const char *, locus *);
2078 try gfc_add_threadprivate (symbol_attribute *, const char *, locus *);
2079 try gfc_add_saved_common (symbol_attribute *, locus *);
2080 try gfc_add_target (symbol_attribute *, locus *);
2081 try gfc_add_dummy (symbol_attribute *, const char *, locus *);
2082 try gfc_add_generic (symbol_attribute *, const char *, locus *);
2083 try gfc_add_common (symbol_attribute *, locus *);
2084 try gfc_add_in_common (symbol_attribute *, const char *, locus *);
2085 try gfc_add_in_equivalence (symbol_attribute *, const char *, locus *);
2086 try gfc_add_data (symbol_attribute *, const char *, locus *);
2087 try gfc_add_in_namelist (symbol_attribute *, const char *, locus *);
2088 try gfc_add_sequence (symbol_attribute *, const char *, locus *);
2089 try gfc_add_elemental (symbol_attribute *, locus *);
2090 try gfc_add_pure (symbol_attribute *, locus *);
2091 try gfc_add_recursive (symbol_attribute *, locus *);
2092 try gfc_add_function (symbol_attribute *, const char *, locus *);
2093 try gfc_add_subroutine (symbol_attribute *, const char *, locus *);
2094 try gfc_add_volatile (symbol_attribute *, const char *, locus *);
2095 try gfc_add_proc (symbol_attribute *attr, const char *name, locus *where);
2096
2097 try gfc_add_access (symbol_attribute *, gfc_access, const char *, locus *);
2098 try gfc_add_is_bind_c(symbol_attribute *, const char *, locus *, int);
2099 try gfc_add_value (symbol_attribute *, const char *, locus *);
2100 try gfc_add_flavor (symbol_attribute *, sym_flavor, const char *, locus *);
2101 try gfc_add_entry (symbol_attribute *, const char *, locus *);
2102 try gfc_add_procedure (symbol_attribute *, procedure_type,
2103                        const char *, locus *);
2104 try gfc_add_intent (symbol_attribute *, sym_intent, locus *);
2105 try gfc_add_explicit_interface (gfc_symbol *, ifsrc,
2106                                 gfc_formal_arglist *, locus *);
2107 try gfc_add_type (gfc_symbol *, gfc_typespec *, locus *);
2108
2109 void gfc_clear_attr (symbol_attribute *);
2110 try gfc_missing_attr (symbol_attribute *, locus *);
2111 try gfc_copy_attr (symbol_attribute *, symbol_attribute *, locus *);
2112
2113 try gfc_add_component (gfc_symbol *, const char *, gfc_component **);
2114 gfc_symbol *gfc_use_derived (gfc_symbol *);
2115 gfc_symtree *gfc_use_derived_tree (gfc_symtree *);
2116 gfc_component *gfc_find_component (gfc_symbol *, const char *);
2117
2118 gfc_st_label *gfc_get_st_label (int);
2119 void gfc_free_st_label (gfc_st_label *);
2120 void gfc_define_st_label (gfc_st_label *, gfc_sl_type, locus *);
2121 try gfc_reference_st_label (gfc_st_label *, gfc_sl_type);
2122
2123 gfc_expr * gfc_lval_expr_from_sym (gfc_symbol *);
2124
2125 gfc_namespace *gfc_get_namespace (gfc_namespace *, int);
2126 gfc_symtree *gfc_new_symtree (gfc_symtree **, const char *);
2127 gfc_symtree *gfc_find_symtree (gfc_symtree *, const char *);
2128 void gfc_delete_symtree (gfc_symtree **, const char *);
2129 gfc_symtree *gfc_get_unique_symtree (gfc_namespace *);
2130 gfc_user_op *gfc_get_uop (const char *);
2131 gfc_user_op *gfc_find_uop (const char *, gfc_namespace *);
2132 void gfc_free_symbol (gfc_symbol *);
2133 gfc_symbol *gfc_new_symbol (const char *, gfc_namespace *);
2134 int gfc_find_symbol (const char *, gfc_namespace *, int, gfc_symbol **);
2135 int gfc_find_sym_tree (const char *, gfc_namespace *, int, gfc_symtree **);
2136 int gfc_get_symbol (const char *, gfc_namespace *, gfc_symbol **);
2137 try verify_c_interop (gfc_typespec *, const char *name, locus *where);
2138 try verify_c_interop_param (gfc_symbol *);
2139 try verify_bind_c_sym (gfc_symbol *, gfc_typespec *, int, gfc_common_head *);
2140 try verify_bind_c_derived_type (gfc_symbol *);
2141 try verify_com_block_vars_c_interop (gfc_common_head *);
2142 void generate_isocbinding_symbol (const char *, iso_c_binding_symbol, const char *);
2143 gfc_symbol *get_iso_c_sym (gfc_symbol *, char *, char *, int);
2144 int gfc_get_sym_tree (const char *, gfc_namespace *, gfc_symtree **);
2145 int gfc_get_ha_symbol (const char *, gfc_symbol **);
2146 int gfc_get_ha_sym_tree (const char *, gfc_symtree **);
2147
2148 int gfc_symbols_could_alias (gfc_symbol *, gfc_symbol *);
2149
2150 void gfc_undo_symbols (void);
2151 void gfc_commit_symbols (void);
2152 void gfc_commit_symbol (gfc_symbol *);
2153 void gfc_free_namespace (gfc_namespace *);
2154
2155 void gfc_symbol_init_2 (void);
2156 void gfc_symbol_done_2 (void);
2157
2158 void gfc_traverse_symtree (gfc_symtree *, void (*)(gfc_symtree *));
2159 void gfc_traverse_ns (gfc_namespace *, void (*)(gfc_symbol *));
2160 void gfc_traverse_user_op (gfc_namespace *, void (*)(gfc_user_op *));
2161 void gfc_save_all (gfc_namespace *);
2162
2163 void gfc_symbol_state (void);
2164
2165 gfc_gsymbol *gfc_get_gsymbol (const char *);
2166 gfc_gsymbol *gfc_find_gsymbol (gfc_gsymbol *, const char *);
2167
2168 void copy_formal_args (gfc_symbol *dest, gfc_symbol *src);
2169
2170 /* intrinsic.c */
2171 extern int gfc_init_expr;
2172
2173 /* Given a symbol that we have decided is intrinsic, mark it as such
2174    by placing it into a special module that is otherwise impossible to
2175    read or write.  */
2176
2177 #define gfc_intrinsic_symbol(SYM) SYM->module = gfc_get_string ("(intrinsic)")
2178
2179 void gfc_intrinsic_init_1 (void);
2180 void gfc_intrinsic_done_1 (void);
2181
2182 char gfc_type_letter (bt);
2183 gfc_symbol * gfc_get_intrinsic_sub_symbol (const char *);
2184 try gfc_convert_type (gfc_expr *, gfc_typespec *, int);
2185 try gfc_convert_type_warn (gfc_expr *, gfc_typespec *, int, int);
2186 int gfc_generic_intrinsic (const char *);
2187 int gfc_specific_intrinsic (const char *);
2188 int gfc_intrinsic_name (const char *, int);
2189 int gfc_intrinsic_actual_ok (const char *, const bool);
2190 gfc_intrinsic_sym *gfc_find_function (const char *);
2191 gfc_intrinsic_sym *gfc_find_subroutine (const char *);
2192
2193 match gfc_intrinsic_func_interface (gfc_expr *, int);
2194 match gfc_intrinsic_sub_interface (gfc_code *, int);
2195
2196 /* match.c -- FIXME */
2197 void gfc_free_iterator (gfc_iterator *, int);
2198 void gfc_free_forall_iterator (gfc_forall_iterator *);
2199 void gfc_free_alloc_list (gfc_alloc *);
2200 void gfc_free_namelist (gfc_namelist *);
2201 void gfc_free_equiv (gfc_equiv *);
2202 void gfc_free_data (gfc_data *);
2203 void gfc_free_case_list (gfc_case *);
2204
2205 /* matchexp.c -- FIXME too?  */
2206 gfc_expr *gfc_get_parentheses (gfc_expr *);
2207
2208 /* openmp.c */
2209 void gfc_free_omp_clauses (gfc_omp_clauses *);
2210 void gfc_resolve_omp_directive (gfc_code *, gfc_namespace *);
2211 void gfc_resolve_do_iterator (gfc_code *, gfc_symbol *);
2212 void gfc_resolve_omp_parallel_blocks (gfc_code *, gfc_namespace *);
2213 void gfc_resolve_omp_do_blocks (gfc_code *, gfc_namespace *);
2214
2215 /* expr.c */
2216 void gfc_free_actual_arglist (gfc_actual_arglist *);
2217 gfc_actual_arglist *gfc_copy_actual_arglist (gfc_actual_arglist *);
2218 const char *gfc_extract_int (gfc_expr *, int *);
2219 gfc_expr *gfc_expr_to_initialize (gfc_expr *);
2220 bool is_subref_array (gfc_expr *);
2221
2222 gfc_expr *gfc_build_conversion (gfc_expr *);
2223 void gfc_free_ref_list (gfc_ref *);
2224 void gfc_type_convert_binary (gfc_expr *);
2225 int gfc_is_constant_expr (gfc_expr *);
2226 try gfc_simplify_expr (gfc_expr *, int);
2227 int gfc_has_vector_index (gfc_expr *);
2228
2229 gfc_expr *gfc_get_expr (void);
2230 void gfc_free_expr (gfc_expr *);
2231 void gfc_replace_expr (gfc_expr *, gfc_expr *);
2232 gfc_expr *gfc_int_expr (int);
2233 gfc_expr *gfc_logical_expr (int, locus *);
2234 mpz_t *gfc_copy_shape (mpz_t *, int);
2235 mpz_t *gfc_copy_shape_excluding (mpz_t *, int, gfc_expr *);
2236 gfc_expr *gfc_copy_expr (gfc_expr *);
2237
2238 try gfc_specification_expr (gfc_expr *);
2239
2240 int gfc_numeric_ts (gfc_typespec *);
2241 int gfc_kind_max (gfc_expr *, gfc_expr *);
2242
2243 try gfc_check_conformance (const char *, gfc_expr *, gfc_expr *);
2244 try gfc_check_assign (gfc_expr *, gfc_expr *, int);
2245 try gfc_check_pointer_assign (gfc_expr *, gfc_expr *);
2246 try gfc_check_assign_symbol (gfc_symbol *, gfc_expr *);
2247
2248 gfc_expr *gfc_default_initializer (gfc_typespec *);
2249 gfc_expr *gfc_get_variable_expr (gfc_symtree *);
2250
2251 bool gfc_traverse_expr (gfc_expr *, gfc_symbol *,
2252                         bool (*)(gfc_expr *, gfc_symbol *, int*),
2253                         int);
2254 void gfc_expr_set_symbols_referenced (gfc_expr *);
2255
2256 /* st.c */
2257 extern gfc_code new_st;
2258
2259 void gfc_clear_new_st (void);
2260 gfc_code *gfc_get_code (void);
2261 gfc_code *gfc_append_code (gfc_code *, gfc_code *);
2262 void gfc_free_statement (gfc_code *);
2263 void gfc_free_statements (gfc_code *);
2264
2265 /* resolve.c */
2266 try gfc_resolve_expr (gfc_expr *);
2267 void gfc_resolve (gfc_namespace *);
2268 void gfc_resolve_blocks (gfc_code *, gfc_namespace *);
2269 int gfc_impure_variable (gfc_symbol *);
2270 int gfc_pure (gfc_symbol *);
2271 int gfc_elemental (gfc_symbol *);
2272 try gfc_resolve_iterator (gfc_iterator *, bool);
2273 try find_forall_index (gfc_expr *, gfc_symbol *, int);
2274 try gfc_resolve_index (gfc_expr *, int);
2275 try gfc_resolve_dim_arg (gfc_expr *);
2276 int gfc_is_formal_arg (void);
2277 void gfc_resolve_substring_charlen (gfc_expr *);
2278 match gfc_iso_c_sub_interface(gfc_code *, gfc_symbol *);
2279
2280
2281 /* array.c */
2282 void gfc_free_array_spec (gfc_array_spec *);
2283 gfc_array_ref *gfc_copy_array_ref (gfc_array_ref *);
2284
2285 try gfc_set_array_spec (gfc_symbol *, gfc_array_spec *, locus *);
2286 gfc_array_spec *gfc_copy_array_spec (gfc_array_spec *);
2287 try gfc_resolve_array_spec (gfc_array_spec *, int);
2288
2289 int gfc_compare_array_spec (gfc_array_spec *, gfc_array_spec *);
2290
2291 gfc_expr *gfc_start_constructor (bt, int, locus *);
2292 void gfc_append_constructor (gfc_expr *, gfc_expr *);
2293 void gfc_free_constructor (gfc_constructor *);
2294 void gfc_simplify_iterator_var (gfc_expr *);
2295 try gfc_expand_constructor (gfc_expr *);
2296 int gfc_constant_ac (gfc_expr *);
2297 int gfc_expanded_ac (gfc_expr *);
2298 void gfc_resolve_character_array_constructor (gfc_expr *);
2299 try gfc_resolve_array_constructor (gfc_expr *);
2300 try gfc_check_constructor_type (gfc_expr *);
2301 try gfc_check_iter_variable (gfc_expr *);
2302 try gfc_check_constructor (gfc_expr *, try (*)(gfc_expr *));
2303 gfc_constructor *gfc_copy_constructor (gfc_constructor *);
2304 gfc_expr *gfc_get_array_element (gfc_expr *, int);
2305 try gfc_array_size (gfc_expr *, mpz_t *);
2306 try gfc_array_dimen_size (gfc_expr *, int, mpz_t *);
2307 try gfc_array_ref_shape (gfc_array_ref *, mpz_t *);
2308 gfc_array_ref *gfc_find_array_ref (gfc_expr *);
2309 void gfc_insert_constructor (gfc_expr *, gfc_constructor *);
2310 gfc_constructor *gfc_get_constructor (void);
2311 tree gfc_conv_array_initializer (tree type, gfc_expr *);
2312 try spec_size (gfc_array_spec *, mpz_t *);
2313 try spec_dimen_size (gfc_array_spec *, int, mpz_t *);
2314 int gfc_is_compile_time_shape (gfc_array_spec *);
2315
2316 /* interface.c -- FIXME: some of these should be in symbol.c */
2317 void gfc_free_interface (gfc_interface *);
2318 int gfc_compare_derived_types (gfc_symbol *, gfc_symbol *);
2319 int gfc_compare_types (gfc_typespec *, gfc_typespec *);
2320 void gfc_check_interfaces (gfc_namespace *);
2321 void gfc_procedure_use (gfc_symbol *, gfc_actual_arglist **, locus *);
2322 gfc_symbol *gfc_search_interface (gfc_interface *, int,
2323                                   gfc_actual_arglist **);
2324 try gfc_extend_expr (gfc_expr *);
2325 void gfc_free_formal_arglist (gfc_formal_arglist *);
2326 try gfc_extend_assign (gfc_code *, gfc_namespace *);
2327 try gfc_add_interface (gfc_symbol *);
2328 gfc_interface *gfc_current_interface_head (void);
2329 void gfc_set_current_interface_head (gfc_interface *);
2330
2331 /* io.c */
2332 extern gfc_st_label format_asterisk;
2333
2334 void gfc_free_open (gfc_open *);
2335 try gfc_resolve_open (gfc_open *);
2336 void gfc_free_close (gfc_close *);
2337 try gfc_resolve_close (gfc_close *);
2338 void gfc_free_filepos (gfc_filepos *);
2339 try gfc_resolve_filepos (gfc_filepos *);
2340 void gfc_free_inquire (gfc_inquire *);
2341 try gfc_resolve_inquire (gfc_inquire *);
2342 void gfc_free_dt (gfc_dt *);
2343 try gfc_resolve_dt (gfc_dt *);
2344 void gfc_free_wait (gfc_wait *);
2345 try gfc_resolve_wait (gfc_wait *);
2346
2347 /* module.c */
2348 void gfc_module_init_2 (void);
2349 void gfc_module_done_2 (void);
2350 void gfc_dump_module (const char *, int);
2351 bool gfc_check_access (gfc_access, gfc_access);
2352
2353 /* primary.c */
2354 symbol_attribute gfc_variable_attr (gfc_expr *, gfc_typespec *);
2355 symbol_attribute gfc_expr_attr (gfc_expr *);
2356 match gfc_match_rvalue (gfc_expr **);
2357
2358 /* trans.c */
2359 void gfc_generate_code (gfc_namespace *);
2360 void gfc_generate_module_code (gfc_namespace *);
2361
2362 /* bbt.c */
2363 typedef int (*compare_fn) (void *, void *);
2364 void gfc_insert_bbt (void *, void *, compare_fn);
2365 void gfc_delete_bbt (void *, void *, compare_fn);
2366
2367 /* dump-parse-tree.c */
2368 void gfc_dump_parse_tree (gfc_namespace *, FILE *);
2369
2370 /* parse.c */
2371 try gfc_parse_file (void);
2372 void gfc_global_used (gfc_gsymbol *, locus *);
2373
2374 /* dependency.c */
2375 int gfc_dep_compare_expr (gfc_expr *, gfc_expr *);
2376
2377 #endif /* GCC_GFORTRAN_H  */