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