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