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