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