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