OSDN Git Service

2006-02-09 Paul Thomas <pault@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 Free Software 
3    Foundation, Inc.
4    Contributed by Andy Vaught
5
6 This file is part of GCC.
7
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
11 version.
12
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING.  If not, write to the Free
20 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
21 02110-1301, USA.  */
22
23 #ifndef GCC_GFORTRAN_H
24 #define GCC_GFORTRAN_H
25
26 /* It's probably insane to have this large of a header file, but it
27    seemed like everything had to be recompiled anyway when a change
28    was made to a header file, and there were ordering issues with
29    multiple header files.  Besides, Microsoft's winnt.h was 250k last
30    time I looked, so by comparison this is perfectly reasonable.  */
31
32 #include "system.h"
33 #include "intl.h"
34 #include "coretypes.h"
35 #include "input.h"
36
37 /* The following ifdefs are recommended by the autoconf documentation
38    for any code using alloca.  */
39
40 /* AIX requires this to be the first thing in the file.  */
41 #ifdef __GNUC__
42 #else /* not __GNUC__ */
43 #ifdef HAVE_ALLOCA_H
44 #include <alloca.h>
45 #else /* do not HAVE_ALLOCA_H */
46 #ifdef _AIX
47 #pragma alloca
48 #else
49 #ifndef alloca                  /* predefined by HP cc +Olibcalls */
50 char *alloca ();
51 #endif /* not predefined */
52 #endif /* not _AIX */
53 #endif /* do not HAVE_ALLOCA_H */
54 #endif /* not __GNUC__ */
55
56 /* Major control parameters.  */
57
58 #define GFC_MAX_SYMBOL_LEN 63
59 #define GFC_MAX_LINE 132        /* Characters beyond this are not seen.  */
60 #define GFC_MAX_DIMENSIONS 7    /* Maximum dimensions in an array.  */
61 #define GFC_LETTERS 26          /* Number of letters in the alphabet.  */
62
63 #define free(x) Use_gfc_free_instead_of_free()
64 #define gfc_is_whitespace(c) ((c==' ') || (c=='\t'))
65
66 #ifndef NULL
67 #define NULL ((void *) 0)
68 #endif
69
70 /* Stringization.  */
71 #define stringize(x) expand_macro(x)
72 #define expand_macro(x) # x
73
74 /* For a the runtime library, a standard prefix is a requirement to
75    avoid cluttering the namespace with things nobody asked for.  It's
76    ugly to look at and a pain to type when you add the prefix by hand,
77    so we hide it behind a macro.  */
78 #define PREFIX(x) "_gfortran_" x
79 #define PREFIX_LEN 10
80
81 #define BLANK_COMMON_NAME "__BLNK__"
82
83 /* Macro to initialize an mstring structure.  */
84 #define minit(s, t) { s, NULL, t }
85
86 /* Structure for storing strings to be matched by gfc_match_string.  */
87 typedef struct
88 {
89   const char *string;
90   const char *mp;
91   int tag;
92 }
93 mstring;
94
95
96 /* Flags to specify which standard/extension contains a feature.  */
97 #define GFC_STD_LEGACY          (1<<6) /* Backward compatibility.  */
98 #define GFC_STD_GNU             (1<<5)    /* GNU Fortran extension.  */
99 #define GFC_STD_F2003           (1<<4)    /* New in F2003.  */
100 /* Note that no features were obsoleted nor deleted in F2003.  */
101 #define GFC_STD_F95             (1<<3)    /* New in F95.  */
102 #define GFC_STD_F95_DEL         (1<<2)    /* Deleted in F95.  */
103 #define GFC_STD_F95_OBS         (1<<1)    /* Obsoleted in F95.  */
104 #define GFC_STD_F77             (1<<0)    /* Up to and including F77.  */
105
106 /* Bitmasks for the various FPE that can be enabled.  */
107 #define GFC_FPE_INVALID    (1<<0)
108 #define GFC_FPE_DENORMAL   (1<<1)
109 #define GFC_FPE_ZERO       (1<<2)
110 #define GFC_FPE_OVERFLOW   (1<<3)
111 #define GFC_FPE_UNDERFLOW  (1<<4)
112 #define GFC_FPE_PRECISION  (1<<5)
113
114 /* Keep this in sync with libgfortran/io/io.h ! */
115
116 typedef enum
117   { CONVERT_NATIVE=0, CONVERT_SWAP, CONVERT_BIG, CONVERT_LITTLE }
118 options_convert;
119
120
121 /*************************** Enums *****************************/
122
123 /* The author remains confused to this day about the convention of
124    returning '0' for 'SUCCESS'... or was it the other way around?  The
125    following enum makes things much more readable.  We also start
126    values off at one instead of zero.  */
127
128 typedef enum
129 { SUCCESS = 1, FAILURE }
130 try;
131
132 /* Matchers return one of these three values.  The difference between
133    MATCH_NO and MATCH_ERROR is that MATCH_ERROR means that a match was
134    successful, but that something non-syntactic is wrong and an error
135    has already been issued.  */
136
137 typedef enum
138 { MATCH_NO = 1, MATCH_YES, MATCH_ERROR }
139 match;
140
141 typedef enum
142 { FORM_FREE, FORM_FIXED, FORM_UNKNOWN }
143 gfc_source_form;
144
145 typedef enum
146 { BT_UNKNOWN = 1, BT_INTEGER, BT_REAL, BT_COMPLEX,
147   BT_LOGICAL, BT_CHARACTER, BT_DERIVED, BT_PROCEDURE, BT_HOLLERITH
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   INTRINSIC_EQ, INTRINSIC_NE, INTRINSIC_GT, INTRINSIC_GE,
184   INTRINSIC_LT, INTRINSIC_LE, INTRINSIC_NOT, INTRINSIC_USER,
185   INTRINSIC_ASSIGN,
186   GFC_INTRINSIC_END /* Sentinel */
187 }
188 gfc_intrinsic_op;
189
190
191 /* Strings for all intrinsic operators.  */
192 extern mstring intrinsic_operators[];
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_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_WRITE,
221   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, ST_NONE
224 }
225 gfc_statement;
226
227
228 /* Types of interfaces that we can have.  Assignment interfaces are
229    considered to be intrinsic operators.  */
230 typedef enum
231 {
232   INTERFACE_NAMELESS = 1, INTERFACE_GENERIC,
233   INTERFACE_INTRINSIC_OP, INTERFACE_USER_OP
234 }
235 interface_type;
236
237 /* Symbol flavors: these are all mutually exclusive.
238    10 elements = 4 bits.  */
239 typedef enum sym_flavor
240 {
241   FL_UNKNOWN = 0, FL_PROGRAM, FL_BLOCK_DATA, FL_MODULE, FL_VARIABLE,
242   FL_PARAMETER, FL_LABEL, FL_PROCEDURE, FL_DERIVED, FL_NAMELIST
243 }
244 sym_flavor;
245
246 /* Procedure types.  7 elements = 3 bits.  */
247 typedef enum procedure_type
248 { PROC_UNKNOWN, PROC_MODULE, PROC_INTERNAL, PROC_DUMMY,
249   PROC_INTRINSIC, PROC_ST_FUNCTION, PROC_EXTERNAL
250 }
251 procedure_type;
252
253 /* Intent types.  */
254 typedef enum sym_intent
255 { INTENT_UNKNOWN = 0, INTENT_IN, INTENT_OUT, INTENT_INOUT
256 }
257 sym_intent;
258
259 /* Access types.  */
260 typedef enum gfc_access
261 { ACCESS_UNKNOWN = 0, ACCESS_PUBLIC, ACCESS_PRIVATE
262 }
263 gfc_access;
264
265 /* Flags to keep track of where an interface came from.
266    4 elements = 2 bits.  */
267 typedef enum ifsrc
268 { IFSRC_UNKNOWN = 0, IFSRC_DECL, IFSRC_IFBODY, IFSRC_USAGE
269 }
270 ifsrc;
271
272 /* Strings for all symbol attributes.  We use these for dumping the
273    parse tree, in error messages, and also when reading and writing
274    modules.  In symbol.c.  */
275 extern const mstring flavors[];
276 extern const mstring procedures[];
277 extern const mstring intents[];
278 extern const mstring access_types[];
279 extern const mstring ifsrc_types[];
280
281 /* Enumeration of all the generic intrinsic functions.  Used by the
282    backend for identification of a function.  */
283
284 enum gfc_generic_isym_id
285 {
286   /* GFC_ISYM_NONE is used for intrinsics which will never be seen by
287      the backend (eg. KIND).  */
288   GFC_ISYM_NONE = 0,
289   GFC_ISYM_ABS,
290   GFC_ISYM_ACHAR,
291   GFC_ISYM_ACOS,
292   GFC_ISYM_ACOSH,
293   GFC_ISYM_ADJUSTL,
294   GFC_ISYM_ADJUSTR,
295   GFC_ISYM_AIMAG,
296   GFC_ISYM_AINT,
297   GFC_ISYM_ALL,
298   GFC_ISYM_ALLOCATED,
299   GFC_ISYM_ANINT,
300   GFC_ISYM_AND,
301   GFC_ISYM_ANY,
302   GFC_ISYM_ASIN,
303   GFC_ISYM_ASINH,
304   GFC_ISYM_ASSOCIATED,
305   GFC_ISYM_ATAN,
306   GFC_ISYM_ATANH,
307   GFC_ISYM_ATAN2,
308   GFC_ISYM_J0,
309   GFC_ISYM_J1,
310   GFC_ISYM_JN,
311   GFC_ISYM_Y0,
312   GFC_ISYM_Y1,
313   GFC_ISYM_YN,
314   GFC_ISYM_BTEST,
315   GFC_ISYM_CEILING,
316   GFC_ISYM_CHAR,
317   GFC_ISYM_CHDIR,
318   GFC_ISYM_CMPLX,
319   GFC_ISYM_COMMAND_ARGUMENT_COUNT,
320   GFC_ISYM_COMPLEX,
321   GFC_ISYM_CONJG,
322   GFC_ISYM_COS,
323   GFC_ISYM_COSH,
324   GFC_ISYM_COUNT,
325   GFC_ISYM_CSHIFT,
326   GFC_ISYM_CTIME,
327   GFC_ISYM_DBLE,
328   GFC_ISYM_DIM,
329   GFC_ISYM_DOT_PRODUCT,
330   GFC_ISYM_DPROD,
331   GFC_ISYM_EOSHIFT,
332   GFC_ISYM_ERF,
333   GFC_ISYM_ERFC,
334   GFC_ISYM_ETIME,
335   GFC_ISYM_EXP,
336   GFC_ISYM_EXPONENT,
337   GFC_ISYM_FDATE,
338   GFC_ISYM_FGET,
339   GFC_ISYM_FGETC,
340   GFC_ISYM_FLOOR,
341   GFC_ISYM_FNUM,
342   GFC_ISYM_FPUT,
343   GFC_ISYM_FPUTC,
344   GFC_ISYM_FRACTION,
345   GFC_ISYM_FSTAT,
346   GFC_ISYM_FTELL,
347   GFC_ISYM_GETCWD,
348   GFC_ISYM_GETGID,
349   GFC_ISYM_GETPID,
350   GFC_ISYM_GETUID,
351   GFC_ISYM_HOSTNM,
352   GFC_ISYM_IACHAR,
353   GFC_ISYM_IAND,
354   GFC_ISYM_IARGC,
355   GFC_ISYM_IBCLR,
356   GFC_ISYM_IBITS,
357   GFC_ISYM_IBSET,
358   GFC_ISYM_ICHAR,
359   GFC_ISYM_IEOR,
360   GFC_ISYM_IERRNO,
361   GFC_ISYM_INDEX,
362   GFC_ISYM_INT,
363   GFC_ISYM_IOR,
364   GFC_ISYM_IRAND,
365   GFC_ISYM_ISATTY,
366   GFC_ISYM_ISHFT,
367   GFC_ISYM_ISHFTC,
368   GFC_ISYM_KILL,
369   GFC_ISYM_LBOUND,
370   GFC_ISYM_LEN,
371   GFC_ISYM_LEN_TRIM,
372   GFC_ISYM_LINK,
373   GFC_ISYM_LGE,
374   GFC_ISYM_LGT,
375   GFC_ISYM_LLE,
376   GFC_ISYM_LLT,
377   GFC_ISYM_LOG,
378   GFC_ISYM_LOC,
379   GFC_ISYM_LOG10,
380   GFC_ISYM_LOGICAL,
381   GFC_ISYM_MALLOC,
382   GFC_ISYM_MATMUL,
383   GFC_ISYM_MAX,
384   GFC_ISYM_MAXLOC,
385   GFC_ISYM_MAXVAL,
386   GFC_ISYM_MERGE,
387   GFC_ISYM_MIN,
388   GFC_ISYM_MINLOC,
389   GFC_ISYM_MINVAL,
390   GFC_ISYM_MOD,
391   GFC_ISYM_MODULO,
392   GFC_ISYM_NEAREST,
393   GFC_ISYM_NINT,
394   GFC_ISYM_NOT,
395   GFC_ISYM_OR,
396   GFC_ISYM_PACK,
397   GFC_ISYM_PRESENT,
398   GFC_ISYM_PRODUCT,
399   GFC_ISYM_RAND,
400   GFC_ISYM_REAL,
401   GFC_ISYM_RENAME,
402   GFC_ISYM_REPEAT,
403   GFC_ISYM_RESHAPE,
404   GFC_ISYM_RRSPACING,
405   GFC_ISYM_SCALE,
406   GFC_ISYM_SCAN,
407   GFC_ISYM_SECOND,
408   GFC_ISYM_SECNDS,
409   GFC_ISYM_SET_EXPONENT,
410   GFC_ISYM_SHAPE,
411   GFC_ISYM_SI_KIND,
412   GFC_ISYM_SIGN,
413   GFC_ISYM_SIGNAL,
414   GFC_ISYM_SIN,
415   GFC_ISYM_SINH,
416   GFC_ISYM_SIZE,
417   GFC_ISYM_SPACING,
418   GFC_ISYM_SPREAD,
419   GFC_ISYM_SQRT,
420   GFC_ISYM_SR_KIND,
421   GFC_ISYM_STAT,
422   GFC_ISYM_SUM,
423   GFC_ISYM_SYMLNK,
424   GFC_ISYM_SYSTEM,
425   GFC_ISYM_TAN,
426   GFC_ISYM_TANH,
427   GFC_ISYM_TIME,
428   GFC_ISYM_TIME8,
429   GFC_ISYM_TRANSFER,
430   GFC_ISYM_TRANSPOSE,
431   GFC_ISYM_TRIM,
432   GFC_ISYM_TTYNAM,
433   GFC_ISYM_UBOUND,
434   GFC_ISYM_UMASK,
435   GFC_ISYM_UNLINK,
436   GFC_ISYM_UNPACK,
437   GFC_ISYM_VERIFY,
438   GFC_ISYM_XOR,
439   GFC_ISYM_CONVERSION
440 };
441 typedef enum gfc_generic_isym_id gfc_generic_isym_id;
442
443 /************************* Structures *****************************/
444
445 /* Used for keeping things in balanced binary trees.  */
446 #define BBT_HEADER(self) int priority; struct self *left, *right
447
448 /* Symbol attribute structure.  */
449 typedef struct
450 {
451   /* Variable attributes.  */
452   unsigned allocatable:1, dimension:1, external:1, intrinsic:1,
453     optional:1, pointer:1, save:1, target:1,
454     dummy:1, result:1, assign:1;
455
456   unsigned data:1,              /* Symbol is named in a DATA statement.  */
457     use_assoc:1;                /* Symbol has been use-associated.  */
458
459   unsigned in_namelist:1, in_common:1, in_equivalence:1;
460   unsigned function:1, subroutine:1, generic:1;
461   unsigned implicit_type:1;     /* Type defined via implicit rules.  */
462   unsigned untyped:1;           /* No implicit type could be found.  */
463
464   /* Function/subroutine attributes */
465   unsigned sequence:1, elemental:1, pure:1, recursive:1;
466   unsigned unmaskable:1, masked:1, contained:1;
467
468   /* This is set if the subroutine doesn't return.  Currently, this
469      is only possible for intrinsic subroutines.  */
470   unsigned noreturn:1;
471
472   /* Set if this procedure is an alternate entry point.  These procedures
473      don't have any code associated, and the backend will turn them into
474      thunks to the master function.  */
475   unsigned entry:1;
476
477   /* Set if this is the master function for a procedure with multiple
478      entry points.  */
479   unsigned entry_master:1;
480
481   /* Set if this is the master function for a function with multiple
482      entry points where characteristics of the entry points differ.  */
483   unsigned mixed_entry_master:1;
484
485   /* Set if a function must always be referenced by an explicit interface.  */
486   unsigned always_explicit:1;
487
488   /* Set if the symbol has been referenced in an expression.  No further
489      modification of type or type parameters is permitted.  */
490   unsigned referenced:1;
491
492   /* Set if the is the symbol for the main program.  This is the least
493      cumbersome way to communicate this function property without
494      strcmp'ing with __MAIN everywhere.  */
495   unsigned is_main_program:1;
496
497   /* Mutually exclusive multibit attributes.  */
498   ENUM_BITFIELD (gfc_access) access:2;
499   ENUM_BITFIELD (sym_intent) intent:2;
500   ENUM_BITFIELD (sym_flavor) flavor:4;
501   ENUM_BITFIELD (ifsrc) if_source:2;
502
503   ENUM_BITFIELD (procedure_type) proc:3;
504
505   /* Special attributes for Cray pointers, pointees.  */
506   unsigned cray_pointer:1, cray_pointee:1;
507
508 }
509 symbol_attribute;
510
511
512 /* The following three structures are used to identify a location in
513    the sources.
514
515    gfc_file is used to maintain a tree of the source files and how
516    they include each other
517
518    gfc_linebuf holds a single line of source code and information
519    which file it resides in
520
521    locus point to the sourceline and the character in the source
522    line.
523 */
524
525 typedef struct gfc_file
526 {
527   struct gfc_file *included_by, *next, *up;
528   int inclusion_line, line;
529   char *filename;
530 } gfc_file;
531
532 typedef struct gfc_linebuf
533 {
534 #ifdef USE_MAPPED_LOCATION
535   source_location location;
536 #else
537   int linenum;
538 #endif
539   struct gfc_file *file;
540   struct gfc_linebuf *next;
541
542   int truncated;
543
544   char line[1];
545 } gfc_linebuf;
546
547 #define gfc_linebuf_header_size (offsetof (gfc_linebuf, line))
548
549 typedef struct
550 {
551   char *nextc;
552   gfc_linebuf *lb;
553 } locus;
554
555 /* In order for the "gfc" format checking to work correctly, you must
556    have declared a typedef locus first.  */
557 #if GCC_VERSION >= 4001
558 #define ATTRIBUTE_GCC_GFC(m, n) __attribute__ ((__format__ (__gcc_gfc__, m, n))) ATTRIBUTE_NONNULL(m)
559 #else
560 #define ATTRIBUTE_GCC_GFC(m, n) ATTRIBUTE_NONNULL(m)
561 #endif
562
563
564 extern int gfc_suppress_error;
565
566
567 /* Character length structures hold the expression that gives the
568    length of a character variable.  We avoid putting these into
569    gfc_typespec because doing so prevents us from doing structure
570    copies and forces us to deallocate any typespecs we create, as well
571    as structures that contain typespecs.  They also can have multiple
572    character typespecs pointing to them.
573
574    These structures form a singly linked list within the current
575    namespace and are deallocated with the namespace.  It is possible to
576    end up with gfc_charlen structures that have nothing pointing to them.  */
577
578 typedef struct gfc_charlen
579 {
580   struct gfc_expr *length;
581   struct gfc_charlen *next;
582   tree backend_decl;
583
584   int resolved;
585 }
586 gfc_charlen;
587
588 #define gfc_get_charlen() gfc_getmem(sizeof(gfc_charlen))
589
590 /* Type specification structure.  FIXME: derived and cl could be union???  */
591 typedef struct
592 {
593   bt type;
594   int kind;
595   struct gfc_symbol *derived;
596   gfc_charlen *cl;      /* For character types only.  */
597 }
598 gfc_typespec;
599
600 /* Array specification.  */
601 typedef struct
602 {
603   int rank;     /* A rank of zero means that a variable is a scalar.  */
604   array_type type;
605   struct gfc_expr *lower[GFC_MAX_DIMENSIONS], *upper[GFC_MAX_DIMENSIONS];
606
607   /* These two fields are used with the Cray Pointer extension.  */
608   bool cray_pointee; /* True iff this spec belongs to a cray pointee.  */
609   bool cp_was_assumed; /* AS_ASSUMED_SIZE cp arrays are converted to
610                         AS_EXPLICIT, but we want to remember that we
611                         did this.  */
612
613 }
614 gfc_array_spec;
615
616 #define gfc_get_array_spec() gfc_getmem(sizeof(gfc_array_spec))
617
618
619 /* Components of derived types.  */
620 typedef struct gfc_component
621 {
622   const char *name;
623   gfc_typespec ts;
624
625   int pointer, dimension;
626   gfc_array_spec *as;
627
628   tree backend_decl;
629   locus loc;
630   struct gfc_expr *initializer;
631   struct gfc_component *next;
632 }
633 gfc_component;
634
635 #define gfc_get_component() gfc_getmem(sizeof(gfc_component))
636
637 /* Formal argument lists are lists of symbols.  */
638 typedef struct gfc_formal_arglist
639 {
640   /* Symbol representing the argument at this position in the arglist.  */
641   struct gfc_symbol *sym;
642   /* Points to the next formal argument.  */
643   struct gfc_formal_arglist *next;
644 }
645 gfc_formal_arglist;
646
647 #define gfc_get_formal_arglist() gfc_getmem(sizeof(gfc_formal_arglist))
648
649
650 /* The gfc_actual_arglist structure is for actual arguments.  */
651 typedef struct gfc_actual_arglist
652 {
653   const char *name;
654   /* Alternate return label when the expr member is null.  */
655   struct gfc_st_label *label;
656
657   /* This is set to the type of an eventual omitted optional
658      argument. This is used to determine if a hidden string length
659      argument has to be added to a function call.  */
660   bt missing_arg_type;
661
662   struct gfc_expr *expr;
663   struct gfc_actual_arglist *next;
664 }
665 gfc_actual_arglist;
666
667 #define gfc_get_actual_arglist() gfc_getmem(sizeof(gfc_actual_arglist))
668
669
670 /* Because a symbol can belong to multiple namelists, they must be
671    linked externally to the symbol itself.  */
672 typedef struct gfc_namelist
673 {
674   struct gfc_symbol *sym;
675   struct gfc_namelist *next;
676 }
677 gfc_namelist;
678
679 #define gfc_get_namelist() gfc_getmem(sizeof(gfc_namelist))
680
681
682 /* The gfc_st_label structure is a doubly linked list attached to a
683    namespace that records the usage of statement labels within that
684    space.  */
685 /* TODO: Make format/statement specifics a union.  */
686 typedef struct gfc_st_label
687 {
688   BBT_HEADER(gfc_st_label);
689
690   int value;
691
692   gfc_sl_type defined, referenced;
693
694   struct gfc_expr *format;
695
696   tree backend_decl;
697
698   locus where;
699 }
700 gfc_st_label;
701
702
703 /* gfc_interface()-- Interfaces are lists of symbols strung together.  */
704 typedef struct gfc_interface
705 {
706   struct gfc_symbol *sym;
707   locus where;
708   struct gfc_interface *next;
709 }
710 gfc_interface;
711
712 #define gfc_get_interface() gfc_getmem(sizeof(gfc_interface))
713
714
715 /* User operator nodes.  These are like stripped down symbols.  */
716 typedef struct
717 {
718   const char *name;
719
720   gfc_interface *operator;
721   struct gfc_namespace *ns;
722   gfc_access access;
723 }
724 gfc_user_op;
725
726 /* Symbol nodes.  These are important things.  They are what the
727    standard refers to as "entities".  The possibly multiple names that
728    refer to the same entity are accomplished by a binary tree of
729    symtree structures that is balanced by the red-black method-- more
730    than one symtree node can point to any given symbol.  */
731
732 typedef struct gfc_symbol
733 {
734   const char *name;     /* Primary name, before renaming */
735   const char *module;   /* Module this symbol came from */
736   locus declared_at;
737
738   gfc_typespec ts;
739   symbol_attribute attr;
740
741   /* The interface member points to the formal argument list if the
742      symbol is a function or subroutine name.  If the symbol is a
743      generic name, the generic member points to the list of
744      interfaces.  */
745
746   gfc_interface *generic;
747   gfc_access component_access;
748
749   gfc_formal_arglist *formal;
750   struct gfc_namespace *formal_ns;
751
752   struct gfc_expr *value;       /* Parameter/Initializer value */
753   gfc_array_spec *as;
754   struct gfc_symbol *result;    /* function result symbol */
755   gfc_component *components;    /* Derived type components */
756
757   /* Defined only for Cray pointees; points to their pointer.  */
758   struct gfc_symbol *cp_pointer;
759
760   struct gfc_symbol *common_next;       /* Links for COMMON syms */
761
762   /* This is in fact a gfc_common_head but it is only used for pointer
763      comparisons to check if symbols are in the same common block.  */
764   struct gfc_common_head* common_head;
765
766   /* Make sure setup code for dummy arguments is generated in the correct
767      order.  */
768   int dummy_order;
769
770   gfc_namelist *namelist, *namelist_tail;
771
772   /* Change management fields.  Symbols that might be modified by the
773      current statement have the mark member nonzero and are kept in a
774      singly linked list through the tlink field.  Of these symbols,
775      symbols with old_symbol equal to NULL are symbols created within
776      the current statement.  Otherwise, old_symbol points to a copy of
777      the old symbol.  */
778
779   struct gfc_symbol *old_symbol, *tlink;
780   unsigned mark:1, new:1;
781   /* Nonzero if all equivalences associated with this symbol have been
782      processed.  */
783   unsigned equiv_built:1;
784   int refs;
785   struct gfc_namespace *ns;     /* namespace containing this symbol */
786
787   tree backend_decl;
788 }
789 gfc_symbol;
790
791
792 /* This structure is used to keep track of symbols in common blocks.  */
793
794 typedef struct gfc_common_head
795 {
796   locus where;
797   int use_assoc, saved;
798   char name[GFC_MAX_SYMBOL_LEN + 1];
799   struct gfc_symbol *head;
800 }
801 gfc_common_head;
802
803 #define gfc_get_common_head() gfc_getmem(sizeof(gfc_common_head))
804
805
806 /* A list of all the alternate entry points for a procedure.  */
807
808 typedef struct gfc_entry_list
809 {
810   /* The symbol for this entry point.  */
811   gfc_symbol *sym;
812   /* The zero-based id of this entry point.  */
813   int id;
814   /* The LABEL_EXPR marking this entry point.  */
815   tree label;
816   /* The nest item in the list.  */
817   struct gfc_entry_list *next;
818 }
819 gfc_entry_list;
820
821 #define gfc_get_entry_list() \
822   (gfc_entry_list *) gfc_getmem(sizeof(gfc_entry_list))
823
824 /* Within a namespace, symbols are pointed to by symtree nodes that
825    are linked together in a balanced binary tree.  There can be
826    several symtrees pointing to the same symbol node via USE
827    statements.  */
828
829 typedef struct gfc_symtree
830 {
831   BBT_HEADER (gfc_symtree);
832   const char *name;
833   int ambiguous;
834   union
835   {
836     gfc_symbol *sym;            /* Symbol associated with this node */
837     gfc_user_op *uop;
838     gfc_common_head *common;
839   }
840   n;
841
842 }
843 gfc_symtree;
844
845 /* A linked list of derived types in the namespace.  */
846 typedef struct gfc_dt_list
847 {
848   struct gfc_symbol *derived;
849   struct gfc_dt_list *next;
850 }
851 gfc_dt_list;
852
853 #define gfc_get_dt_list() gfc_getmem(sizeof(gfc_dt_list))
854
855
856 /* A namespace describes the contents of procedure, module or
857    interface block.  */
858 /* ??? Anything else use these?  */
859
860 typedef struct gfc_namespace
861 {
862   /* Tree containing all the symbols in this namespace.  */
863   gfc_symtree *sym_root;
864   /* Tree containing all the user-defined operators in the namespace.  */
865   gfc_symtree *uop_root;
866   /* Tree containing all the common blocks.  */
867   gfc_symtree *common_root;
868
869   /* If set_flag[letter] is set, an implicit type has been set for letter.  */
870   int set_flag[GFC_LETTERS];
871   /* Keeps track of the implicit types associated with the letters.  */
872   gfc_typespec default_type[GFC_LETTERS];
873
874   /* If this is a namespace of a procedure, this points to the procedure.  */
875   struct gfc_symbol *proc_name;
876   /* If this is the namespace of a unit which contains executable
877      code, this points to it.  */
878   struct gfc_code *code;
879
880   /* Points to the equivalences set up in this namespace.  */
881   struct gfc_equiv *equiv;
882   gfc_interface *operator[GFC_INTRINSIC_OPS];
883
884   /* Points to the parent namespace, i.e. the namespace of a module or
885      procedure in which the procedure belonging to this namespace is
886      contained. The parent namespace points to this namespace either
887      directly via CONTAINED, or indirectly via the chain built by
888      SIBLING.  */
889   struct gfc_namespace *parent;
890   /* CONTAINED points to the first contained namespace. Sibling
891      namespaces are chained via SIBLING.  */
892   struct gfc_namespace  *contained, *sibling;
893
894   gfc_common_head blank_common;
895   gfc_access default_access, operator_access[GFC_INTRINSIC_OPS];
896
897   gfc_st_label *st_labels;
898   /* This list holds information about all the data initializers in
899      this namespace.  */
900   struct gfc_data *data;
901
902   gfc_charlen *cl_list;
903
904   int save_all, seen_save, seen_implicit_none;
905
906   /* Normally we don't need to refcount namespaces.  However when we read
907      a module containing a function with multiple entry points, this
908      will appear as several functions with the same formal namespace.  */
909   int refs;
910
911   /* A list of all alternate entry points to this procedure (or NULL).  */
912   gfc_entry_list *entries;
913
914   /* A list of all derived types in this procedure (or NULL).  */
915   gfc_dt_list *derived_types;
916
917   /* Set to 1 if namespace is a BLOCK DATA program unit.  */
918   int is_block_data;
919 }
920 gfc_namespace;
921
922 extern gfc_namespace *gfc_current_ns;
923
924 /* Global symbols are symbols of global scope. Currently we only use
925    this to detect collisions already when parsing.
926    TODO: Extend to verify procedure calls.  */
927
928 typedef struct gfc_gsymbol
929 {
930   BBT_HEADER(gfc_gsymbol);
931
932   const char *name;
933   enum { GSYM_UNKNOWN=1, GSYM_PROGRAM, GSYM_FUNCTION, GSYM_SUBROUTINE,
934         GSYM_MODULE, GSYM_COMMON, GSYM_BLOCK_DATA } type;
935
936   int defined, used;
937   locus where;
938 }
939 gfc_gsymbol;
940
941 extern gfc_gsymbol *gfc_gsym_root;
942
943 /* Information on interfaces being built.  */
944 typedef struct
945 {
946   interface_type type;
947   gfc_symbol *sym;
948   gfc_namespace *ns;
949   gfc_user_op *uop;
950   gfc_intrinsic_op op;
951 }
952 gfc_interface_info;
953
954 extern gfc_interface_info current_interface;
955
956
957 /* Array reference.  */
958 typedef struct gfc_array_ref
959 {
960   ar_type type;
961   int dimen;                    /* # of components in the reference */
962   locus where;
963   gfc_array_spec *as;
964
965   locus c_where[GFC_MAX_DIMENSIONS];    /* All expressions can be NULL */
966   struct gfc_expr *start[GFC_MAX_DIMENSIONS], *end[GFC_MAX_DIMENSIONS],
967     *stride[GFC_MAX_DIMENSIONS];
968
969   enum
970   { DIMEN_ELEMENT = 1, DIMEN_RANGE, DIMEN_VECTOR, DIMEN_UNKNOWN }
971   dimen_type[GFC_MAX_DIMENSIONS];
972
973   struct gfc_expr *offset;
974 }
975 gfc_array_ref;
976
977 #define gfc_get_array_ref() gfc_getmem(sizeof(gfc_array_ref))
978
979
980 /* Component reference nodes.  A variable is stored as an expression
981    node that points to the base symbol.  After that, a singly linked
982    list of component reference nodes gives the variable's complete
983    resolution.  The array_ref component may be present and comes
984    before the component component.  */
985
986 typedef enum
987   { REF_ARRAY, REF_COMPONENT, REF_SUBSTRING }
988 ref_type;
989
990 typedef struct gfc_ref
991 {
992   ref_type type;
993
994   union
995   {
996     struct gfc_array_ref ar;
997
998     struct
999     {
1000       gfc_component *component;
1001       gfc_symbol *sym;
1002     }
1003     c;
1004
1005     struct
1006     {
1007       struct gfc_expr *start, *end;     /* Substring */
1008       gfc_charlen *length;
1009     }
1010     ss;
1011
1012   }
1013   u;
1014
1015   struct gfc_ref *next;
1016 }
1017 gfc_ref;
1018
1019 #define gfc_get_ref() gfc_getmem(sizeof(gfc_ref))
1020
1021
1022 /* Structures representing intrinsic symbols and their arguments lists.  */
1023 typedef struct gfc_intrinsic_arg
1024 {
1025   char name[GFC_MAX_SYMBOL_LEN + 1];
1026
1027   gfc_typespec ts;
1028   int optional;
1029   gfc_actual_arglist *actual;
1030
1031   struct gfc_intrinsic_arg *next;
1032
1033 }
1034 gfc_intrinsic_arg;
1035
1036
1037 /* Specifies the various kinds of check functions used to verify the
1038    argument lists of intrinsic functions. fX with X an integer refer
1039    to check functions of intrinsics with X arguments. f1m is used for
1040    the MAX and MIN intrinsics which can have an arbitrary number of
1041    arguments, f3ml is used for the MINLOC and MAXLOC intrinsics as
1042    these have special semantics.  */
1043
1044 typedef union
1045 {
1046   try (*f0)(void);
1047   try (*f1)(struct gfc_expr *);
1048   try (*f1m)(gfc_actual_arglist *);
1049   try (*f2)(struct gfc_expr *, struct gfc_expr *);
1050   try (*f3)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *);
1051   try (*f3ml)(gfc_actual_arglist *);
1052   try (*f3red)(gfc_actual_arglist *);
1053   try (*f4)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1054             struct gfc_expr *);
1055   try (*f5)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1056             struct gfc_expr *, struct gfc_expr *);
1057 }
1058 gfc_check_f;
1059
1060 /* Like gfc_check_f, these specify the type of the simplification
1061    function associated with an intrinsic. The fX are just like in
1062    gfc_check_f. cc is used for type conversion functions.  */
1063
1064 typedef union
1065 {
1066   struct gfc_expr *(*f0)(void);
1067   struct gfc_expr *(*f1)(struct gfc_expr *);
1068   struct gfc_expr *(*f2)(struct gfc_expr *, struct gfc_expr *);
1069   struct gfc_expr *(*f3)(struct gfc_expr *, struct gfc_expr *,
1070                          struct gfc_expr *);
1071   struct gfc_expr *(*f4)(struct gfc_expr *, struct gfc_expr *,
1072                          struct gfc_expr *, struct gfc_expr *);
1073   struct gfc_expr *(*f5)(struct gfc_expr *, struct gfc_expr *,
1074                          struct gfc_expr *, struct gfc_expr *,
1075                          struct gfc_expr *);
1076   struct gfc_expr *(*cc)(struct gfc_expr *, bt, int);
1077 }
1078 gfc_simplify_f;
1079
1080 /* Again like gfc_check_f, these specify the type of the resolution
1081    function associated with an intrinsic. The fX are just like in
1082    gfc_check_f. f1m is used for MIN and MAX, s1 is used for abort().
1083    */
1084
1085 typedef union
1086 {
1087   void (*f0)(struct gfc_expr *);
1088   void (*f1)(struct gfc_expr *, struct gfc_expr *);
1089   void (*f1m)(struct gfc_expr *, struct gfc_actual_arglist *);
1090   void (*f2)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *);
1091   void (*f3)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1092              struct gfc_expr *);
1093   void (*f4)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1094              struct gfc_expr *, struct gfc_expr *);
1095   void (*f5)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1096              struct gfc_expr *, struct gfc_expr *, struct gfc_expr *);
1097   void (*s1)(struct gfc_code *);
1098 }
1099 gfc_resolve_f;
1100
1101
1102 typedef struct gfc_intrinsic_sym
1103 {
1104   const char *name, *lib_name;
1105   gfc_intrinsic_arg *formal;
1106   gfc_typespec ts;
1107   int elemental, pure, generic, specific, actual_ok, standard, noreturn;
1108
1109   gfc_simplify_f simplify;
1110   gfc_check_f check;
1111   gfc_resolve_f resolve;
1112   struct gfc_intrinsic_sym *specific_head, *next;
1113   gfc_generic_isym_id generic_id;
1114
1115 }
1116 gfc_intrinsic_sym;
1117
1118
1119 /* Expression nodes.  The expression node types deserve explanations,
1120    since the last couple can be easily misconstrued:
1121
1122    EXPR_OP         Operator node pointing to one or two other nodes
1123    EXPR_FUNCTION   Function call, symbol points to function's name
1124    EXPR_CONSTANT   A scalar constant: Logical, String, Real, Int or Complex
1125    EXPR_VARIABLE   An Lvalue with a root symbol and possible reference list
1126                    which expresses structure, array and substring refs.
1127    EXPR_NULL       The NULL pointer value (which also has a basic type).
1128    EXPR_SUBSTRING  A substring of a constant string
1129    EXPR_STRUCTURE  A structure constructor
1130    EXPR_ARRAY      An array constructor.  */
1131
1132 #include <gmp.h>
1133 #include <mpfr.h>
1134 #define GFC_RND_MODE GMP_RNDN
1135
1136 typedef struct gfc_expr
1137 {
1138   expr_t expr_type;
1139
1140   gfc_typespec ts;      /* These two refer to the overall expression */
1141
1142   int rank;
1143   mpz_t *shape;         /* Can be NULL if shape is unknown at compile time */
1144
1145   /* Nonnull for functions and structure constructors */
1146   gfc_symtree *symtree;
1147
1148   gfc_ref *ref;
1149
1150   locus where;
1151
1152   /* True if it is converted from Hollerith constant.  */
1153   unsigned int from_H : 1;
1154   /* True if the expression is a call to a function that returns an array,
1155      and if we have decided not to allocate temporary data for that array.  */
1156   unsigned int inline_noncopying_intrinsic : 1;
1157
1158   union
1159   {
1160     int logical;
1161     mpz_t integer;
1162
1163     mpfr_t real;
1164
1165     struct
1166     {
1167       mpfr_t r, i;
1168     }
1169     complex;
1170
1171     struct
1172     {
1173       gfc_intrinsic_op operator;
1174       gfc_user_op *uop;
1175       struct gfc_expr *op1, *op2;
1176     }
1177     op;
1178
1179     struct
1180     {
1181       gfc_actual_arglist *actual;
1182       const char *name; /* Points to the ultimate name of the function */
1183       gfc_intrinsic_sym *isym;
1184       gfc_symbol *esym;
1185     }
1186     function;
1187
1188     struct
1189     {
1190       int length;
1191       char *string;
1192     }
1193     character;
1194
1195     struct gfc_constructor *constructor;
1196   }
1197   value;
1198
1199 }
1200 gfc_expr;
1201
1202
1203 #define gfc_get_shape(rank) ((mpz_t *) gfc_getmem((rank)*sizeof(mpz_t)))
1204
1205 /* Structures for information associated with different kinds of
1206    numbers.  The first set of integer parameters define all there is
1207    to know about a particular kind.  The rest of the elements are
1208    computed from the first elements.  */
1209
1210 typedef struct
1211 {
1212   /* Values really representable by the target.  */
1213   mpz_t huge, pedantic_min_int, min_int, max_int;
1214
1215   int kind, radix, digits, bit_size, range;
1216
1217   /* True if the C type of the given name maps to this precision.
1218      Note that more than one bit can be set.  */
1219   unsigned int c_char : 1;
1220   unsigned int c_short : 1;
1221   unsigned int c_int : 1;
1222   unsigned int c_long : 1;
1223   unsigned int c_long_long : 1;
1224 }
1225 gfc_integer_info;
1226
1227 extern gfc_integer_info gfc_integer_kinds[];
1228
1229
1230 typedef struct
1231 {
1232   int kind, bit_size;
1233
1234   /* True if the C++ type bool, C99 type _Bool, maps to this precision.  */
1235   unsigned int c_bool : 1;
1236 }
1237 gfc_logical_info;
1238
1239 extern gfc_logical_info gfc_logical_kinds[];
1240
1241
1242 typedef struct
1243 {
1244   mpfr_t epsilon, huge, tiny, subnormal;
1245   int kind, radix, digits, min_exponent, max_exponent;
1246   int range, precision;
1247
1248   /* The precision of the type as reported by GET_MODE_PRECISION.  */
1249   int mode_precision;
1250
1251   /* True if the C type of the given name maps to this precision.
1252      Note that more than one bit can be set.  */
1253   unsigned int c_float : 1;
1254   unsigned int c_double : 1;
1255   unsigned int c_long_double : 1;
1256 }
1257 gfc_real_info;
1258
1259 extern gfc_real_info gfc_real_kinds[];
1260
1261
1262 /* Equivalence structures.  Equivalent lvalues are linked along the
1263    *eq pointer, equivalence sets are strung along the *next node.  */
1264 typedef struct gfc_equiv
1265 {
1266   struct gfc_equiv *next, *eq;
1267   gfc_expr *expr;
1268   const char *module;
1269   int used;
1270 }
1271 gfc_equiv;
1272
1273 #define gfc_get_equiv() gfc_getmem(sizeof(gfc_equiv))
1274
1275
1276 /* gfc_case stores the selector list of a case statement.  The *low
1277    and *high pointers can point to the same expression in the case of
1278    a single value.  If *high is NULL, the selection is from *low
1279    upwards, if *low is NULL the selection is *high downwards.
1280
1281    This structure has separate fields to allow single and double linked
1282    lists of CASEs at the same time.  The singe linked list along the NEXT
1283    field is a list of cases for a single CASE label.  The double linked
1284    list along the LEFT/RIGHT fields is used to detect overlap and to
1285    build a table of the cases for SELECT constructs with a CHARACTER
1286    case expression.  */
1287
1288 typedef struct gfc_case
1289 {
1290   /* Where we saw this case.  */
1291   locus where;
1292   int n;
1293
1294   /* Case range values.  If (low == high), it's a single value.  If one of
1295      the labels is NULL, it's an unbounded case.  If both are NULL, this
1296      represents the default case.  */
1297   gfc_expr *low, *high;
1298
1299   /* Next case label in the list of cases for a single CASE label.  */
1300   struct gfc_case *next;
1301
1302   /* Used for detecting overlap, and for code generation.  */
1303   struct gfc_case *left, *right;
1304
1305   /* True if this case label can never be matched.  */
1306   int unreachable;
1307 }
1308 gfc_case;
1309
1310 #define gfc_get_case() gfc_getmem(sizeof(gfc_case))
1311
1312
1313 typedef struct
1314 {
1315   gfc_expr *var, *start, *end, *step;
1316 }
1317 gfc_iterator;
1318
1319 #define gfc_get_iterator() gfc_getmem(sizeof(gfc_iterator))
1320
1321
1322 /* Allocation structure for ALLOCATE, DEALLOCATE and NULLIFY statements.  */
1323
1324 typedef struct gfc_alloc
1325 {
1326   gfc_expr *expr;
1327   struct gfc_alloc *next;
1328 }
1329 gfc_alloc;
1330
1331 #define gfc_get_alloc() gfc_getmem(sizeof(gfc_alloc))
1332
1333
1334 typedef struct
1335 {
1336   gfc_expr *unit, *file, *status, *access, *form, *recl,
1337     *blank, *position, *action, *delim, *pad, *iostat, *iomsg, *convert;
1338   gfc_st_label *err;
1339 }
1340 gfc_open;
1341
1342
1343 typedef struct
1344 {
1345   gfc_expr *unit, *status, *iostat, *iomsg;
1346   gfc_st_label *err;
1347 }
1348 gfc_close;
1349
1350
1351 typedef struct
1352 {
1353   gfc_expr *unit, *iostat, *iomsg;
1354   gfc_st_label *err;
1355 }
1356 gfc_filepos;
1357
1358
1359 typedef struct
1360 {
1361   gfc_expr *unit, *file, *iostat, *exist, *opened, *number, *named,
1362     *name, *access, *sequential, *direct, *form, *formatted,
1363     *unformatted, *recl, *nextrec, *blank, *position, *action, *read,
1364     *write, *readwrite, *delim, *pad, *iolength, *iomsg, *convert;
1365
1366   gfc_st_label *err;
1367
1368 }
1369 gfc_inquire;
1370
1371
1372 typedef struct
1373 {
1374   gfc_expr *io_unit, *format_expr, *rec, *advance, *iostat, *size, *iomsg;
1375
1376   gfc_symbol *namelist;
1377   /* A format_label of `format_asterisk' indicates the "*" format */
1378   gfc_st_label *format_label;
1379   gfc_st_label *err, *end, *eor;
1380
1381   locus eor_where, end_where, err_where;
1382 }
1383 gfc_dt;
1384
1385
1386 typedef struct gfc_forall_iterator
1387 {
1388   gfc_expr *var, *start, *end, *stride;
1389   struct gfc_forall_iterator *next;
1390 }
1391 gfc_forall_iterator;
1392
1393
1394 /* Executable statements that fill gfc_code structures.  */
1395 typedef enum
1396 {
1397   EXEC_NOP = 1, EXEC_ASSIGN, EXEC_LABEL_ASSIGN, EXEC_POINTER_ASSIGN,
1398   EXEC_GOTO, EXEC_CALL, EXEC_RETURN, EXEC_ENTRY,
1399   EXEC_PAUSE, EXEC_STOP, EXEC_CONTINUE,
1400   EXEC_IF, EXEC_ARITHMETIC_IF, EXEC_DO, EXEC_DO_WHILE, EXEC_SELECT,
1401   EXEC_FORALL, EXEC_WHERE, EXEC_CYCLE, EXEC_EXIT,
1402   EXEC_ALLOCATE, EXEC_DEALLOCATE,
1403   EXEC_OPEN, EXEC_CLOSE,
1404   EXEC_READ, EXEC_WRITE, EXEC_IOLENGTH, EXEC_TRANSFER, EXEC_DT_END,
1405   EXEC_BACKSPACE, EXEC_ENDFILE, EXEC_INQUIRE, EXEC_REWIND, EXEC_FLUSH
1406 }
1407 gfc_exec_op;
1408
1409 typedef struct gfc_code
1410 {
1411   gfc_exec_op op;
1412
1413   struct gfc_code *block, *next;
1414   locus loc;
1415
1416   gfc_st_label *here, *label, *label2, *label3;
1417   gfc_symtree *symtree;
1418   gfc_expr *expr, *expr2;
1419   /* A name isn't sufficient to identify a subroutine, we need the actual
1420      symbol for the interface definition.
1421   const char *sub_name;  */
1422   gfc_symbol *resolved_sym;
1423
1424   union
1425   {
1426     gfc_actual_arglist *actual;
1427     gfc_case *case_list;
1428     gfc_iterator *iterator;
1429     gfc_alloc *alloc_list;
1430     gfc_open *open;
1431     gfc_close *close;
1432     gfc_filepos *filepos;
1433     gfc_inquire *inquire;
1434     gfc_dt *dt;
1435     gfc_forall_iterator *forall_iterator;
1436     struct gfc_code *whichloop;
1437     int stop_code;
1438     gfc_entry_list *entry;
1439   }
1440   ext;          /* Points to additional structures required by statement */
1441
1442   /* Backend_decl is used for cycle and break labels in do loops, and
1443      probably for other constructs as well, once we translate them.  */
1444   tree backend_decl;
1445 }
1446 gfc_code;
1447
1448
1449 /* Storage for DATA statements.  */
1450 typedef struct gfc_data_variable
1451 {
1452   gfc_expr *expr;
1453   gfc_iterator iter;
1454   struct gfc_data_variable *list, *next;
1455 }
1456 gfc_data_variable;
1457
1458
1459 typedef struct gfc_data_value
1460 {
1461   unsigned int repeat;
1462   gfc_expr *expr;
1463   struct gfc_data_value *next;
1464 }
1465 gfc_data_value;
1466
1467
1468 typedef struct gfc_data
1469 {
1470   gfc_data_variable *var;
1471   gfc_data_value *value;
1472   locus where;
1473
1474   struct gfc_data *next;
1475 }
1476 gfc_data;
1477
1478 #define gfc_get_data_variable() gfc_getmem(sizeof(gfc_data_variable))
1479 #define gfc_get_data_value() gfc_getmem(sizeof(gfc_data_value))
1480 #define gfc_get_data() gfc_getmem(sizeof(gfc_data))
1481
1482
1483 /* Structure for holding compile options */
1484 typedef struct
1485 {
1486   char *module_dir;
1487   gfc_source_form source_form;
1488   /* When fixed_line_length or free_line_length are 0, the whole line is used.
1489
1490      Default is -1, the maximum line length mandated by the respective source
1491      form is used:
1492      for FORM_FREE GFC_MAX_LINE (132)
1493      else 72.
1494
1495      If fixed_line_length or free_line_length is not 0 nor -1 then the user has
1496      requested a specific line-length.
1497
1498      If the user requests a fixed_line_length <7 then gfc_init_options()
1499      emits a fatal error.  */
1500   int fixed_line_length; /* maximum line length in fixed-form.  */
1501   int free_line_length; /* maximum line length in free-form.  */
1502   int max_identifier_length;
1503   int verbose;
1504
1505   int warn_aliasing;
1506   int warn_conversion;
1507   int warn_implicit_interface;
1508   int warn_line_truncation;
1509   int warn_underflow;
1510   int warn_surprising;
1511   int warn_unused_labels;
1512
1513   int flag_default_double;
1514   int flag_default_integer;
1515   int flag_default_real;
1516   int flag_dollar_ok;
1517   int flag_underscoring;
1518   int flag_second_underscore;
1519   int flag_implicit_none;
1520   int flag_max_stack_var_size;
1521   int flag_module_access_private;
1522   int flag_no_backend;
1523   int flag_pack_derived;
1524   int flag_repack_arrays;
1525   int flag_preprocessed;
1526   int flag_f2c;
1527   int flag_automatic;
1528   int flag_backslash;
1529   int flag_cray_pointer;
1530   int flag_d_lines;
1531
1532   int q_kind;
1533
1534   int fpe;
1535
1536   int warn_std;
1537   int allow_std;
1538   int warn_nonstd_intrinsics;
1539   int fshort_enums;
1540   int convert;
1541 }
1542 gfc_option_t;
1543
1544 extern gfc_option_t gfc_option;
1545
1546
1547 /* Constructor nodes for array and structure constructors.  */
1548 typedef struct gfc_constructor
1549 {
1550   gfc_expr *expr;
1551   gfc_iterator *iterator;
1552   locus where;
1553   struct gfc_constructor *next;
1554   struct
1555   {
1556     mpz_t offset; /* Record the offset of array element which appears in
1557                      data statement like "data a(5)/4/".  */
1558     gfc_component *component; /* Record the component being initialized.  */
1559   }
1560   n;
1561   mpz_t repeat; /* Record the repeat number of initial values in data
1562                  statement like "data a/5*10/".  */
1563 }
1564 gfc_constructor;
1565
1566
1567 typedef struct iterator_stack
1568 {
1569   gfc_symtree *variable;
1570   mpz_t value;
1571   struct iterator_stack *prev;
1572 }
1573 iterator_stack;
1574 extern iterator_stack *iter_stack;
1575
1576 /************************ Function prototypes *************************/
1577
1578 /* data.c  */
1579 void gfc_formalize_init_value (gfc_symbol *);
1580 void gfc_get_section_index (gfc_array_ref *, mpz_t *, mpz_t *);
1581 void gfc_assign_data_value (gfc_expr *, gfc_expr *, mpz_t);
1582 void gfc_assign_data_value_range (gfc_expr *, gfc_expr *, mpz_t, mpz_t);
1583 void gfc_advance_section (mpz_t *, gfc_array_ref *, mpz_t *);
1584
1585 /* scanner.c */
1586 void gfc_scanner_done_1 (void);
1587 void gfc_scanner_init_1 (void);
1588
1589 void gfc_add_include_path (const char *);
1590 void gfc_release_include_path (void);
1591 FILE *gfc_open_included_file (const char *, bool);
1592
1593 int gfc_at_end (void);
1594 int gfc_at_eof (void);
1595 int gfc_at_bol (void);
1596 int gfc_at_eol (void);
1597 void gfc_advance_line (void);
1598 int gfc_check_include (void);
1599
1600 void gfc_skip_comments (void);
1601 int gfc_next_char_literal (int);
1602 int gfc_next_char (void);
1603 int gfc_peek_char (void);
1604 void gfc_error_recovery (void);
1605 void gfc_gobble_whitespace (void);
1606 try gfc_new_file (void);
1607 const char * gfc_read_orig_filename (const char *, const char **);
1608
1609 extern gfc_source_form gfc_current_form;
1610 extern const char *gfc_source_file;
1611 extern locus gfc_current_locus;
1612
1613 /* misc.c */
1614 void *gfc_getmem (size_t) ATTRIBUTE_MALLOC;
1615 void gfc_free (void *);
1616 int gfc_terminal_width(void);
1617 void gfc_clear_ts (gfc_typespec *);
1618 FILE *gfc_open_file (const char *);
1619 const char *gfc_basic_typename (bt);
1620 const char *gfc_typename (gfc_typespec *);
1621
1622 #define gfc_op2string(OP) (OP == INTRINSIC_ASSIGN ? \
1623                            "=" : gfc_code2string (intrinsic_operators, OP))
1624
1625 const char *gfc_code2string (const mstring *, int);
1626 int gfc_string2code (const mstring *, const char *);
1627 const char *gfc_intent_string (sym_intent);
1628
1629 void gfc_init_1 (void);
1630 void gfc_init_2 (void);
1631 void gfc_done_1 (void);
1632 void gfc_done_2 (void);
1633
1634 /* options.c */
1635 unsigned int gfc_init_options (unsigned int, const char **);
1636 int gfc_handle_option (size_t, const char *, int);
1637 bool gfc_post_options (const char **);
1638
1639 /* iresolve.c */
1640 const char * gfc_get_string (const char *, ...) ATTRIBUTE_PRINTF_1;
1641
1642 /* error.c */
1643
1644 typedef struct gfc_error_buf
1645 {
1646   int flag;
1647   size_t allocated, index;
1648   char *message;
1649 } gfc_error_buf;
1650
1651 void gfc_error_init_1 (void);
1652 void gfc_buffer_error (int);
1653
1654 void gfc_warning (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
1655 void gfc_warning_now (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
1656 void gfc_clear_warning (void);
1657 void gfc_warning_check (void);
1658
1659 void gfc_error (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
1660 void gfc_error_now (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
1661 void gfc_fatal_error (const char *, ...) ATTRIBUTE_NORETURN ATTRIBUTE_GCC_GFC(1,2);
1662 void gfc_internal_error (const char *, ...) ATTRIBUTE_NORETURN ATTRIBUTE_GCC_GFC(1,2);
1663 void gfc_clear_error (void);
1664 int gfc_error_check (void);
1665
1666 try gfc_notify_std (int, const char *, ...) ATTRIBUTE_GCC_GFC(2,3);
1667
1668 /* A general purpose syntax error.  */
1669 #define gfc_syntax_error(ST)    \
1670   gfc_error ("Syntax error in %s statement at %C", gfc_ascii_statement (ST));
1671
1672 void gfc_push_error (gfc_error_buf *);
1673 void gfc_pop_error (gfc_error_buf *);
1674 void gfc_free_error (gfc_error_buf *);
1675
1676 void gfc_status (const char *, ...) ATTRIBUTE_PRINTF_1;
1677 void gfc_status_char (char);
1678
1679 void gfc_get_errors (int *, int *);
1680
1681 /* arith.c */
1682 void gfc_arith_init_1 (void);
1683 void gfc_arith_done_1 (void);
1684 gfc_expr *gfc_enum_initializer (gfc_expr *, locus);
1685 arith gfc_check_integer_range (mpz_t p, int kind);
1686
1687 /* trans-types.c */
1688 int gfc_validate_kind (bt, int, bool);
1689 extern int gfc_index_integer_kind;
1690 extern int gfc_default_integer_kind;
1691 extern int gfc_max_integer_kind;
1692 extern int gfc_default_real_kind;
1693 extern int gfc_default_double_kind;
1694 extern int gfc_default_character_kind;
1695 extern int gfc_default_logical_kind;
1696 extern int gfc_default_complex_kind;
1697 extern int gfc_c_int_kind;
1698
1699 /* symbol.c */
1700 void gfc_clear_new_implicit (void);
1701 try gfc_add_new_implicit_range (int, int);
1702 try gfc_merge_new_implicit (gfc_typespec *);
1703 void gfc_set_implicit_none (void);
1704
1705 gfc_typespec *gfc_get_default_type (gfc_symbol *, gfc_namespace *);
1706 try gfc_set_default_type (gfc_symbol *, int, gfc_namespace *);
1707
1708 void gfc_set_component_attr (gfc_component *, symbol_attribute *);
1709 void gfc_get_component_attr (symbol_attribute *, gfc_component *);
1710
1711 void gfc_set_sym_referenced (gfc_symbol * sym);
1712
1713 try gfc_add_attribute (symbol_attribute *, locus *, uint);
1714 try gfc_add_allocatable (symbol_attribute *, locus *);
1715 try gfc_add_dimension (symbol_attribute *, const char *, locus *);
1716 try gfc_add_external (symbol_attribute *, locus *);
1717 try gfc_add_intrinsic (symbol_attribute *, locus *);
1718 try gfc_add_optional (symbol_attribute *, locus *);
1719 try gfc_add_pointer (symbol_attribute *, locus *);
1720 try gfc_add_cray_pointer (symbol_attribute *, locus *);
1721 try gfc_add_cray_pointee (symbol_attribute *, locus *);
1722 try gfc_mod_pointee_as (gfc_array_spec *as);
1723 try gfc_add_result (symbol_attribute *, const char *, locus *);
1724 try gfc_add_save (symbol_attribute *, const char *, locus *);
1725 try gfc_add_saved_common (symbol_attribute *, locus *);
1726 try gfc_add_target (symbol_attribute *, locus *);
1727 try gfc_add_dummy (symbol_attribute *, const char *, locus *);
1728 try gfc_add_generic (symbol_attribute *, const char *, locus *);
1729 try gfc_add_common (symbol_attribute *, locus *);
1730 try gfc_add_in_common (symbol_attribute *, const char *, locus *);
1731 try gfc_add_in_equivalence (symbol_attribute *, const char *, locus *);
1732 try gfc_add_data (symbol_attribute *, const char *, locus *);
1733 try gfc_add_in_namelist (symbol_attribute *, const char *, locus *);
1734 try gfc_add_sequence (symbol_attribute *, const char *, locus *);
1735 try gfc_add_elemental (symbol_attribute *, locus *);
1736 try gfc_add_pure (symbol_attribute *, locus *);
1737 try gfc_add_recursive (symbol_attribute *, locus *);
1738 try gfc_add_function (symbol_attribute *, const char *, locus *);
1739 try gfc_add_subroutine (symbol_attribute *, const char *, locus *);
1740
1741 try gfc_add_access (symbol_attribute *, gfc_access, const char *, locus *);
1742 try gfc_add_flavor (symbol_attribute *, sym_flavor, const char *, locus *);
1743 try gfc_add_entry (symbol_attribute *, const char *, locus *);
1744 try gfc_add_procedure (symbol_attribute *, procedure_type,
1745                        const char *, locus *);
1746 try gfc_add_intent (symbol_attribute *, sym_intent, locus *);
1747 try gfc_add_explicit_interface (gfc_symbol *, ifsrc,
1748                                 gfc_formal_arglist *, locus *);
1749 try gfc_add_type (gfc_symbol *, gfc_typespec *, locus *);
1750
1751 void gfc_clear_attr (symbol_attribute *);
1752 try gfc_missing_attr (symbol_attribute *, locus *);
1753 try gfc_copy_attr (symbol_attribute *, symbol_attribute *, locus *);
1754
1755 try gfc_add_component (gfc_symbol *, const char *, gfc_component **);
1756 gfc_symbol *gfc_use_derived (gfc_symbol *);
1757 gfc_symtree *gfc_use_derived_tree (gfc_symtree *);
1758 gfc_component *gfc_find_component (gfc_symbol *, const char *);
1759
1760 gfc_st_label *gfc_get_st_label (int);
1761 void gfc_free_st_label (gfc_st_label *);
1762 void gfc_define_st_label (gfc_st_label *, gfc_sl_type, locus *);
1763 try gfc_reference_st_label (gfc_st_label *, gfc_sl_type);
1764
1765 gfc_namespace *gfc_get_namespace (gfc_namespace *, int);
1766 gfc_symtree *gfc_new_symtree (gfc_symtree **, const char *);
1767 gfc_symtree *gfc_find_symtree (gfc_symtree *, const char *);
1768 gfc_user_op *gfc_get_uop (const char *);
1769 gfc_user_op *gfc_find_uop (const char *, gfc_namespace *);
1770 void gfc_free_symbol (gfc_symbol *);
1771 gfc_symbol *gfc_new_symbol (const char *, gfc_namespace *);
1772 int gfc_find_symbol (const char *, gfc_namespace *, int, gfc_symbol **);
1773 int gfc_find_sym_tree (const char *, gfc_namespace *, int, gfc_symtree **);
1774 int gfc_get_symbol (const char *, gfc_namespace *, gfc_symbol **);
1775 int gfc_get_sym_tree (const char *, gfc_namespace *, gfc_symtree **);
1776 int gfc_get_ha_symbol (const char *, gfc_symbol **);
1777 int gfc_get_ha_sym_tree (const char *, gfc_symtree **);
1778
1779 int gfc_symbols_could_alias (gfc_symbol *, gfc_symbol *);
1780
1781 void gfc_undo_symbols (void);
1782 void gfc_commit_symbols (void);
1783 void gfc_commit_symbol (gfc_symbol * sym);
1784 void gfc_free_namespace (gfc_namespace *);
1785
1786 void gfc_symbol_init_2 (void);
1787 void gfc_symbol_done_2 (void);
1788
1789 void gfc_traverse_symtree (gfc_symtree *, void (*)(gfc_symtree *));
1790 void gfc_traverse_ns (gfc_namespace *, void (*)(gfc_symbol *));
1791 void gfc_traverse_user_op (gfc_namespace *, void (*)(gfc_user_op *));
1792 void gfc_save_all (gfc_namespace *);
1793
1794 void gfc_symbol_state (void);
1795
1796 gfc_gsymbol *gfc_get_gsymbol (const char *);
1797 gfc_gsymbol *gfc_find_gsymbol (gfc_gsymbol *, const char *);
1798
1799 /* intrinsic.c */
1800 extern int gfc_init_expr;
1801
1802 /* Given a symbol that we have decided is intrinsic, mark it as such
1803    by placing it into a special module that is otherwise impossible to
1804    read or write.  */
1805
1806 #define gfc_intrinsic_symbol(SYM) SYM->module = gfc_get_string ("(intrinsic)")
1807
1808 void gfc_intrinsic_init_1 (void);
1809 void gfc_intrinsic_done_1 (void);
1810
1811 char gfc_type_letter (bt);
1812 gfc_symbol * gfc_get_intrinsic_sub_symbol (const char *);
1813 try gfc_convert_type (gfc_expr *, gfc_typespec *, int);
1814 try gfc_convert_type_warn (gfc_expr *, gfc_typespec *, int, int);
1815 int gfc_generic_intrinsic (const char *);
1816 int gfc_specific_intrinsic (const char *);
1817 int gfc_intrinsic_name (const char *, int);
1818 gfc_intrinsic_sym *gfc_find_function (const char *);
1819
1820 match gfc_intrinsic_func_interface (gfc_expr *, int);
1821 match gfc_intrinsic_sub_interface (gfc_code *, int);
1822
1823 /* simplify.c */
1824 void gfc_simplify_init_1 (void);
1825
1826 /* match.c -- FIXME */
1827 void gfc_free_iterator (gfc_iterator *, int);
1828 void gfc_free_forall_iterator (gfc_forall_iterator *);
1829 void gfc_free_alloc_list (gfc_alloc *);
1830 void gfc_free_namelist (gfc_namelist *);
1831 void gfc_free_equiv (gfc_equiv *);
1832 void gfc_free_data (gfc_data *);
1833 void gfc_free_case_list (gfc_case *);
1834
1835 /* expr.c */
1836 void gfc_free_actual_arglist (gfc_actual_arglist *);
1837 gfc_actual_arglist *gfc_copy_actual_arglist (gfc_actual_arglist *);
1838 const char *gfc_extract_int (gfc_expr *, int *);
1839
1840 gfc_expr *gfc_build_conversion (gfc_expr *);
1841 void gfc_free_ref_list (gfc_ref *);
1842 void gfc_type_convert_binary (gfc_expr *);
1843 int gfc_is_constant_expr (gfc_expr *);
1844 try gfc_simplify_expr (gfc_expr *, int);
1845 int gfc_has_vector_index (gfc_expr *);
1846
1847 gfc_expr *gfc_get_expr (void);
1848 void gfc_free_expr (gfc_expr *);
1849 void gfc_replace_expr (gfc_expr *, gfc_expr *);
1850 gfc_expr *gfc_int_expr (int);
1851 gfc_expr *gfc_logical_expr (int, locus *);
1852 mpz_t *gfc_copy_shape (mpz_t *, int);
1853 mpz_t *gfc_copy_shape_excluding (mpz_t *, int, gfc_expr *);
1854 gfc_expr *gfc_copy_expr (gfc_expr *);
1855
1856 try gfc_specification_expr (gfc_expr *);
1857
1858 int gfc_numeric_ts (gfc_typespec *);
1859 int gfc_kind_max (gfc_expr *, gfc_expr *);
1860
1861 try gfc_check_conformance (const char *, gfc_expr *, gfc_expr *);
1862 try gfc_check_assign (gfc_expr *, gfc_expr *, int);
1863 try gfc_check_pointer_assign (gfc_expr *, gfc_expr *);
1864 try gfc_check_assign_symbol (gfc_symbol *, gfc_expr *);
1865
1866 gfc_expr *gfc_default_initializer (gfc_typespec *);
1867 gfc_expr *gfc_get_variable_expr (gfc_symtree *);
1868
1869 void gfc_expr_set_symbols_referenced (gfc_expr * expr);
1870
1871 /* st.c */
1872 extern gfc_code new_st;
1873
1874 void gfc_clear_new_st (void);
1875 gfc_code *gfc_get_code (void);
1876 gfc_code *gfc_append_code (gfc_code *, gfc_code *);
1877 void gfc_free_statement (gfc_code *);
1878 void gfc_free_statements (gfc_code *);
1879
1880 /* resolve.c */
1881 try gfc_resolve_expr (gfc_expr *);
1882 void gfc_resolve (gfc_namespace *);
1883 int gfc_impure_variable (gfc_symbol *);
1884 int gfc_pure (gfc_symbol *);
1885 int gfc_elemental (gfc_symbol *);
1886 try gfc_resolve_iterator (gfc_iterator *, bool);
1887 try gfc_resolve_index (gfc_expr *, int);
1888 try gfc_resolve_dim_arg (gfc_expr *);
1889 int gfc_is_formal_arg (void);
1890
1891 /* array.c */
1892 void gfc_free_array_spec (gfc_array_spec *);
1893 gfc_array_ref *gfc_copy_array_ref (gfc_array_ref *);
1894
1895 try gfc_set_array_spec (gfc_symbol *, gfc_array_spec *, locus *);
1896 gfc_array_spec *gfc_copy_array_spec (gfc_array_spec *);
1897 try gfc_resolve_array_spec (gfc_array_spec *, int);
1898
1899 int gfc_compare_array_spec (gfc_array_spec *, gfc_array_spec *);
1900
1901 gfc_expr *gfc_start_constructor (bt, int, locus *);
1902 void gfc_append_constructor (gfc_expr *, gfc_expr *);
1903 void gfc_free_constructor (gfc_constructor *);
1904 void gfc_simplify_iterator_var (gfc_expr *);
1905 try gfc_expand_constructor (gfc_expr *);
1906 int gfc_constant_ac (gfc_expr *);
1907 int gfc_expanded_ac (gfc_expr *);
1908 try gfc_resolve_array_constructor (gfc_expr *);
1909 try gfc_check_constructor_type (gfc_expr *);
1910 try gfc_check_iter_variable (gfc_expr *);
1911 try gfc_check_constructor (gfc_expr *, try (*)(gfc_expr *));
1912 gfc_constructor *gfc_copy_constructor (gfc_constructor * src);
1913 gfc_expr *gfc_get_array_element (gfc_expr *, int);
1914 try gfc_array_size (gfc_expr *, mpz_t *);
1915 try gfc_array_dimen_size (gfc_expr *, int, mpz_t *);
1916 try gfc_array_ref_shape (gfc_array_ref *, mpz_t *);
1917 gfc_array_ref *gfc_find_array_ref (gfc_expr *);
1918 void gfc_insert_constructor (gfc_expr *, gfc_constructor *);
1919 gfc_constructor *gfc_get_constructor (void);
1920 tree gfc_conv_array_initializer (tree type, gfc_expr * expr);
1921 try spec_size (gfc_array_spec *, mpz_t *);
1922 int gfc_is_compile_time_shape (gfc_array_spec *);
1923
1924 /* interface.c -- FIXME: some of these should be in symbol.c */
1925 void gfc_free_interface (gfc_interface *);
1926 int gfc_compare_derived_types (gfc_symbol *, gfc_symbol *);
1927 int gfc_compare_types (gfc_typespec *, gfc_typespec *);
1928 void gfc_check_interfaces (gfc_namespace *);
1929 void gfc_procedure_use (gfc_symbol *, gfc_actual_arglist **, locus *);
1930 gfc_symbol *gfc_search_interface (gfc_interface *, int,
1931                                   gfc_actual_arglist **);
1932 try gfc_extend_expr (gfc_expr *);
1933 void gfc_free_formal_arglist (gfc_formal_arglist *);
1934 try gfc_extend_assign (gfc_code *, gfc_namespace *);
1935 try gfc_add_interface (gfc_symbol * sym);
1936
1937 /* io.c */
1938 extern gfc_st_label format_asterisk;
1939
1940 void gfc_free_open (gfc_open *);
1941 try gfc_resolve_open (gfc_open *);
1942 void gfc_free_close (gfc_close *);
1943 try gfc_resolve_close (gfc_close *);
1944 void gfc_free_filepos (gfc_filepos *);
1945 try gfc_resolve_filepos (gfc_filepos *);
1946 void gfc_free_inquire (gfc_inquire *);
1947 try gfc_resolve_inquire (gfc_inquire *);
1948 void gfc_free_dt (gfc_dt *);
1949 try gfc_resolve_dt (gfc_dt *);
1950
1951 /* module.c */
1952 void gfc_module_init_2 (void);
1953 void gfc_module_done_2 (void);
1954 void gfc_dump_module (const char *, int);
1955 bool gfc_check_access (gfc_access, gfc_access);
1956
1957 /* primary.c */
1958 symbol_attribute gfc_variable_attr (gfc_expr *, gfc_typespec *);
1959 symbol_attribute gfc_expr_attr (gfc_expr *);
1960
1961 /* trans.c */
1962 void gfc_generate_code (gfc_namespace *);
1963 void gfc_generate_module_code (gfc_namespace *);
1964
1965 /* bbt.c */
1966 typedef int (*compare_fn) (void *, void *);
1967 void gfc_insert_bbt (void *, void *, compare_fn);
1968 void gfc_delete_bbt (void *, void *, compare_fn);
1969
1970 /* dump-parse-tree.c */
1971 void gfc_show_namespace (gfc_namespace *);
1972
1973 /* parse.c */
1974 try gfc_parse_file (void);
1975 void global_used (gfc_gsymbol *, locus *);
1976
1977 /* dependency.c */
1978 int gfc_dep_compare_expr (gfc_expr *, gfc_expr *);
1979
1980 #endif /* GCC_GFORTRAN_H  */