2006-06-07 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / fortran / gfortran.h
blob6cfd93498fff148bdf6b39a7e92e571f3064aa19
1 /* gfortran header file
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006
3 Free Software Foundation, Inc.
4 Contributed by Andy Vaught
6 This file is part of GCC.
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.
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.
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. */
23 #ifndef GCC_GFORTRAN_H
24 #define GCC_GFORTRAN_H
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. */
32 #include "system.h"
33 #include "intl.h"
34 #include "coretypes.h"
35 #include "input.h"
37 /* The following ifdefs are recommended by the autoconf documentation
38 for any code using alloca. */
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__ */
56 /* Major control parameters. */
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. */
63 #define free(x) Use_gfc_free_instead_of_free()
64 #define gfc_is_whitespace(c) ((c==' ') || (c=='\t'))
66 #ifndef NULL
67 #define NULL ((void *) 0)
68 #endif
70 /* Stringization. */
71 #define stringize(x) expand_macro(x)
72 #define expand_macro(x) # x
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
81 #define BLANK_COMMON_NAME "__BLNK__"
83 /* Macro to initialize an mstring structure. */
84 #define minit(s, t) { s, NULL, t }
86 /* Structure for storing strings to be matched by gfc_match_string. */
87 typedef struct
89 const char *string;
90 const char *mp;
91 int tag;
93 mstring;
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. */
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)
114 /* Keep this in sync with libgfortran/io/io.h ! */
116 typedef enum
117 { CONVERT_NATIVE=0, CONVERT_SWAP, CONVERT_BIG, CONVERT_LITTLE }
118 options_convert;
121 /*************************** Enums *****************************/
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. */
128 typedef enum
129 { SUCCESS = 1, FAILURE }
130 try;
132 /* This is returned by gfc_notification_std to know if, given the flags
133 that were given (-std=, -pedantic) we should issue an error, a warning
134 or nothing. */
136 typedef enum
137 { SILENT, WARNING, ERROR }
138 notification;
140 /* Matchers return one of these three values. The difference between
141 MATCH_NO and MATCH_ERROR is that MATCH_ERROR means that a match was
142 successful, but that something non-syntactic is wrong and an error
143 has already been issued. */
145 typedef enum
146 { MATCH_NO = 1, MATCH_YES, MATCH_ERROR }
147 match;
149 typedef enum
150 { FORM_FREE, FORM_FIXED, FORM_UNKNOWN }
151 gfc_source_form;
153 typedef enum
154 { BT_UNKNOWN = 1, BT_INTEGER, BT_REAL, BT_COMPLEX,
155 BT_LOGICAL, BT_CHARACTER, BT_DERIVED, BT_PROCEDURE, BT_HOLLERITH
159 /* Expression node types. */
160 typedef enum
161 { EXPR_OP = 1, EXPR_FUNCTION, EXPR_CONSTANT, EXPR_VARIABLE,
162 EXPR_SUBSTRING, EXPR_STRUCTURE, EXPR_ARRAY, EXPR_NULL
164 expr_t;
166 /* Array types. */
167 typedef enum
168 { AS_EXPLICIT = 1, AS_ASSUMED_SHAPE, AS_DEFERRED,
169 AS_ASSUMED_SIZE, AS_UNKNOWN
171 array_type;
173 typedef enum
174 { AR_FULL = 1, AR_ELEMENT, AR_SECTION, AR_UNKNOWN }
175 ar_type;
177 /* Statement label types. */
178 typedef enum
179 { ST_LABEL_UNKNOWN = 1, ST_LABEL_TARGET,
180 ST_LABEL_BAD_TARGET, ST_LABEL_FORMAT
182 gfc_sl_type;
184 /* Intrinsic operators. */
185 typedef enum
186 { GFC_INTRINSIC_BEGIN = 0,
187 INTRINSIC_NONE = -1, INTRINSIC_UPLUS = GFC_INTRINSIC_BEGIN,
188 INTRINSIC_UMINUS, INTRINSIC_PLUS, INTRINSIC_MINUS, INTRINSIC_TIMES,
189 INTRINSIC_DIVIDE, INTRINSIC_POWER, INTRINSIC_CONCAT,
190 INTRINSIC_AND, INTRINSIC_OR, INTRINSIC_EQV, INTRINSIC_NEQV,
191 INTRINSIC_EQ, INTRINSIC_NE, INTRINSIC_GT, INTRINSIC_GE,
192 INTRINSIC_LT, INTRINSIC_LE, INTRINSIC_NOT, INTRINSIC_USER,
193 INTRINSIC_ASSIGN, INTRINSIC_PARENTHESES,
194 GFC_INTRINSIC_END /* Sentinel */
196 gfc_intrinsic_op;
199 /* Strings for all intrinsic operators. */
200 extern mstring intrinsic_operators[];
203 /* This macro is the number of intrinsic operators that exist.
204 Assumptions are made about the numbering of the interface_op enums. */
205 #define GFC_INTRINSIC_OPS GFC_INTRINSIC_END
207 /* Arithmetic results. */
208 typedef enum
209 { ARITH_OK = 1, ARITH_OVERFLOW, ARITH_UNDERFLOW, ARITH_NAN,
210 ARITH_DIV0, ARITH_INCOMMENSURATE, ARITH_ASYMMETRIC
212 arith;
214 /* Statements. */
215 typedef enum
217 ST_ARITHMETIC_IF, ST_ALLOCATE, ST_ATTR_DECL, ST_BACKSPACE, ST_BLOCK_DATA,
218 ST_CALL, ST_CASE, ST_CLOSE, ST_COMMON, ST_CONTINUE, ST_CONTAINS, ST_CYCLE,
219 ST_DATA, ST_DATA_DECL, ST_DEALLOCATE, ST_DO, ST_ELSE, ST_ELSEIF,
220 ST_ELSEWHERE, ST_END_BLOCK_DATA, ST_ENDDO, ST_IMPLIED_ENDDO,
221 ST_END_FILE, ST_FLUSH, ST_END_FORALL, ST_END_FUNCTION, ST_ENDIF,
222 ST_END_INTERFACE, ST_END_MODULE, ST_END_PROGRAM, ST_END_SELECT,
223 ST_END_SUBROUTINE, ST_END_WHERE, ST_END_TYPE, ST_ENTRY, ST_EQUIVALENCE,
224 ST_EXIT, ST_FORALL, ST_FORALL_BLOCK, ST_FORMAT, ST_FUNCTION, ST_GOTO,
225 ST_IF_BLOCK, ST_IMPLICIT, ST_IMPLICIT_NONE, ST_INQUIRE, ST_INTERFACE,
226 ST_PARAMETER, ST_MODULE, ST_MODULE_PROC, ST_NAMELIST, ST_NULLIFY, ST_OPEN,
227 ST_PAUSE, ST_PRIVATE, ST_PROGRAM, ST_PUBLIC, ST_READ, ST_RETURN, ST_REWIND,
228 ST_STOP, ST_SUBROUTINE, ST_TYPE, ST_USE, ST_WHERE_BLOCK, ST_WHERE, ST_WRITE,
229 ST_ASSIGNMENT, ST_POINTER_ASSIGNMENT, ST_SELECT_CASE, ST_SEQUENCE,
230 ST_SIMPLE_IF, ST_STATEMENT_FUNCTION, ST_DERIVED_DECL, ST_LABEL_ASSIGNMENT,
231 ST_ENUM, ST_ENUMERATOR, ST_END_ENUM,
232 ST_OMP_ATOMIC, ST_OMP_BARRIER, ST_OMP_CRITICAL, ST_OMP_END_CRITICAL,
233 ST_OMP_END_DO, ST_OMP_END_MASTER, ST_OMP_END_ORDERED, ST_OMP_END_PARALLEL,
234 ST_OMP_END_PARALLEL_DO, ST_OMP_END_PARALLEL_SECTIONS,
235 ST_OMP_END_PARALLEL_WORKSHARE, ST_OMP_END_SECTIONS, ST_OMP_END_SINGLE,
236 ST_OMP_END_WORKSHARE, ST_OMP_DO, ST_OMP_FLUSH, ST_OMP_MASTER, ST_OMP_ORDERED,
237 ST_OMP_PARALLEL, ST_OMP_PARALLEL_DO, ST_OMP_PARALLEL_SECTIONS,
238 ST_OMP_PARALLEL_WORKSHARE, ST_OMP_SECTIONS, ST_OMP_SECTION, ST_OMP_SINGLE,
239 ST_OMP_THREADPRIVATE, ST_OMP_WORKSHARE,
240 ST_NONE
242 gfc_statement;
245 /* Types of interfaces that we can have. Assignment interfaces are
246 considered to be intrinsic operators. */
247 typedef enum
249 INTERFACE_NAMELESS = 1, INTERFACE_GENERIC,
250 INTERFACE_INTRINSIC_OP, INTERFACE_USER_OP
252 interface_type;
254 /* Symbol flavors: these are all mutually exclusive.
255 10 elements = 4 bits. */
256 typedef enum sym_flavor
258 FL_UNKNOWN = 0, FL_PROGRAM, FL_BLOCK_DATA, FL_MODULE, FL_VARIABLE,
259 FL_PARAMETER, FL_LABEL, FL_PROCEDURE, FL_DERIVED, FL_NAMELIST
261 sym_flavor;
263 /* Procedure types. 7 elements = 3 bits. */
264 typedef enum procedure_type
265 { PROC_UNKNOWN, PROC_MODULE, PROC_INTERNAL, PROC_DUMMY,
266 PROC_INTRINSIC, PROC_ST_FUNCTION, PROC_EXTERNAL
268 procedure_type;
270 /* Intent types. */
271 typedef enum sym_intent
272 { INTENT_UNKNOWN = 0, INTENT_IN, INTENT_OUT, INTENT_INOUT
274 sym_intent;
276 /* Access types. */
277 typedef enum gfc_access
278 { ACCESS_UNKNOWN = 0, ACCESS_PUBLIC, ACCESS_PRIVATE
280 gfc_access;
282 /* Flags to keep track of where an interface came from.
283 4 elements = 2 bits. */
284 typedef enum ifsrc
285 { IFSRC_UNKNOWN = 0, IFSRC_DECL, IFSRC_IFBODY, IFSRC_USAGE
287 ifsrc;
289 /* Strings for all symbol attributes. We use these for dumping the
290 parse tree, in error messages, and also when reading and writing
291 modules. In symbol.c. */
292 extern const mstring flavors[];
293 extern const mstring procedures[];
294 extern const mstring intents[];
295 extern const mstring access_types[];
296 extern const mstring ifsrc_types[];
298 /* Enumeration of all the generic intrinsic functions. Used by the
299 backend for identification of a function. */
301 enum gfc_generic_isym_id
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_ABS,
307 GFC_ISYM_ACHAR,
308 GFC_ISYM_ACOS,
309 GFC_ISYM_ACOSH,
310 GFC_ISYM_ADJUSTL,
311 GFC_ISYM_ADJUSTR,
312 GFC_ISYM_AIMAG,
313 GFC_ISYM_AINT,
314 GFC_ISYM_ALL,
315 GFC_ISYM_ALLOCATED,
316 GFC_ISYM_ANINT,
317 GFC_ISYM_AND,
318 GFC_ISYM_ANY,
319 GFC_ISYM_ASIN,
320 GFC_ISYM_ASINH,
321 GFC_ISYM_ASSOCIATED,
322 GFC_ISYM_ATAN,
323 GFC_ISYM_ATANH,
324 GFC_ISYM_ATAN2,
325 GFC_ISYM_J0,
326 GFC_ISYM_J1,
327 GFC_ISYM_JN,
328 GFC_ISYM_Y0,
329 GFC_ISYM_Y1,
330 GFC_ISYM_YN,
331 GFC_ISYM_BTEST,
332 GFC_ISYM_CEILING,
333 GFC_ISYM_CHAR,
334 GFC_ISYM_CHDIR,
335 GFC_ISYM_CMPLX,
336 GFC_ISYM_COMMAND_ARGUMENT_COUNT,
337 GFC_ISYM_COMPLEX,
338 GFC_ISYM_CONJG,
339 GFC_ISYM_COS,
340 GFC_ISYM_COSH,
341 GFC_ISYM_COUNT,
342 GFC_ISYM_CSHIFT,
343 GFC_ISYM_CTIME,
344 GFC_ISYM_DBLE,
345 GFC_ISYM_DIM,
346 GFC_ISYM_DOT_PRODUCT,
347 GFC_ISYM_DPROD,
348 GFC_ISYM_EOSHIFT,
349 GFC_ISYM_ERF,
350 GFC_ISYM_ERFC,
351 GFC_ISYM_ETIME,
352 GFC_ISYM_EXP,
353 GFC_ISYM_EXPONENT,
354 GFC_ISYM_FDATE,
355 GFC_ISYM_FGET,
356 GFC_ISYM_FGETC,
357 GFC_ISYM_FLOOR,
358 GFC_ISYM_FNUM,
359 GFC_ISYM_FPUT,
360 GFC_ISYM_FPUTC,
361 GFC_ISYM_FRACTION,
362 GFC_ISYM_FSTAT,
363 GFC_ISYM_FTELL,
364 GFC_ISYM_GETCWD,
365 GFC_ISYM_GETGID,
366 GFC_ISYM_GETPID,
367 GFC_ISYM_GETUID,
368 GFC_ISYM_HOSTNM,
369 GFC_ISYM_IACHAR,
370 GFC_ISYM_IAND,
371 GFC_ISYM_IARGC,
372 GFC_ISYM_IBCLR,
373 GFC_ISYM_IBITS,
374 GFC_ISYM_IBSET,
375 GFC_ISYM_ICHAR,
376 GFC_ISYM_IEOR,
377 GFC_ISYM_IERRNO,
378 GFC_ISYM_INDEX,
379 GFC_ISYM_INT,
380 GFC_ISYM_IOR,
381 GFC_ISYM_IRAND,
382 GFC_ISYM_ISATTY,
383 GFC_ISYM_ISHFT,
384 GFC_ISYM_ISHFTC,
385 GFC_ISYM_KILL,
386 GFC_ISYM_LBOUND,
387 GFC_ISYM_LEN,
388 GFC_ISYM_LEN_TRIM,
389 GFC_ISYM_LINK,
390 GFC_ISYM_LGE,
391 GFC_ISYM_LGT,
392 GFC_ISYM_LLE,
393 GFC_ISYM_LLT,
394 GFC_ISYM_LOG,
395 GFC_ISYM_LOC,
396 GFC_ISYM_LOG10,
397 GFC_ISYM_LOGICAL,
398 GFC_ISYM_MALLOC,
399 GFC_ISYM_MATMUL,
400 GFC_ISYM_MAX,
401 GFC_ISYM_MAXLOC,
402 GFC_ISYM_MAXVAL,
403 GFC_ISYM_MERGE,
404 GFC_ISYM_MIN,
405 GFC_ISYM_MINLOC,
406 GFC_ISYM_MINVAL,
407 GFC_ISYM_MOD,
408 GFC_ISYM_MODULO,
409 GFC_ISYM_NEAREST,
410 GFC_ISYM_NINT,
411 GFC_ISYM_NOT,
412 GFC_ISYM_OR,
413 GFC_ISYM_PACK,
414 GFC_ISYM_PRESENT,
415 GFC_ISYM_PRODUCT,
416 GFC_ISYM_RAND,
417 GFC_ISYM_REAL,
418 GFC_ISYM_RENAME,
419 GFC_ISYM_REPEAT,
420 GFC_ISYM_RESHAPE,
421 GFC_ISYM_RRSPACING,
422 GFC_ISYM_SCALE,
423 GFC_ISYM_SCAN,
424 GFC_ISYM_SECOND,
425 GFC_ISYM_SECNDS,
426 GFC_ISYM_SET_EXPONENT,
427 GFC_ISYM_SHAPE,
428 GFC_ISYM_SI_KIND,
429 GFC_ISYM_SIGN,
430 GFC_ISYM_SIGNAL,
431 GFC_ISYM_SIN,
432 GFC_ISYM_SINH,
433 GFC_ISYM_SIZE,
434 GFC_ISYM_SPACING,
435 GFC_ISYM_SPREAD,
436 GFC_ISYM_SQRT,
437 GFC_ISYM_SR_KIND,
438 GFC_ISYM_STAT,
439 GFC_ISYM_SUM,
440 GFC_ISYM_SYMLNK,
441 GFC_ISYM_SYSTEM,
442 GFC_ISYM_TAN,
443 GFC_ISYM_TANH,
444 GFC_ISYM_TIME,
445 GFC_ISYM_TIME8,
446 GFC_ISYM_TRANSFER,
447 GFC_ISYM_TRANSPOSE,
448 GFC_ISYM_TRIM,
449 GFC_ISYM_TTYNAM,
450 GFC_ISYM_UBOUND,
451 GFC_ISYM_UMASK,
452 GFC_ISYM_UNLINK,
453 GFC_ISYM_UNPACK,
454 GFC_ISYM_VERIFY,
455 GFC_ISYM_XOR,
456 GFC_ISYM_CONVERSION
458 typedef enum gfc_generic_isym_id gfc_generic_isym_id;
460 /************************* Structures *****************************/
462 /* Used for keeping things in balanced binary trees. */
463 #define BBT_HEADER(self) int priority; struct self *left, *right
465 /* Symbol attribute structure. */
466 typedef struct
468 /* Variable attributes. */
469 unsigned allocatable:1, dimension:1, external:1, intrinsic:1,
470 optional:1, pointer:1, save:1, target:1,
471 dummy:1, result:1, assign:1, threadprivate:1;
473 unsigned data:1, /* Symbol is named in a DATA statement. */
474 use_assoc:1; /* Symbol has been use-associated. */
476 unsigned in_namelist:1, in_common:1, in_equivalence:1;
477 unsigned function:1, subroutine:1, generic:1;
478 unsigned implicit_type:1; /* Type defined via implicit rules. */
479 unsigned untyped:1; /* No implicit type could be found. */
481 /* Function/subroutine attributes */
482 unsigned sequence:1, elemental:1, pure:1, recursive:1;
483 unsigned unmaskable:1, masked:1, contained:1;
485 /* This is set if the subroutine doesn't return. Currently, this
486 is only possible for intrinsic subroutines. */
487 unsigned noreturn:1;
489 /* Set if this procedure is an alternate entry point. These procedures
490 don't have any code associated, and the backend will turn them into
491 thunks to the master function. */
492 unsigned entry:1;
494 /* Set if this is the master function for a procedure with multiple
495 entry points. */
496 unsigned entry_master:1;
498 /* Set if this is the master function for a function with multiple
499 entry points where characteristics of the entry points differ. */
500 unsigned mixed_entry_master:1;
502 /* Set if a function must always be referenced by an explicit interface. */
503 unsigned always_explicit:1;
505 /* Set if the symbol has been referenced in an expression. No further
506 modification of type or type parameters is permitted. */
507 unsigned referenced:1;
509 /* Set if the is the symbol for the main program. This is the least
510 cumbersome way to communicate this function property without
511 strcmp'ing with __MAIN everywhere. */
512 unsigned is_main_program:1;
514 /* Mutually exclusive multibit attributes. */
515 ENUM_BITFIELD (gfc_access) access:2;
516 ENUM_BITFIELD (sym_intent) intent:2;
517 ENUM_BITFIELD (sym_flavor) flavor:4;
518 ENUM_BITFIELD (ifsrc) if_source:2;
520 ENUM_BITFIELD (procedure_type) proc:3;
522 /* Special attributes for Cray pointers, pointees. */
523 unsigned cray_pointer:1, cray_pointee:1;
526 symbol_attribute;
529 /* The following three structures are used to identify a location in
530 the sources.
532 gfc_file is used to maintain a tree of the source files and how
533 they include each other
535 gfc_linebuf holds a single line of source code and information
536 which file it resides in
538 locus point to the sourceline and the character in the source
539 line.
542 typedef struct gfc_file
544 struct gfc_file *included_by, *next, *up;
545 int inclusion_line, line;
546 char *filename;
547 } gfc_file;
549 typedef struct gfc_linebuf
551 #ifdef USE_MAPPED_LOCATION
552 source_location location;
553 #else
554 int linenum;
555 #endif
556 struct gfc_file *file;
557 struct gfc_linebuf *next;
559 int truncated;
561 char line[1];
562 } gfc_linebuf;
564 #define gfc_linebuf_header_size (offsetof (gfc_linebuf, line))
566 typedef struct
568 char *nextc;
569 gfc_linebuf *lb;
570 } locus;
572 /* In order for the "gfc" format checking to work correctly, you must
573 have declared a typedef locus first. */
574 #if GCC_VERSION >= 4001
575 #define ATTRIBUTE_GCC_GFC(m, n) __attribute__ ((__format__ (__gcc_gfc__, m, n))) ATTRIBUTE_NONNULL(m)
576 #else
577 #define ATTRIBUTE_GCC_GFC(m, n) ATTRIBUTE_NONNULL(m)
578 #endif
581 extern int gfc_suppress_error;
584 /* Character length structures hold the expression that gives the
585 length of a character variable. We avoid putting these into
586 gfc_typespec because doing so prevents us from doing structure
587 copies and forces us to deallocate any typespecs we create, as well
588 as structures that contain typespecs. They also can have multiple
589 character typespecs pointing to them.
591 These structures form a singly linked list within the current
592 namespace and are deallocated with the namespace. It is possible to
593 end up with gfc_charlen structures that have nothing pointing to them. */
595 typedef struct gfc_charlen
597 struct gfc_expr *length;
598 struct gfc_charlen *next;
599 tree backend_decl;
601 int resolved;
603 gfc_charlen;
605 #define gfc_get_charlen() gfc_getmem(sizeof(gfc_charlen))
607 /* Type specification structure. FIXME: derived and cl could be union??? */
608 typedef struct
610 bt type;
611 int kind;
612 struct gfc_symbol *derived;
613 gfc_charlen *cl; /* For character types only. */
615 gfc_typespec;
617 /* Array specification. */
618 typedef struct
620 int rank; /* A rank of zero means that a variable is a scalar. */
621 array_type type;
622 struct gfc_expr *lower[GFC_MAX_DIMENSIONS], *upper[GFC_MAX_DIMENSIONS];
624 /* These two fields are used with the Cray Pointer extension. */
625 bool cray_pointee; /* True iff this spec belongs to a cray pointee. */
626 bool cp_was_assumed; /* AS_ASSUMED_SIZE cp arrays are converted to
627 AS_EXPLICIT, but we want to remember that we
628 did this. */
631 gfc_array_spec;
633 #define gfc_get_array_spec() gfc_getmem(sizeof(gfc_array_spec))
636 /* Components of derived types. */
637 typedef struct gfc_component
639 const char *name;
640 gfc_typespec ts;
642 int pointer, dimension;
643 gfc_array_spec *as;
645 tree backend_decl;
646 locus loc;
647 struct gfc_expr *initializer;
648 struct gfc_component *next;
650 gfc_component;
652 #define gfc_get_component() gfc_getmem(sizeof(gfc_component))
654 /* Formal argument lists are lists of symbols. */
655 typedef struct gfc_formal_arglist
657 /* Symbol representing the argument at this position in the arglist. */
658 struct gfc_symbol *sym;
659 /* Points to the next formal argument. */
660 struct gfc_formal_arglist *next;
662 gfc_formal_arglist;
664 #define gfc_get_formal_arglist() gfc_getmem(sizeof(gfc_formal_arglist))
667 /* The gfc_actual_arglist structure is for actual arguments. */
668 typedef struct gfc_actual_arglist
670 const char *name;
671 /* Alternate return label when the expr member is null. */
672 struct gfc_st_label *label;
674 /* This is set to the type of an eventual omitted optional
675 argument. This is used to determine if a hidden string length
676 argument has to be added to a function call. */
677 bt missing_arg_type;
679 struct gfc_expr *expr;
680 struct gfc_actual_arglist *next;
682 gfc_actual_arglist;
684 #define gfc_get_actual_arglist() gfc_getmem(sizeof(gfc_actual_arglist))
687 /* Because a symbol can belong to multiple namelists, they must be
688 linked externally to the symbol itself. */
689 typedef struct gfc_namelist
691 struct gfc_symbol *sym;
692 struct gfc_namelist *next;
694 gfc_namelist;
696 #define gfc_get_namelist() gfc_getmem(sizeof(gfc_namelist))
698 enum
700 OMP_LIST_PRIVATE,
701 OMP_LIST_FIRSTPRIVATE,
702 OMP_LIST_LASTPRIVATE,
703 OMP_LIST_COPYPRIVATE,
704 OMP_LIST_SHARED,
705 OMP_LIST_COPYIN,
706 OMP_LIST_PLUS,
707 OMP_LIST_REDUCTION_FIRST = OMP_LIST_PLUS,
708 OMP_LIST_MULT,
709 OMP_LIST_SUB,
710 OMP_LIST_AND,
711 OMP_LIST_OR,
712 OMP_LIST_EQV,
713 OMP_LIST_NEQV,
714 OMP_LIST_MAX,
715 OMP_LIST_MIN,
716 OMP_LIST_IAND,
717 OMP_LIST_IOR,
718 OMP_LIST_IEOR,
719 OMP_LIST_REDUCTION_LAST = OMP_LIST_IEOR,
720 OMP_LIST_NUM
723 /* Because a symbol can belong to multiple namelists, they must be
724 linked externally to the symbol itself. */
725 typedef struct gfc_omp_clauses
727 struct gfc_expr *if_expr;
728 struct gfc_expr *num_threads;
729 gfc_namelist *lists[OMP_LIST_NUM];
730 enum
732 OMP_SCHED_NONE,
733 OMP_SCHED_STATIC,
734 OMP_SCHED_DYNAMIC,
735 OMP_SCHED_GUIDED,
736 OMP_SCHED_RUNTIME
737 } sched_kind;
738 struct gfc_expr *chunk_size;
739 enum
741 OMP_DEFAULT_UNKNOWN,
742 OMP_DEFAULT_NONE,
743 OMP_DEFAULT_PRIVATE,
744 OMP_DEFAULT_SHARED
745 } default_sharing;
746 bool nowait, ordered;
748 gfc_omp_clauses;
750 #define gfc_get_omp_clauses() gfc_getmem(sizeof(gfc_omp_clauses))
753 /* The gfc_st_label structure is a doubly linked list attached to a
754 namespace that records the usage of statement labels within that
755 space. */
756 /* TODO: Make format/statement specifics a union. */
757 typedef struct gfc_st_label
759 BBT_HEADER(gfc_st_label);
761 int value;
763 gfc_sl_type defined, referenced;
765 struct gfc_expr *format;
767 tree backend_decl;
769 locus where;
771 gfc_st_label;
774 /* gfc_interface()-- Interfaces are lists of symbols strung together. */
775 typedef struct gfc_interface
777 struct gfc_symbol *sym;
778 locus where;
779 struct gfc_interface *next;
781 gfc_interface;
783 #define gfc_get_interface() gfc_getmem(sizeof(gfc_interface))
786 /* User operator nodes. These are like stripped down symbols. */
787 typedef struct
789 const char *name;
791 gfc_interface *operator;
792 struct gfc_namespace *ns;
793 gfc_access access;
795 gfc_user_op;
797 /* Symbol nodes. These are important things. They are what the
798 standard refers to as "entities". The possibly multiple names that
799 refer to the same entity are accomplished by a binary tree of
800 symtree structures that is balanced by the red-black method-- more
801 than one symtree node can point to any given symbol. */
803 typedef struct gfc_symbol
805 const char *name; /* Primary name, before renaming */
806 const char *module; /* Module this symbol came from */
807 locus declared_at;
809 gfc_typespec ts;
810 symbol_attribute attr;
812 /* The interface member points to the formal argument list if the
813 symbol is a function or subroutine name. If the symbol is a
814 generic name, the generic member points to the list of
815 interfaces. */
817 gfc_interface *generic;
818 gfc_access component_access;
820 gfc_formal_arglist *formal;
821 struct gfc_namespace *formal_ns;
823 struct gfc_expr *value; /* Parameter/Initializer value */
824 gfc_array_spec *as;
825 struct gfc_symbol *result; /* function result symbol */
826 gfc_component *components; /* Derived type components */
828 /* Defined only for Cray pointees; points to their pointer. */
829 struct gfc_symbol *cp_pointer;
831 struct gfc_symbol *common_next; /* Links for COMMON syms */
833 /* This is in fact a gfc_common_head but it is only used for pointer
834 comparisons to check if symbols are in the same common block. */
835 struct gfc_common_head* common_head;
837 /* Make sure setup code for dummy arguments is generated in the correct
838 order. */
839 int dummy_order;
841 int entry_id;
843 gfc_namelist *namelist, *namelist_tail;
845 /* Change management fields. Symbols that might be modified by the
846 current statement have the mark member nonzero and are kept in a
847 singly linked list through the tlink field. Of these symbols,
848 symbols with old_symbol equal to NULL are symbols created within
849 the current statement. Otherwise, old_symbol points to a copy of
850 the old symbol. */
852 struct gfc_symbol *old_symbol, *tlink;
853 unsigned mark:1, new:1;
854 /* Nonzero if all equivalences associated with this symbol have been
855 processed. */
856 unsigned equiv_built:1;
857 /* Set if this variable is used as an index name in a FORALL. */
858 unsigned forall_index:1;
859 int refs;
860 struct gfc_namespace *ns; /* namespace containing this symbol */
862 tree backend_decl;
864 gfc_symbol;
867 /* This structure is used to keep track of symbols in common blocks. */
869 typedef struct gfc_common_head
871 locus where;
872 char use_assoc, saved, threadprivate;
873 char name[GFC_MAX_SYMBOL_LEN + 1];
874 struct gfc_symbol *head;
876 gfc_common_head;
878 #define gfc_get_common_head() gfc_getmem(sizeof(gfc_common_head))
881 /* A list of all the alternate entry points for a procedure. */
883 typedef struct gfc_entry_list
885 /* The symbol for this entry point. */
886 gfc_symbol *sym;
887 /* The zero-based id of this entry point. */
888 int id;
889 /* The LABEL_EXPR marking this entry point. */
890 tree label;
891 /* The nest item in the list. */
892 struct gfc_entry_list *next;
894 gfc_entry_list;
896 #define gfc_get_entry_list() \
897 (gfc_entry_list *) gfc_getmem(sizeof(gfc_entry_list))
899 /* Within a namespace, symbols are pointed to by symtree nodes that
900 are linked together in a balanced binary tree. There can be
901 several symtrees pointing to the same symbol node via USE
902 statements. */
904 typedef struct gfc_symtree
906 BBT_HEADER (gfc_symtree);
907 const char *name;
908 int ambiguous;
909 union
911 gfc_symbol *sym; /* Symbol associated with this node */
912 gfc_user_op *uop;
913 gfc_common_head *common;
918 gfc_symtree;
920 /* A linked list of derived types in the namespace. */
921 typedef struct gfc_dt_list
923 struct gfc_symbol *derived;
924 struct gfc_dt_list *next;
926 gfc_dt_list;
928 #define gfc_get_dt_list() gfc_getmem(sizeof(gfc_dt_list))
931 /* A namespace describes the contents of procedure, module or
932 interface block. */
933 /* ??? Anything else use these? */
935 typedef struct gfc_namespace
937 /* Tree containing all the symbols in this namespace. */
938 gfc_symtree *sym_root;
939 /* Tree containing all the user-defined operators in the namespace. */
940 gfc_symtree *uop_root;
941 /* Tree containing all the common blocks. */
942 gfc_symtree *common_root;
944 /* If set_flag[letter] is set, an implicit type has been set for letter. */
945 int set_flag[GFC_LETTERS];
946 /* Keeps track of the implicit types associated with the letters. */
947 gfc_typespec default_type[GFC_LETTERS];
949 /* If this is a namespace of a procedure, this points to the procedure. */
950 struct gfc_symbol *proc_name;
951 /* If this is the namespace of a unit which contains executable
952 code, this points to it. */
953 struct gfc_code *code;
955 /* Points to the equivalences set up in this namespace. */
956 struct gfc_equiv *equiv;
958 /* Points to the equivalence groups produced by trans_common. */
959 struct gfc_equiv_list *equiv_lists;
961 gfc_interface *operator[GFC_INTRINSIC_OPS];
963 /* Points to the parent namespace, i.e. the namespace of a module or
964 procedure in which the procedure belonging to this namespace is
965 contained. The parent namespace points to this namespace either
966 directly via CONTAINED, or indirectly via the chain built by
967 SIBLING. */
968 struct gfc_namespace *parent;
969 /* CONTAINED points to the first contained namespace. Sibling
970 namespaces are chained via SIBLING. */
971 struct gfc_namespace *contained, *sibling;
973 gfc_common_head blank_common;
974 gfc_access default_access, operator_access[GFC_INTRINSIC_OPS];
976 gfc_st_label *st_labels;
977 /* This list holds information about all the data initializers in
978 this namespace. */
979 struct gfc_data *data;
981 gfc_charlen *cl_list;
983 int save_all, seen_save, seen_implicit_none;
985 /* Normally we don't need to refcount namespaces. However when we read
986 a module containing a function with multiple entry points, this
987 will appear as several functions with the same formal namespace. */
988 int refs;
990 /* A list of all alternate entry points to this procedure (or NULL). */
991 gfc_entry_list *entries;
993 /* A list of all derived types in this procedure (or NULL). */
994 gfc_dt_list *derived_types;
996 /* Set to 1 if namespace is a BLOCK DATA program unit. */
997 int is_block_data;
999 gfc_namespace;
1001 extern gfc_namespace *gfc_current_ns;
1003 /* Global symbols are symbols of global scope. Currently we only use
1004 this to detect collisions already when parsing.
1005 TODO: Extend to verify procedure calls. */
1007 typedef struct gfc_gsymbol
1009 BBT_HEADER(gfc_gsymbol);
1011 const char *name;
1012 enum { GSYM_UNKNOWN=1, GSYM_PROGRAM, GSYM_FUNCTION, GSYM_SUBROUTINE,
1013 GSYM_MODULE, GSYM_COMMON, GSYM_BLOCK_DATA } type;
1015 int defined, used;
1016 locus where;
1018 gfc_gsymbol;
1020 extern gfc_gsymbol *gfc_gsym_root;
1022 /* Information on interfaces being built. */
1023 typedef struct
1025 interface_type type;
1026 gfc_symbol *sym;
1027 gfc_namespace *ns;
1028 gfc_user_op *uop;
1029 gfc_intrinsic_op op;
1031 gfc_interface_info;
1033 extern gfc_interface_info current_interface;
1036 /* Array reference. */
1037 typedef struct gfc_array_ref
1039 ar_type type;
1040 int dimen; /* # of components in the reference */
1041 locus where;
1042 gfc_array_spec *as;
1044 locus c_where[GFC_MAX_DIMENSIONS]; /* All expressions can be NULL */
1045 struct gfc_expr *start[GFC_MAX_DIMENSIONS], *end[GFC_MAX_DIMENSIONS],
1046 *stride[GFC_MAX_DIMENSIONS];
1048 enum
1049 { DIMEN_ELEMENT = 1, DIMEN_RANGE, DIMEN_VECTOR, DIMEN_UNKNOWN }
1050 dimen_type[GFC_MAX_DIMENSIONS];
1052 struct gfc_expr *offset;
1054 gfc_array_ref;
1056 #define gfc_get_array_ref() gfc_getmem(sizeof(gfc_array_ref))
1059 /* Component reference nodes. A variable is stored as an expression
1060 node that points to the base symbol. After that, a singly linked
1061 list of component reference nodes gives the variable's complete
1062 resolution. The array_ref component may be present and comes
1063 before the component component. */
1065 typedef enum
1066 { REF_ARRAY, REF_COMPONENT, REF_SUBSTRING }
1067 ref_type;
1069 typedef struct gfc_ref
1071 ref_type type;
1073 union
1075 struct gfc_array_ref ar;
1077 struct
1079 gfc_component *component;
1080 gfc_symbol *sym;
1084 struct
1086 struct gfc_expr *start, *end; /* Substring */
1087 gfc_charlen *length;
1094 struct gfc_ref *next;
1096 gfc_ref;
1098 #define gfc_get_ref() gfc_getmem(sizeof(gfc_ref))
1101 /* Structures representing intrinsic symbols and their arguments lists. */
1102 typedef struct gfc_intrinsic_arg
1104 char name[GFC_MAX_SYMBOL_LEN + 1];
1106 gfc_typespec ts;
1107 int optional;
1108 gfc_actual_arglist *actual;
1110 struct gfc_intrinsic_arg *next;
1113 gfc_intrinsic_arg;
1116 /* Specifies the various kinds of check functions used to verify the
1117 argument lists of intrinsic functions. fX with X an integer refer
1118 to check functions of intrinsics with X arguments. f1m is used for
1119 the MAX and MIN intrinsics which can have an arbitrary number of
1120 arguments, f3ml is used for the MINLOC and MAXLOC intrinsics as
1121 these have special semantics. */
1123 typedef union
1125 try (*f0)(void);
1126 try (*f1)(struct gfc_expr *);
1127 try (*f1m)(gfc_actual_arglist *);
1128 try (*f2)(struct gfc_expr *, struct gfc_expr *);
1129 try (*f3)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *);
1130 try (*f3ml)(gfc_actual_arglist *);
1131 try (*f3red)(gfc_actual_arglist *);
1132 try (*f4)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1133 struct gfc_expr *);
1134 try (*f5)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1135 struct gfc_expr *, struct gfc_expr *);
1137 gfc_check_f;
1139 /* Like gfc_check_f, these specify the type of the simplification
1140 function associated with an intrinsic. The fX are just like in
1141 gfc_check_f. cc is used for type conversion functions. */
1143 typedef union
1145 struct gfc_expr *(*f0)(void);
1146 struct gfc_expr *(*f1)(struct gfc_expr *);
1147 struct gfc_expr *(*f2)(struct gfc_expr *, struct gfc_expr *);
1148 struct gfc_expr *(*f3)(struct gfc_expr *, struct gfc_expr *,
1149 struct gfc_expr *);
1150 struct gfc_expr *(*f4)(struct gfc_expr *, struct gfc_expr *,
1151 struct gfc_expr *, struct gfc_expr *);
1152 struct gfc_expr *(*f5)(struct gfc_expr *, struct gfc_expr *,
1153 struct gfc_expr *, struct gfc_expr *,
1154 struct gfc_expr *);
1155 struct gfc_expr *(*cc)(struct gfc_expr *, bt, int);
1157 gfc_simplify_f;
1159 /* Again like gfc_check_f, these specify the type of the resolution
1160 function associated with an intrinsic. The fX are just like in
1161 gfc_check_f. f1m is used for MIN and MAX, s1 is used for abort().
1164 typedef union
1166 void (*f0)(struct gfc_expr *);
1167 void (*f1)(struct gfc_expr *, struct gfc_expr *);
1168 void (*f1m)(struct gfc_expr *, struct gfc_actual_arglist *);
1169 void (*f2)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *);
1170 void (*f3)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1171 struct gfc_expr *);
1172 void (*f4)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1173 struct gfc_expr *, struct gfc_expr *);
1174 void (*f5)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1175 struct gfc_expr *, struct gfc_expr *, struct gfc_expr *);
1176 void (*s1)(struct gfc_code *);
1178 gfc_resolve_f;
1181 typedef struct gfc_intrinsic_sym
1183 const char *name, *lib_name;
1184 gfc_intrinsic_arg *formal;
1185 gfc_typespec ts;
1186 int elemental, pure, generic, specific, actual_ok, standard, noreturn;
1188 gfc_simplify_f simplify;
1189 gfc_check_f check;
1190 gfc_resolve_f resolve;
1191 struct gfc_intrinsic_sym *specific_head, *next;
1192 gfc_generic_isym_id generic_id;
1195 gfc_intrinsic_sym;
1198 /* Expression nodes. The expression node types deserve explanations,
1199 since the last couple can be easily misconstrued:
1201 EXPR_OP Operator node pointing to one or two other nodes
1202 EXPR_FUNCTION Function call, symbol points to function's name
1203 EXPR_CONSTANT A scalar constant: Logical, String, Real, Int or Complex
1204 EXPR_VARIABLE An Lvalue with a root symbol and possible reference list
1205 which expresses structure, array and substring refs.
1206 EXPR_NULL The NULL pointer value (which also has a basic type).
1207 EXPR_SUBSTRING A substring of a constant string
1208 EXPR_STRUCTURE A structure constructor
1209 EXPR_ARRAY An array constructor. */
1211 #include <gmp.h>
1212 #include <mpfr.h>
1213 #define GFC_RND_MODE GMP_RNDN
1215 typedef struct gfc_expr
1217 expr_t expr_type;
1219 gfc_typespec ts; /* These two refer to the overall expression */
1221 int rank;
1222 mpz_t *shape; /* Can be NULL if shape is unknown at compile time */
1224 /* Nonnull for functions and structure constructors */
1225 gfc_symtree *symtree;
1227 gfc_ref *ref;
1229 locus where;
1231 /* True if it is converted from Hollerith constant. */
1232 unsigned int from_H : 1;
1233 /* True if the expression is a call to a function that returns an array,
1234 and if we have decided not to allocate temporary data for that array. */
1235 unsigned int inline_noncopying_intrinsic : 1;
1237 union
1239 int logical;
1240 mpz_t integer;
1242 mpfr_t real;
1244 struct
1246 mpfr_t r, i;
1248 complex;
1250 struct
1252 gfc_intrinsic_op operator;
1253 gfc_user_op *uop;
1254 struct gfc_expr *op1, *op2;
1258 struct
1260 gfc_actual_arglist *actual;
1261 const char *name; /* Points to the ultimate name of the function */
1262 gfc_intrinsic_sym *isym;
1263 gfc_symbol *esym;
1265 function;
1267 struct
1269 int length;
1270 char *string;
1272 character;
1274 struct gfc_constructor *constructor;
1276 value;
1279 gfc_expr;
1282 #define gfc_get_shape(rank) ((mpz_t *) gfc_getmem((rank)*sizeof(mpz_t)))
1284 /* Structures for information associated with different kinds of
1285 numbers. The first set of integer parameters define all there is
1286 to know about a particular kind. The rest of the elements are
1287 computed from the first elements. */
1289 typedef struct
1291 /* Values really representable by the target. */
1292 mpz_t huge, pedantic_min_int, min_int, max_int;
1294 int kind, radix, digits, bit_size, range;
1296 /* True if the C type of the given name maps to this precision.
1297 Note that more than one bit can be set. */
1298 unsigned int c_char : 1;
1299 unsigned int c_short : 1;
1300 unsigned int c_int : 1;
1301 unsigned int c_long : 1;
1302 unsigned int c_long_long : 1;
1304 gfc_integer_info;
1306 extern gfc_integer_info gfc_integer_kinds[];
1309 typedef struct
1311 int kind, bit_size;
1313 /* True if the C++ type bool, C99 type _Bool, maps to this precision. */
1314 unsigned int c_bool : 1;
1316 gfc_logical_info;
1318 extern gfc_logical_info gfc_logical_kinds[];
1321 typedef struct
1323 mpfr_t epsilon, huge, tiny, subnormal;
1324 int kind, radix, digits, min_exponent, max_exponent;
1325 int range, precision;
1327 /* The precision of the type as reported by GET_MODE_PRECISION. */
1328 int mode_precision;
1330 /* True if the C type of the given name maps to this precision.
1331 Note that more than one bit can be set. */
1332 unsigned int c_float : 1;
1333 unsigned int c_double : 1;
1334 unsigned int c_long_double : 1;
1336 gfc_real_info;
1338 extern gfc_real_info gfc_real_kinds[];
1341 /* Equivalence structures. Equivalent lvalues are linked along the
1342 *eq pointer, equivalence sets are strung along the *next node. */
1343 typedef struct gfc_equiv
1345 struct gfc_equiv *next, *eq;
1346 gfc_expr *expr;
1347 const char *module;
1348 int used;
1350 gfc_equiv;
1352 #define gfc_get_equiv() gfc_getmem(sizeof(gfc_equiv))
1354 /* Holds a single equivalence member after processing. */
1355 typedef struct gfc_equiv_info
1357 gfc_symbol *sym;
1358 HOST_WIDE_INT offset;
1359 HOST_WIDE_INT length;
1360 struct gfc_equiv_info *next;
1361 } gfc_equiv_info;
1363 /* Holds equivalence groups, after they have been processed. */
1364 typedef struct gfc_equiv_list
1366 gfc_equiv_info *equiv;
1367 struct gfc_equiv_list *next;
1368 } gfc_equiv_list;
1370 /* gfc_case stores the selector list of a case statement. The *low
1371 and *high pointers can point to the same expression in the case of
1372 a single value. If *high is NULL, the selection is from *low
1373 upwards, if *low is NULL the selection is *high downwards.
1375 This structure has separate fields to allow single and double linked
1376 lists of CASEs at the same time. The singe linked list along the NEXT
1377 field is a list of cases for a single CASE label. The double linked
1378 list along the LEFT/RIGHT fields is used to detect overlap and to
1379 build a table of the cases for SELECT constructs with a CHARACTER
1380 case expression. */
1382 typedef struct gfc_case
1384 /* Where we saw this case. */
1385 locus where;
1386 int n;
1388 /* Case range values. If (low == high), it's a single value. If one of
1389 the labels is NULL, it's an unbounded case. If both are NULL, this
1390 represents the default case. */
1391 gfc_expr *low, *high;
1393 /* Next case label in the list of cases for a single CASE label. */
1394 struct gfc_case *next;
1396 /* Used for detecting overlap, and for code generation. */
1397 struct gfc_case *left, *right;
1399 /* True if this case label can never be matched. */
1400 int unreachable;
1402 gfc_case;
1404 #define gfc_get_case() gfc_getmem(sizeof(gfc_case))
1407 typedef struct
1409 gfc_expr *var, *start, *end, *step;
1411 gfc_iterator;
1413 #define gfc_get_iterator() gfc_getmem(sizeof(gfc_iterator))
1416 /* Allocation structure for ALLOCATE, DEALLOCATE and NULLIFY statements. */
1418 typedef struct gfc_alloc
1420 gfc_expr *expr;
1421 struct gfc_alloc *next;
1423 gfc_alloc;
1425 #define gfc_get_alloc() gfc_getmem(sizeof(gfc_alloc))
1428 typedef struct
1430 gfc_expr *unit, *file, *status, *access, *form, *recl,
1431 *blank, *position, *action, *delim, *pad, *iostat, *iomsg, *convert;
1432 gfc_st_label *err;
1434 gfc_open;
1437 typedef struct
1439 gfc_expr *unit, *status, *iostat, *iomsg;
1440 gfc_st_label *err;
1442 gfc_close;
1445 typedef struct
1447 gfc_expr *unit, *iostat, *iomsg;
1448 gfc_st_label *err;
1450 gfc_filepos;
1453 typedef struct
1455 gfc_expr *unit, *file, *iostat, *exist, *opened, *number, *named,
1456 *name, *access, *sequential, *direct, *form, *formatted,
1457 *unformatted, *recl, *nextrec, *blank, *position, *action, *read,
1458 *write, *readwrite, *delim, *pad, *iolength, *iomsg, *convert;
1460 gfc_st_label *err;
1463 gfc_inquire;
1466 typedef struct
1468 gfc_expr *io_unit, *format_expr, *rec, *advance, *iostat, *size, *iomsg;
1470 gfc_symbol *namelist;
1471 /* A format_label of `format_asterisk' indicates the "*" format */
1472 gfc_st_label *format_label;
1473 gfc_st_label *err, *end, *eor;
1475 locus eor_where, end_where, err_where;
1477 gfc_dt;
1480 typedef struct gfc_forall_iterator
1482 gfc_expr *var, *start, *end, *stride;
1483 struct gfc_forall_iterator *next;
1485 gfc_forall_iterator;
1488 /* Executable statements that fill gfc_code structures. */
1489 typedef enum
1491 EXEC_NOP = 1, EXEC_ASSIGN, EXEC_LABEL_ASSIGN, EXEC_POINTER_ASSIGN,
1492 EXEC_GOTO, EXEC_CALL, EXEC_ASSIGN_CALL, EXEC_RETURN, EXEC_ENTRY,
1493 EXEC_PAUSE, EXEC_STOP, EXEC_CONTINUE,
1494 EXEC_IF, EXEC_ARITHMETIC_IF, EXEC_DO, EXEC_DO_WHILE, EXEC_SELECT,
1495 EXEC_FORALL, EXEC_WHERE, EXEC_CYCLE, EXEC_EXIT,
1496 EXEC_ALLOCATE, EXEC_DEALLOCATE,
1497 EXEC_OPEN, EXEC_CLOSE,
1498 EXEC_READ, EXEC_WRITE, EXEC_IOLENGTH, EXEC_TRANSFER, EXEC_DT_END,
1499 EXEC_BACKSPACE, EXEC_ENDFILE, EXEC_INQUIRE, EXEC_REWIND, EXEC_FLUSH,
1500 EXEC_OMP_CRITICAL, EXEC_OMP_DO, EXEC_OMP_FLUSH, EXEC_OMP_MASTER,
1501 EXEC_OMP_ORDERED, EXEC_OMP_PARALLEL, EXEC_OMP_PARALLEL_DO,
1502 EXEC_OMP_PARALLEL_SECTIONS, EXEC_OMP_PARALLEL_WORKSHARE,
1503 EXEC_OMP_SECTIONS, EXEC_OMP_SINGLE, EXEC_OMP_WORKSHARE,
1504 EXEC_OMP_ATOMIC, EXEC_OMP_BARRIER, EXEC_OMP_END_NOWAIT,
1505 EXEC_OMP_END_SINGLE
1507 gfc_exec_op;
1509 typedef struct gfc_code
1511 gfc_exec_op op;
1513 struct gfc_code *block, *next;
1514 locus loc;
1516 gfc_st_label *here, *label, *label2, *label3;
1517 gfc_symtree *symtree;
1518 gfc_expr *expr, *expr2;
1519 /* A name isn't sufficient to identify a subroutine, we need the actual
1520 symbol for the interface definition.
1521 const char *sub_name; */
1522 gfc_symbol *resolved_sym;
1524 union
1526 gfc_actual_arglist *actual;
1527 gfc_case *case_list;
1528 gfc_iterator *iterator;
1529 gfc_alloc *alloc_list;
1530 gfc_open *open;
1531 gfc_close *close;
1532 gfc_filepos *filepos;
1533 gfc_inquire *inquire;
1534 gfc_dt *dt;
1535 gfc_forall_iterator *forall_iterator;
1536 struct gfc_code *whichloop;
1537 int stop_code;
1538 gfc_entry_list *entry;
1539 gfc_omp_clauses *omp_clauses;
1540 const char *omp_name;
1541 gfc_namelist *omp_namelist;
1542 bool omp_bool;
1544 ext; /* Points to additional structures required by statement */
1546 /* Backend_decl is used for cycle and break labels in do loops, and
1547 probably for other constructs as well, once we translate them. */
1548 tree backend_decl;
1550 gfc_code;
1553 /* Storage for DATA statements. */
1554 typedef struct gfc_data_variable
1556 gfc_expr *expr;
1557 gfc_iterator iter;
1558 struct gfc_data_variable *list, *next;
1560 gfc_data_variable;
1563 typedef struct gfc_data_value
1565 unsigned int repeat;
1566 gfc_expr *expr;
1567 struct gfc_data_value *next;
1569 gfc_data_value;
1572 typedef struct gfc_data
1574 gfc_data_variable *var;
1575 gfc_data_value *value;
1576 locus where;
1578 struct gfc_data *next;
1580 gfc_data;
1582 #define gfc_get_data_variable() gfc_getmem(sizeof(gfc_data_variable))
1583 #define gfc_get_data_value() gfc_getmem(sizeof(gfc_data_value))
1584 #define gfc_get_data() gfc_getmem(sizeof(gfc_data))
1587 /* Structure for holding compile options */
1588 typedef struct
1590 char *module_dir;
1591 gfc_source_form source_form;
1592 /* When fixed_line_length or free_line_length are 0, the whole line is used.
1594 Default is -1, the maximum line length mandated by the respective source
1595 form is used:
1596 for FORM_FREE GFC_MAX_LINE (132)
1597 else 72.
1599 If fixed_line_length or free_line_length is not 0 nor -1 then the user has
1600 requested a specific line-length.
1602 If the user requests a fixed_line_length <7 then gfc_init_options()
1603 emits a fatal error. */
1604 int fixed_line_length; /* maximum line length in fixed-form. */
1605 int free_line_length; /* maximum line length in free-form. */
1606 int max_identifier_length;
1607 int verbose;
1609 int warn_aliasing;
1610 int warn_ampersand;
1611 int warn_conversion;
1612 int warn_implicit_interface;
1613 int warn_line_truncation;
1614 int warn_surprising;
1615 int warn_tabs;
1616 int warn_underflow;
1617 int warn_unused_labels;
1619 int flag_all_intrinsics;
1620 int flag_default_double;
1621 int flag_default_integer;
1622 int flag_default_real;
1623 int flag_dollar_ok;
1624 int flag_underscoring;
1625 int flag_second_underscore;
1626 int flag_implicit_none;
1627 int flag_max_stack_var_size;
1628 int flag_module_access_private;
1629 int flag_no_backend;
1630 int flag_pack_derived;
1631 int flag_repack_arrays;
1632 int flag_preprocessed;
1633 int flag_f2c;
1634 int flag_automatic;
1635 int flag_backslash;
1636 int flag_cray_pointer;
1637 int flag_d_lines;
1638 int flag_openmp;
1640 int q_kind;
1642 int fpe;
1644 int warn_std;
1645 int allow_std;
1646 int warn_nonstd_intrinsics;
1647 int fshort_enums;
1648 int convert;
1649 int record_marker;
1651 gfc_option_t;
1653 extern gfc_option_t gfc_option;
1656 /* Constructor nodes for array and structure constructors. */
1657 typedef struct gfc_constructor
1659 gfc_expr *expr;
1660 gfc_iterator *iterator;
1661 locus where;
1662 struct gfc_constructor *next;
1663 struct
1665 mpz_t offset; /* Record the offset of array element which appears in
1666 data statement like "data a(5)/4/". */
1667 gfc_component *component; /* Record the component being initialized. */
1670 mpz_t repeat; /* Record the repeat number of initial values in data
1671 statement like "data a/5*10/". */
1673 gfc_constructor;
1676 typedef struct iterator_stack
1678 gfc_symtree *variable;
1679 mpz_t value;
1680 struct iterator_stack *prev;
1682 iterator_stack;
1683 extern iterator_stack *iter_stack;
1685 /************************ Function prototypes *************************/
1687 /* data.c */
1688 void gfc_formalize_init_value (gfc_symbol *);
1689 void gfc_get_section_index (gfc_array_ref *, mpz_t *, mpz_t *);
1690 void gfc_assign_data_value (gfc_expr *, gfc_expr *, mpz_t);
1691 void gfc_assign_data_value_range (gfc_expr *, gfc_expr *, mpz_t, mpz_t);
1692 void gfc_advance_section (mpz_t *, gfc_array_ref *, mpz_t *);
1694 /* scanner.c */
1695 void gfc_scanner_done_1 (void);
1696 void gfc_scanner_init_1 (void);
1698 void gfc_add_include_path (const char *);
1699 void gfc_release_include_path (void);
1700 FILE *gfc_open_included_file (const char *, bool);
1702 int gfc_at_end (void);
1703 int gfc_at_eof (void);
1704 int gfc_at_bol (void);
1705 int gfc_at_eol (void);
1706 void gfc_advance_line (void);
1707 int gfc_check_include (void);
1709 void gfc_skip_comments (void);
1710 int gfc_next_char_literal (int);
1711 int gfc_next_char (void);
1712 int gfc_peek_char (void);
1713 void gfc_error_recovery (void);
1714 void gfc_gobble_whitespace (void);
1715 try gfc_new_file (void);
1716 const char * gfc_read_orig_filename (const char *, const char **);
1718 extern gfc_source_form gfc_current_form;
1719 extern const char *gfc_source_file;
1720 extern locus gfc_current_locus;
1722 /* misc.c */
1723 void *gfc_getmem (size_t) ATTRIBUTE_MALLOC;
1724 void gfc_free (void *);
1725 int gfc_terminal_width(void);
1726 void gfc_clear_ts (gfc_typespec *);
1727 FILE *gfc_open_file (const char *);
1728 const char *gfc_basic_typename (bt);
1729 const char *gfc_typename (gfc_typespec *);
1731 #define gfc_op2string(OP) (OP == INTRINSIC_ASSIGN ? \
1732 "=" : gfc_code2string (intrinsic_operators, OP))
1734 const char *gfc_code2string (const mstring *, int);
1735 int gfc_string2code (const mstring *, const char *);
1736 const char *gfc_intent_string (sym_intent);
1738 void gfc_init_1 (void);
1739 void gfc_init_2 (void);
1740 void gfc_done_1 (void);
1741 void gfc_done_2 (void);
1743 /* options.c */
1744 unsigned int gfc_init_options (unsigned int, const char **);
1745 int gfc_handle_option (size_t, const char *, int);
1746 bool gfc_post_options (const char **);
1748 /* iresolve.c */
1749 const char * gfc_get_string (const char *, ...) ATTRIBUTE_PRINTF_1;
1751 /* error.c */
1753 typedef struct gfc_error_buf
1755 int flag;
1756 size_t allocated, index;
1757 char *message;
1758 } gfc_error_buf;
1760 void gfc_error_init_1 (void);
1761 void gfc_buffer_error (int);
1763 void gfc_warning (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
1764 void gfc_warning_now (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
1765 void gfc_clear_warning (void);
1766 void gfc_warning_check (void);
1768 void gfc_error (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
1769 void gfc_error_now (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
1770 void gfc_fatal_error (const char *, ...) ATTRIBUTE_NORETURN ATTRIBUTE_GCC_GFC(1,2);
1771 void gfc_internal_error (const char *, ...) ATTRIBUTE_NORETURN ATTRIBUTE_GCC_GFC(1,2);
1772 void gfc_clear_error (void);
1773 int gfc_error_check (void);
1775 notification gfc_notification_std (int);
1776 try gfc_notify_std (int, const char *, ...) ATTRIBUTE_GCC_GFC(2,3);
1778 /* A general purpose syntax error. */
1779 #define gfc_syntax_error(ST) \
1780 gfc_error ("Syntax error in %s statement at %C", gfc_ascii_statement (ST));
1782 void gfc_push_error (gfc_error_buf *);
1783 void gfc_pop_error (gfc_error_buf *);
1784 void gfc_free_error (gfc_error_buf *);
1786 void gfc_status (const char *, ...) ATTRIBUTE_PRINTF_1;
1787 void gfc_status_char (char);
1789 void gfc_get_errors (int *, int *);
1791 /* arith.c */
1792 void gfc_arith_init_1 (void);
1793 void gfc_arith_done_1 (void);
1794 gfc_expr *gfc_enum_initializer (gfc_expr *, locus);
1795 arith gfc_check_integer_range (mpz_t p, int kind);
1797 /* trans-types.c */
1798 int gfc_validate_kind (bt, int, bool);
1799 extern int gfc_index_integer_kind;
1800 extern int gfc_default_integer_kind;
1801 extern int gfc_max_integer_kind;
1802 extern int gfc_default_real_kind;
1803 extern int gfc_default_double_kind;
1804 extern int gfc_default_character_kind;
1805 extern int gfc_default_logical_kind;
1806 extern int gfc_default_complex_kind;
1807 extern int gfc_c_int_kind;
1809 /* symbol.c */
1810 void gfc_clear_new_implicit (void);
1811 try gfc_add_new_implicit_range (int, int);
1812 try gfc_merge_new_implicit (gfc_typespec *);
1813 void gfc_set_implicit_none (void);
1815 gfc_typespec *gfc_get_default_type (gfc_symbol *, gfc_namespace *);
1816 try gfc_set_default_type (gfc_symbol *, int, gfc_namespace *);
1818 void gfc_set_component_attr (gfc_component *, symbol_attribute *);
1819 void gfc_get_component_attr (symbol_attribute *, gfc_component *);
1821 void gfc_set_sym_referenced (gfc_symbol * sym);
1823 try gfc_add_attribute (symbol_attribute *, locus *, unsigned int);
1824 try gfc_add_allocatable (symbol_attribute *, locus *);
1825 try gfc_add_dimension (symbol_attribute *, const char *, locus *);
1826 try gfc_add_external (symbol_attribute *, locus *);
1827 try gfc_add_intrinsic (symbol_attribute *, locus *);
1828 try gfc_add_optional (symbol_attribute *, locus *);
1829 try gfc_add_pointer (symbol_attribute *, locus *);
1830 try gfc_add_cray_pointer (symbol_attribute *, locus *);
1831 try gfc_add_cray_pointee (symbol_attribute *, locus *);
1832 try gfc_mod_pointee_as (gfc_array_spec *as);
1833 try gfc_add_result (symbol_attribute *, const char *, locus *);
1834 try gfc_add_save (symbol_attribute *, const char *, locus *);
1835 try gfc_add_threadprivate (symbol_attribute *, const char *, locus *);
1836 try gfc_add_saved_common (symbol_attribute *, locus *);
1837 try gfc_add_target (symbol_attribute *, locus *);
1838 try gfc_add_dummy (symbol_attribute *, const char *, locus *);
1839 try gfc_add_generic (symbol_attribute *, const char *, locus *);
1840 try gfc_add_common (symbol_attribute *, locus *);
1841 try gfc_add_in_common (symbol_attribute *, const char *, locus *);
1842 try gfc_add_in_equivalence (symbol_attribute *, const char *, locus *);
1843 try gfc_add_data (symbol_attribute *, const char *, locus *);
1844 try gfc_add_in_namelist (symbol_attribute *, const char *, locus *);
1845 try gfc_add_sequence (symbol_attribute *, const char *, locus *);
1846 try gfc_add_elemental (symbol_attribute *, locus *);
1847 try gfc_add_pure (symbol_attribute *, locus *);
1848 try gfc_add_recursive (symbol_attribute *, locus *);
1849 try gfc_add_function (symbol_attribute *, const char *, locus *);
1850 try gfc_add_subroutine (symbol_attribute *, const char *, locus *);
1852 try gfc_add_access (symbol_attribute *, gfc_access, const char *, locus *);
1853 try gfc_add_flavor (symbol_attribute *, sym_flavor, const char *, locus *);
1854 try gfc_add_entry (symbol_attribute *, const char *, locus *);
1855 try gfc_add_procedure (symbol_attribute *, procedure_type,
1856 const char *, locus *);
1857 try gfc_add_intent (symbol_attribute *, sym_intent, locus *);
1858 try gfc_add_explicit_interface (gfc_symbol *, ifsrc,
1859 gfc_formal_arglist *, locus *);
1860 try gfc_add_type (gfc_symbol *, gfc_typespec *, locus *);
1862 void gfc_clear_attr (symbol_attribute *);
1863 try gfc_missing_attr (symbol_attribute *, locus *);
1864 try gfc_copy_attr (symbol_attribute *, symbol_attribute *, locus *);
1866 try gfc_add_component (gfc_symbol *, const char *, gfc_component **);
1867 gfc_symbol *gfc_use_derived (gfc_symbol *);
1868 gfc_symtree *gfc_use_derived_tree (gfc_symtree *);
1869 gfc_component *gfc_find_component (gfc_symbol *, const char *);
1871 gfc_st_label *gfc_get_st_label (int);
1872 void gfc_free_st_label (gfc_st_label *);
1873 void gfc_define_st_label (gfc_st_label *, gfc_sl_type, locus *);
1874 try gfc_reference_st_label (gfc_st_label *, gfc_sl_type);
1876 gfc_namespace *gfc_get_namespace (gfc_namespace *, int);
1877 gfc_symtree *gfc_new_symtree (gfc_symtree **, const char *);
1878 gfc_symtree *gfc_find_symtree (gfc_symtree *, const char *);
1879 gfc_user_op *gfc_get_uop (const char *);
1880 gfc_user_op *gfc_find_uop (const char *, gfc_namespace *);
1881 void gfc_free_symbol (gfc_symbol *);
1882 gfc_symbol *gfc_new_symbol (const char *, gfc_namespace *);
1883 int gfc_find_symbol (const char *, gfc_namespace *, int, gfc_symbol **);
1884 int gfc_find_sym_tree (const char *, gfc_namespace *, int, gfc_symtree **);
1885 int gfc_get_symbol (const char *, gfc_namespace *, gfc_symbol **);
1886 int gfc_get_sym_tree (const char *, gfc_namespace *, gfc_symtree **);
1887 int gfc_get_ha_symbol (const char *, gfc_symbol **);
1888 int gfc_get_ha_sym_tree (const char *, gfc_symtree **);
1890 int gfc_symbols_could_alias (gfc_symbol *, gfc_symbol *);
1892 void gfc_undo_symbols (void);
1893 void gfc_commit_symbols (void);
1894 void gfc_commit_symbol (gfc_symbol * sym);
1895 void gfc_free_namespace (gfc_namespace *);
1897 void gfc_symbol_init_2 (void);
1898 void gfc_symbol_done_2 (void);
1900 void gfc_traverse_symtree (gfc_symtree *, void (*)(gfc_symtree *));
1901 void gfc_traverse_ns (gfc_namespace *, void (*)(gfc_symbol *));
1902 void gfc_traverse_user_op (gfc_namespace *, void (*)(gfc_user_op *));
1903 void gfc_save_all (gfc_namespace *);
1905 void gfc_symbol_state (void);
1907 gfc_gsymbol *gfc_get_gsymbol (const char *);
1908 gfc_gsymbol *gfc_find_gsymbol (gfc_gsymbol *, const char *);
1910 /* intrinsic.c */
1911 extern int gfc_init_expr;
1913 /* Given a symbol that we have decided is intrinsic, mark it as such
1914 by placing it into a special module that is otherwise impossible to
1915 read or write. */
1917 #define gfc_intrinsic_symbol(SYM) SYM->module = gfc_get_string ("(intrinsic)")
1919 void gfc_intrinsic_init_1 (void);
1920 void gfc_intrinsic_done_1 (void);
1922 char gfc_type_letter (bt);
1923 gfc_symbol * gfc_get_intrinsic_sub_symbol (const char *);
1924 try gfc_convert_type (gfc_expr *, gfc_typespec *, int);
1925 try gfc_convert_type_warn (gfc_expr *, gfc_typespec *, int, int);
1926 int gfc_generic_intrinsic (const char *);
1927 int gfc_specific_intrinsic (const char *);
1928 int gfc_intrinsic_name (const char *, int);
1929 gfc_intrinsic_sym *gfc_find_function (const char *);
1931 match gfc_intrinsic_func_interface (gfc_expr *, int);
1932 match gfc_intrinsic_sub_interface (gfc_code *, int);
1934 /* simplify.c */
1935 void gfc_simplify_init_1 (void);
1937 /* match.c -- FIXME */
1938 void gfc_free_iterator (gfc_iterator *, int);
1939 void gfc_free_forall_iterator (gfc_forall_iterator *);
1940 void gfc_free_alloc_list (gfc_alloc *);
1941 void gfc_free_namelist (gfc_namelist *);
1942 void gfc_free_equiv (gfc_equiv *);
1943 void gfc_free_data (gfc_data *);
1944 void gfc_free_case_list (gfc_case *);
1946 /* matchexp.c -- FIXME too? */
1947 gfc_expr *gfc_get_parentheses (gfc_expr *);
1949 /* openmp.c */
1950 void gfc_free_omp_clauses (gfc_omp_clauses *);
1951 void gfc_resolve_omp_directive (gfc_code *, gfc_namespace *);
1952 void gfc_resolve_do_iterator (gfc_code *, gfc_symbol *);
1953 void gfc_resolve_omp_parallel_blocks (gfc_code *, gfc_namespace *);
1954 void gfc_resolve_omp_do_blocks (gfc_code *, gfc_namespace *);
1956 /* expr.c */
1957 void gfc_free_actual_arglist (gfc_actual_arglist *);
1958 gfc_actual_arglist *gfc_copy_actual_arglist (gfc_actual_arglist *);
1959 const char *gfc_extract_int (gfc_expr *, int *);
1961 gfc_expr *gfc_build_conversion (gfc_expr *);
1962 void gfc_free_ref_list (gfc_ref *);
1963 void gfc_type_convert_binary (gfc_expr *);
1964 int gfc_is_constant_expr (gfc_expr *);
1965 try gfc_simplify_expr (gfc_expr *, int);
1966 int gfc_has_vector_index (gfc_expr *);
1968 gfc_expr *gfc_get_expr (void);
1969 void gfc_free_expr (gfc_expr *);
1970 void gfc_replace_expr (gfc_expr *, gfc_expr *);
1971 gfc_expr *gfc_int_expr (int);
1972 gfc_expr *gfc_logical_expr (int, locus *);
1973 mpz_t *gfc_copy_shape (mpz_t *, int);
1974 mpz_t *gfc_copy_shape_excluding (mpz_t *, int, gfc_expr *);
1975 gfc_expr *gfc_copy_expr (gfc_expr *);
1977 try gfc_specification_expr (gfc_expr *);
1979 int gfc_numeric_ts (gfc_typespec *);
1980 int gfc_kind_max (gfc_expr *, gfc_expr *);
1982 try gfc_check_conformance (const char *, gfc_expr *, gfc_expr *);
1983 try gfc_check_assign (gfc_expr *, gfc_expr *, int);
1984 try gfc_check_pointer_assign (gfc_expr *, gfc_expr *);
1985 try gfc_check_assign_symbol (gfc_symbol *, gfc_expr *);
1987 gfc_expr *gfc_default_initializer (gfc_typespec *);
1988 gfc_expr *gfc_get_variable_expr (gfc_symtree *);
1990 void gfc_expr_set_symbols_referenced (gfc_expr * expr);
1992 /* st.c */
1993 extern gfc_code new_st;
1995 void gfc_clear_new_st (void);
1996 gfc_code *gfc_get_code (void);
1997 gfc_code *gfc_append_code (gfc_code *, gfc_code *);
1998 void gfc_free_statement (gfc_code *);
1999 void gfc_free_statements (gfc_code *);
2001 /* resolve.c */
2002 try gfc_resolve_expr (gfc_expr *);
2003 void gfc_resolve (gfc_namespace *);
2004 void gfc_resolve_blocks (gfc_code *, gfc_namespace *);
2005 int gfc_impure_variable (gfc_symbol *);
2006 int gfc_pure (gfc_symbol *);
2007 int gfc_elemental (gfc_symbol *);
2008 try gfc_resolve_iterator (gfc_iterator *, bool);
2009 try gfc_resolve_index (gfc_expr *, int);
2010 try gfc_resolve_dim_arg (gfc_expr *);
2011 int gfc_is_formal_arg (void);
2013 /* array.c */
2014 void gfc_free_array_spec (gfc_array_spec *);
2015 gfc_array_ref *gfc_copy_array_ref (gfc_array_ref *);
2017 try gfc_set_array_spec (gfc_symbol *, gfc_array_spec *, locus *);
2018 gfc_array_spec *gfc_copy_array_spec (gfc_array_spec *);
2019 try gfc_resolve_array_spec (gfc_array_spec *, int);
2021 int gfc_compare_array_spec (gfc_array_spec *, gfc_array_spec *);
2023 gfc_expr *gfc_start_constructor (bt, int, locus *);
2024 void gfc_append_constructor (gfc_expr *, gfc_expr *);
2025 void gfc_free_constructor (gfc_constructor *);
2026 void gfc_simplify_iterator_var (gfc_expr *);
2027 try gfc_expand_constructor (gfc_expr *);
2028 int gfc_constant_ac (gfc_expr *);
2029 int gfc_expanded_ac (gfc_expr *);
2030 try gfc_resolve_array_constructor (gfc_expr *);
2031 try gfc_check_constructor_type (gfc_expr *);
2032 try gfc_check_iter_variable (gfc_expr *);
2033 try gfc_check_constructor (gfc_expr *, try (*)(gfc_expr *));
2034 gfc_constructor *gfc_copy_constructor (gfc_constructor * src);
2035 gfc_expr *gfc_get_array_element (gfc_expr *, int);
2036 try gfc_array_size (gfc_expr *, mpz_t *);
2037 try gfc_array_dimen_size (gfc_expr *, int, mpz_t *);
2038 try gfc_array_ref_shape (gfc_array_ref *, mpz_t *);
2039 gfc_array_ref *gfc_find_array_ref (gfc_expr *);
2040 void gfc_insert_constructor (gfc_expr *, gfc_constructor *);
2041 gfc_constructor *gfc_get_constructor (void);
2042 tree gfc_conv_array_initializer (tree type, gfc_expr * expr);
2043 try spec_size (gfc_array_spec *, mpz_t *);
2044 int gfc_is_compile_time_shape (gfc_array_spec *);
2046 /* interface.c -- FIXME: some of these should be in symbol.c */
2047 void gfc_free_interface (gfc_interface *);
2048 int gfc_compare_derived_types (gfc_symbol *, gfc_symbol *);
2049 int gfc_compare_types (gfc_typespec *, gfc_typespec *);
2050 void gfc_check_interfaces (gfc_namespace *);
2051 void gfc_procedure_use (gfc_symbol *, gfc_actual_arglist **, locus *);
2052 gfc_symbol *gfc_search_interface (gfc_interface *, int,
2053 gfc_actual_arglist **);
2054 try gfc_extend_expr (gfc_expr *);
2055 void gfc_free_formal_arglist (gfc_formal_arglist *);
2056 try gfc_extend_assign (gfc_code *, gfc_namespace *);
2057 try gfc_add_interface (gfc_symbol * sym);
2059 /* io.c */
2060 extern gfc_st_label format_asterisk;
2062 void gfc_free_open (gfc_open *);
2063 try gfc_resolve_open (gfc_open *);
2064 void gfc_free_close (gfc_close *);
2065 try gfc_resolve_close (gfc_close *);
2066 void gfc_free_filepos (gfc_filepos *);
2067 try gfc_resolve_filepos (gfc_filepos *);
2068 void gfc_free_inquire (gfc_inquire *);
2069 try gfc_resolve_inquire (gfc_inquire *);
2070 void gfc_free_dt (gfc_dt *);
2071 try gfc_resolve_dt (gfc_dt *);
2073 /* module.c */
2074 void gfc_module_init_2 (void);
2075 void gfc_module_done_2 (void);
2076 void gfc_dump_module (const char *, int);
2077 bool gfc_check_access (gfc_access, gfc_access);
2079 /* primary.c */
2080 symbol_attribute gfc_variable_attr (gfc_expr *, gfc_typespec *);
2081 symbol_attribute gfc_expr_attr (gfc_expr *);
2083 /* trans.c */
2084 void gfc_generate_code (gfc_namespace *);
2085 void gfc_generate_module_code (gfc_namespace *);
2087 /* bbt.c */
2088 typedef int (*compare_fn) (void *, void *);
2089 void gfc_insert_bbt (void *, void *, compare_fn);
2090 void gfc_delete_bbt (void *, void *, compare_fn);
2092 /* dump-parse-tree.c */
2093 void gfc_show_namespace (gfc_namespace *);
2095 /* parse.c */
2096 try gfc_parse_file (void);
2097 void global_used (gfc_gsymbol *, locus *);
2099 /* dependency.c */
2100 int gfc_dep_compare_expr (gfc_expr *, gfc_expr *);
2102 #endif /* GCC_GFORTRAN_H */