]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/fortran/gfortran.h
[multiple changes]
[thirdparty/gcc.git] / gcc / fortran / gfortran.h
CommitLineData
6de9cd9a 1/* gfortran header file
fa502cb2
PT
2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008,
3 2009, 2010
840bd9f7 4 Free Software Foundation, Inc.
6de9cd9a
DN
5 Contributed by Andy Vaught
6
9fc4d79b 7This file is part of GCC.
6de9cd9a 8
9fc4d79b
TS
9GCC is free software; you can redistribute it and/or modify it under
10the terms of the GNU General Public License as published by the Free
d234d788 11Software Foundation; either version 3, or (at your option) any later
9fc4d79b 12version.
6de9cd9a 13
9fc4d79b
TS
14GCC is distributed in the hope that it will be useful, but WITHOUT ANY
15WARRANTY; without even the implied warranty of MERCHANTABILITY or
16FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17for more details.
6de9cd9a
DN
18
19You should have received a copy of the GNU General Public License
d234d788
NC
20along with GCC; see the file COPYING3. If not see
21<http://www.gnu.org/licenses/>. */
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
d74b97cc
FXC
32/* Declarations common to the front-end and library are put in
33 libgfortran/libgfortran_frontend.h */
34#include "libgfortran.h"
35
36
31043f6c 37#include "intl.h"
6de9cd9a 38#include "coretypes.h"
c8cc8542 39#include "input.h"
5868cbf9 40#include "splay-tree.h"
6de9cd9a
DN
41/* The following ifdefs are recommended by the autoconf documentation
42 for any code using alloca. */
43
44/* AIX requires this to be the first thing in the file. */
45#ifdef __GNUC__
46#else /* not __GNUC__ */
47#ifdef HAVE_ALLOCA_H
48#include <alloca.h>
49#else /* do not HAVE_ALLOCA_H */
50#ifdef _AIX
51#pragma alloca
52#else
53#ifndef alloca /* predefined by HP cc +Olibcalls */
54char *alloca ();
55#endif /* not predefined */
56#endif /* not _AIX */
57#endif /* do not HAVE_ALLOCA_H */
58#endif /* not __GNUC__ */
59
6de9cd9a
DN
60/* Major control parameters. */
61
1dde8683 62#define GFC_MAX_SYMBOL_LEN 63 /* Must be at least 63 for F2003. */
a8b3b0b6
CR
63#define GFC_MAX_BINDING_LABEL_LEN 126 /* (2 * GFC_MAX_SYMBOL_LEN) */
64#define GFC_MAX_LINE 132 /* Characters beyond this are not seen. */
6de9cd9a 65#define GFC_LETTERS 26 /* Number of letters in the alphabet. */
6de9cd9a 66
07b3bbf2
TK
67#define MAX_SUBRECORD_LENGTH 2147483639 /* 2**31-9 */
68
69
6de9cd9a
DN
70#define free(x) Use_gfc_free_instead_of_free()
71#define gfc_is_whitespace(c) ((c==' ') || (c=='\t'))
72
73#ifndef NULL
74#define NULL ((void *) 0)
75#endif
76
77/* Stringization. */
78#define stringize(x) expand_macro(x)
79#define expand_macro(x) # x
80
df2fba9e 81/* For the runtime library, a standard prefix is a requirement to
6de9cd9a
DN
82 avoid cluttering the namespace with things nobody asked for. It's
83 ugly to look at and a pain to type when you add the prefix by hand,
84 so we hide it behind a macro. */
85#define PREFIX(x) "_gfortran_" x
5b200ac2 86#define PREFIX_LEN 10
6de9cd9a 87
30aabb86
PT
88#define BLANK_COMMON_NAME "__BLNK__"
89
6de9cd9a
DN
90/* Macro to initialize an mstring structure. */
91#define minit(s, t) { s, NULL, t }
92
93/* Structure for storing strings to be matched by gfc_match_string. */
94typedef struct
95{
96 const char *string;
97 const char *mp;
98 int tag;
99}
100mstring;
101
102
944b8b35 103
6de9cd9a
DN
104/*************************** Enums *****************************/
105
ad7ee6f8
JD
106/* Used when matching and resolving data I/O transfer statements. */
107
108typedef enum
109{ M_READ, M_WRITE, M_PRINT, M_INQUIRE }
110io_kind;
111
6de9cd9a
DN
112/* The author remains confused to this day about the convention of
113 returning '0' for 'SUCCESS'... or was it the other way around? The
114 following enum makes things much more readable. We also start
115 values off at one instead of zero. */
116
117typedef enum
118{ SUCCESS = 1, FAILURE }
8b11b59f 119gfc_try;
6de9cd9a 120
8f0d39a8
FXC
121/* This is returned by gfc_notification_std to know if, given the flags
122 that were given (-std=, -pedantic) we should issue an error, a warning
123 or nothing. */
124
125typedef enum
126{ SILENT, WARNING, ERROR }
127notification;
128
6de9cd9a
DN
129/* Matchers return one of these three values. The difference between
130 MATCH_NO and MATCH_ERROR is that MATCH_ERROR means that a match was
131 successful, but that something non-syntactic is wrong and an error
132 has already been issued. */
133
134typedef enum
135{ MATCH_NO = 1, MATCH_YES, MATCH_ERROR }
136match;
137
138typedef enum
139{ FORM_FREE, FORM_FIXED, FORM_UNKNOWN }
140gfc_source_form;
141
1207ac67 142/* Basic types. BT_VOID is used by ISO C Binding so funcs like c_f_pointer
a8b3b0b6 143 can take any arg with the pointer attribute as a param. */
6de9cd9a 144typedef enum
cf2b3c22
TB
145{ BT_UNKNOWN = 1, BT_INTEGER, BT_REAL, BT_COMPLEX, BT_LOGICAL, BT_CHARACTER,
146 BT_DERIVED, BT_CLASS, BT_PROCEDURE, BT_HOLLERITH, BT_VOID
6de9cd9a
DN
147}
148bt;
149
150/* Expression node types. */
151typedef enum
152{ EXPR_OP = 1, EXPR_FUNCTION, EXPR_CONSTANT, EXPR_VARIABLE,
713485cc 153 EXPR_SUBSTRING, EXPR_STRUCTURE, EXPR_ARRAY, EXPR_NULL, EXPR_COMPCALL, EXPR_PPC
6de9cd9a
DN
154}
155expr_t;
156
157/* Array types. */
158typedef enum
159{ AS_EXPLICIT = 1, AS_ASSUMED_SHAPE, AS_DEFERRED,
160 AS_ASSUMED_SIZE, AS_UNKNOWN
161}
162array_type;
163
164typedef enum
165{ AR_FULL = 1, AR_ELEMENT, AR_SECTION, AR_UNKNOWN }
166ar_type;
167
168/* Statement label types. */
169typedef enum
170{ ST_LABEL_UNKNOWN = 1, ST_LABEL_TARGET,
171 ST_LABEL_BAD_TARGET, ST_LABEL_FORMAT
172}
173gfc_sl_type;
174
175/* Intrinsic operators. */
176typedef enum
177{ GFC_INTRINSIC_BEGIN = 0,
178 INTRINSIC_NONE = -1, INTRINSIC_UPLUS = GFC_INTRINSIC_BEGIN,
179 INTRINSIC_UMINUS, INTRINSIC_PLUS, INTRINSIC_MINUS, INTRINSIC_TIMES,
180 INTRINSIC_DIVIDE, INTRINSIC_POWER, INTRINSIC_CONCAT,
181 INTRINSIC_AND, INTRINSIC_OR, INTRINSIC_EQV, INTRINSIC_NEQV,
3bed9dd0 182 /* ==, /=, >, >=, <, <= */
6de9cd9a 183 INTRINSIC_EQ, INTRINSIC_NE, INTRINSIC_GT, INTRINSIC_GE,
3bed9dd0
DF
184 INTRINSIC_LT, INTRINSIC_LE,
185 /* .EQ., .NE., .GT., .GE., .LT., .LE. (OS = Old-Style) */
186 INTRINSIC_EQ_OS, INTRINSIC_NE_OS, INTRINSIC_GT_OS, INTRINSIC_GE_OS,
187 INTRINSIC_LT_OS, INTRINSIC_LE_OS,
188 INTRINSIC_NOT, INTRINSIC_USER, INTRINSIC_ASSIGN,
189 INTRINSIC_PARENTHESES, GFC_INTRINSIC_END /* Sentinel */
6de9cd9a
DN
190}
191gfc_intrinsic_op;
192
193
6de9cd9a
DN
194/* This macro is the number of intrinsic operators that exist.
195 Assumptions are made about the numbering of the interface_op enums. */
196#define GFC_INTRINSIC_OPS GFC_INTRINSIC_END
197
198/* Arithmetic results. */
199typedef enum
f8e566e5 200{ ARITH_OK = 1, ARITH_OVERFLOW, ARITH_UNDERFLOW, ARITH_NAN,
6bb62671 201 ARITH_DIV0, ARITH_INCOMMENSURATE, ARITH_ASYMMETRIC, ARITH_PROHIBIT
6de9cd9a
DN
202}
203arith;
204
205/* Statements. */
206typedef enum
207{
03af1e4c
DK
208 ST_ARITHMETIC_IF, ST_ALLOCATE, ST_ATTR_DECL, ST_ASSOCIATE,
209 ST_BACKSPACE, ST_BLOCK, ST_BLOCK_DATA,
6de9cd9a
DN
210 ST_CALL, ST_CASE, ST_CLOSE, ST_COMMON, ST_CONTINUE, ST_CONTAINS, ST_CYCLE,
211 ST_DATA, ST_DATA_DECL, ST_DEALLOCATE, ST_DO, ST_ELSE, ST_ELSEIF,
03af1e4c
DK
212 ST_ELSEWHERE, ST_END_ASSOCIATE, ST_END_BLOCK, ST_END_BLOCK_DATA,
213 ST_ENDDO, ST_IMPLIED_ENDDO,
34523524 214 ST_END_FILE, ST_FINAL, ST_FLUSH, ST_END_FORALL, ST_END_FUNCTION, ST_ENDIF,
6403ec5f
JB
215 ST_END_INTERFACE, ST_END_MODULE, ST_END_PROGRAM, ST_END_SELECT,
216 ST_END_SUBROUTINE, ST_END_WHERE, ST_END_TYPE, ST_ENTRY, ST_EQUIVALENCE,
d0a4a61c
TB
217 ST_ERROR_STOP, ST_EXIT, ST_FORALL, ST_FORALL_BLOCK, ST_FORMAT, ST_FUNCTION,
218 ST_GOTO, ST_IF_BLOCK, ST_IMPLICIT, ST_IMPLICIT_NONE, ST_IMPORT,
219 ST_INQUIRE, ST_INTERFACE, ST_SYNC_ALL, ST_SYNC_MEMORY, ST_SYNC_IMAGES,
6403ec5f
JB
220 ST_PARAMETER, ST_MODULE, ST_MODULE_PROC, ST_NAMELIST, ST_NULLIFY, ST_OPEN,
221 ST_PAUSE, ST_PRIVATE, ST_PROGRAM, ST_PUBLIC, ST_READ, ST_RETURN, ST_REWIND,
6f0f0b2e
JD
222 ST_STOP, ST_SUBROUTINE, ST_TYPE, ST_USE, ST_WHERE_BLOCK, ST_WHERE, ST_WAIT,
223 ST_WRITE, ST_ASSIGNMENT, ST_POINTER_ASSIGNMENT, ST_SELECT_CASE, ST_SEQUENCE,
6403ec5f 224 ST_SIMPLE_IF, ST_STATEMENT_FUNCTION, ST_DERIVED_DECL, ST_LABEL_ASSIGNMENT,
cf2b3c22 225 ST_ENUM, ST_ENUMERATOR, ST_END_ENUM, ST_SELECT_TYPE, ST_TYPE_IS, ST_CLASS_IS,
6c7a4dfd
JJ
226 ST_OMP_ATOMIC, ST_OMP_BARRIER, ST_OMP_CRITICAL, ST_OMP_END_CRITICAL,
227 ST_OMP_END_DO, ST_OMP_END_MASTER, ST_OMP_END_ORDERED, ST_OMP_END_PARALLEL,
228 ST_OMP_END_PARALLEL_DO, ST_OMP_END_PARALLEL_SECTIONS,
229 ST_OMP_END_PARALLEL_WORKSHARE, ST_OMP_END_SECTIONS, ST_OMP_END_SINGLE,
230 ST_OMP_END_WORKSHARE, ST_OMP_DO, ST_OMP_FLUSH, ST_OMP_MASTER, ST_OMP_ORDERED,
231 ST_OMP_PARALLEL, ST_OMP_PARALLEL_DO, ST_OMP_PARALLEL_SECTIONS,
232 ST_OMP_PARALLEL_WORKSHARE, ST_OMP_SECTIONS, ST_OMP_SECTION, ST_OMP_SINGLE,
a68ab351 233 ST_OMP_THREADPRIVATE, ST_OMP_WORKSHARE, ST_OMP_TASK, ST_OMP_END_TASK,
d0a4a61c 234 ST_OMP_TASKWAIT, ST_PROCEDURE, ST_GENERIC, ST_CRITICAL, ST_END_CRITICAL,
1c8bcdf7 235 ST_GET_FCN_CHARACTERISTICS, ST_NONE
6de9cd9a
DN
236}
237gfc_statement;
238
239
240/* Types of interfaces that we can have. Assignment interfaces are
241 considered to be intrinsic operators. */
242typedef enum
243{
244 INTERFACE_NAMELESS = 1, INTERFACE_GENERIC,
9e1d712c 245 INTERFACE_INTRINSIC_OP, INTERFACE_USER_OP, INTERFACE_ABSTRACT
6de9cd9a
DN
246}
247interface_type;
248
249/* Symbol flavors: these are all mutually exclusive.
250 10 elements = 4 bits. */
5f42ddb0 251typedef enum sym_flavor
6de9cd9a
DN
252{
253 FL_UNKNOWN = 0, FL_PROGRAM, FL_BLOCK_DATA, FL_MODULE, FL_VARIABLE,
a8b3b0b6
CR
254 FL_PARAMETER, FL_LABEL, FL_PROCEDURE, FL_DERIVED, FL_NAMELIST,
255 FL_VOID
6de9cd9a
DN
256}
257sym_flavor;
258
259/* Procedure types. 7 elements = 3 bits. */
5f42ddb0 260typedef enum procedure_type
6de9cd9a
DN
261{ PROC_UNKNOWN, PROC_MODULE, PROC_INTERNAL, PROC_DUMMY,
262 PROC_INTRINSIC, PROC_ST_FUNCTION, PROC_EXTERNAL
263}
264procedure_type;
265
266/* Intent types. */
5f42ddb0 267typedef enum sym_intent
6de9cd9a
DN
268{ INTENT_UNKNOWN = 0, INTENT_IN, INTENT_OUT, INTENT_INOUT
269}
270sym_intent;
271
272/* Access types. */
5f42ddb0
KG
273typedef enum gfc_access
274{ ACCESS_UNKNOWN = 0, ACCESS_PUBLIC, ACCESS_PRIVATE
6de9cd9a
DN
275}
276gfc_access;
277
278/* Flags to keep track of where an interface came from.
c73b6478 279 3 elements = 2 bits. */
5f42ddb0 280typedef enum ifsrc
c73b6478
JW
281{ IFSRC_UNKNOWN = 0, /* Interface unknown, only return type may be known. */
282 IFSRC_DECL, /* FUNCTION or SUBROUTINE declaration. */
283 IFSRC_IFBODY /* INTERFACE statement or PROCEDURE statement
284 with explicit interface. */
6de9cd9a
DN
285}
286ifsrc;
287
86bf520d 288/* Whether a SAVE attribute was set explicitly or implicitly. */
5349080d
TB
289typedef enum save_state
290{ SAVE_NONE = 0, SAVE_EXPLICIT, SAVE_IMPLICIT
291}
292save_state;
293
6de9cd9a
DN
294/* Strings for all symbol attributes. We use these for dumping the
295 parse tree, in error messages, and also when reading and writing
296 modules. In symbol.c. */
297extern const mstring flavors[];
298extern const mstring procedures[];
299extern const mstring intents[];
300extern const mstring access_types[];
301extern const mstring ifsrc_types[];
ef7236d2 302extern const mstring save_status[];
6de9cd9a
DN
303
304/* Enumeration of all the generic intrinsic functions. Used by the
305 backend for identification of a function. */
306
cd5ecab6 307enum gfc_isym_id
6de9cd9a
DN
308{
309 /* GFC_ISYM_NONE is used for intrinsics which will never be seen by
df2fba9e 310 the backend (e.g. KIND). */
6de9cd9a 311 GFC_ISYM_NONE = 0,
cd5ecab6 312 GFC_ISYM_ABORT,
6de9cd9a 313 GFC_ISYM_ABS,
a119fc1c 314 GFC_ISYM_ACCESS,
6de9cd9a
DN
315 GFC_ISYM_ACHAR,
316 GFC_ISYM_ACOS,
1e399e23 317 GFC_ISYM_ACOSH,
6de9cd9a
DN
318 GFC_ISYM_ADJUSTL,
319 GFC_ISYM_ADJUSTR,
320 GFC_ISYM_AIMAG,
321 GFC_ISYM_AINT,
cd5ecab6 322 GFC_ISYM_ALARM,
6de9cd9a
DN
323 GFC_ISYM_ALL,
324 GFC_ISYM_ALLOCATED,
5d723e54 325 GFC_ISYM_AND,
cd5ecab6 326 GFC_ISYM_ANINT,
6de9cd9a
DN
327 GFC_ISYM_ANY,
328 GFC_ISYM_ASIN,
1e399e23 329 GFC_ISYM_ASINH,
6de9cd9a
DN
330 GFC_ISYM_ASSOCIATED,
331 GFC_ISYM_ATAN,
332 GFC_ISYM_ATAN2,
cd5ecab6
DF
333 GFC_ISYM_ATANH,
334 GFC_ISYM_BIT_SIZE,
6de9cd9a
DN
335 GFC_ISYM_BTEST,
336 GFC_ISYM_CEILING,
337 GFC_ISYM_CHAR,
f77b6ca3 338 GFC_ISYM_CHDIR,
a119fc1c 339 GFC_ISYM_CHMOD,
6de9cd9a 340 GFC_ISYM_CMPLX,
b41b2534 341 GFC_ISYM_COMMAND_ARGUMENT_COUNT,
5d723e54 342 GFC_ISYM_COMPLEX,
6de9cd9a 343 GFC_ISYM_CONJG,
cd5ecab6 344 GFC_ISYM_CONVERSION,
6de9cd9a
DN
345 GFC_ISYM_COS,
346 GFC_ISYM_COSH,
347 GFC_ISYM_COUNT,
cd5ecab6 348 GFC_ISYM_CPU_TIME,
6de9cd9a 349 GFC_ISYM_CSHIFT,
35059811 350 GFC_ISYM_CTIME,
cd5ecab6 351 GFC_ISYM_DATE_AND_TIME,
6de9cd9a 352 GFC_ISYM_DBLE,
cd5ecab6 353 GFC_ISYM_DIGITS,
6de9cd9a
DN
354 GFC_ISYM_DIM,
355 GFC_ISYM_DOT_PRODUCT,
356 GFC_ISYM_DPROD,
cd5ecab6 357 GFC_ISYM_DTIME,
6de9cd9a 358 GFC_ISYM_EOSHIFT,
cd5ecab6 359 GFC_ISYM_EPSILON,
e8525382
SK
360 GFC_ISYM_ERF,
361 GFC_ISYM_ERFC,
f489fba1 362 GFC_ISYM_ERFC_SCALED,
2bd74949 363 GFC_ISYM_ETIME,
cd5ecab6 364 GFC_ISYM_EXIT,
6de9cd9a
DN
365 GFC_ISYM_EXP,
366 GFC_ISYM_EXPONENT,
cf2b3c22 367 GFC_ISYM_EXTENDS_TYPE_OF,
35059811 368 GFC_ISYM_FDATE,
5d723e54
FXC
369 GFC_ISYM_FGET,
370 GFC_ISYM_FGETC,
6de9cd9a 371 GFC_ISYM_FLOOR,
cd5ecab6 372 GFC_ISYM_FLUSH,
df65f093 373 GFC_ISYM_FNUM,
5d723e54
FXC
374 GFC_ISYM_FPUT,
375 GFC_ISYM_FPUTC,
6de9cd9a 376 GFC_ISYM_FRACTION,
cd5ecab6
DF
377 GFC_ISYM_FREE,
378 GFC_ISYM_FSEEK,
df65f093 379 GFC_ISYM_FSTAT,
5d723e54 380 GFC_ISYM_FTELL,
7bc19392 381 GFC_ISYM_TGAMMA,
cd5ecab6
DF
382 GFC_ISYM_GERROR,
383 GFC_ISYM_GETARG,
384 GFC_ISYM_GET_COMMAND,
385 GFC_ISYM_GET_COMMAND_ARGUMENT,
a8c60d7f 386 GFC_ISYM_GETCWD,
cd5ecab6
DF
387 GFC_ISYM_GETENV,
388 GFC_ISYM_GET_ENVIRONMENT_VARIABLE,
4c0c6b9f 389 GFC_ISYM_GETGID,
cd5ecab6 390 GFC_ISYM_GETLOG,
4c0c6b9f
SK
391 GFC_ISYM_GETPID,
392 GFC_ISYM_GETUID,
cd5ecab6 393 GFC_ISYM_GMTIME,
f77b6ca3 394 GFC_ISYM_HOSTNM,
cd5ecab6 395 GFC_ISYM_HUGE,
f489fba1 396 GFC_ISYM_HYPOT,
6de9cd9a
DN
397 GFC_ISYM_IACHAR,
398 GFC_ISYM_IAND,
b41b2534 399 GFC_ISYM_IARGC,
6de9cd9a
DN
400 GFC_ISYM_IBCLR,
401 GFC_ISYM_IBITS,
402 GFC_ISYM_IBSET,
403 GFC_ISYM_ICHAR,
cd5ecab6 404 GFC_ISYM_IDATE,
6de9cd9a 405 GFC_ISYM_IEOR,
f77b6ca3 406 GFC_ISYM_IERRNO,
64f002ed 407 GFC_ISYM_IMAGE_INDEX,
6de9cd9a
DN
408 GFC_ISYM_INDEX,
409 GFC_ISYM_INT,
bf3fb7e4
FXC
410 GFC_ISYM_INT2,
411 GFC_ISYM_INT8,
6de9cd9a 412 GFC_ISYM_IOR,
2bd74949 413 GFC_ISYM_IRAND,
ae8b8789 414 GFC_ISYM_ISATTY,
bae89173
FXC
415 GFC_ISYM_IS_IOSTAT_END,
416 GFC_ISYM_IS_IOSTAT_EOR,
3d97b1af 417 GFC_ISYM_ISNAN,
6de9cd9a
DN
418 GFC_ISYM_ISHFT,
419 GFC_ISYM_ISHFTC,
cd5ecab6
DF
420 GFC_ISYM_ITIME,
421 GFC_ISYM_J0,
422 GFC_ISYM_J1,
423 GFC_ISYM_JN,
f77b6ca3 424 GFC_ISYM_KILL,
cd5ecab6 425 GFC_ISYM_KIND,
6de9cd9a 426 GFC_ISYM_LBOUND,
64f002ed 427 GFC_ISYM_LCOBOUND,
414f00e9 428 GFC_ISYM_LEADZ,
6de9cd9a
DN
429 GFC_ISYM_LEN,
430 GFC_ISYM_LEN_TRIM,
88607a9a 431 GFC_ISYM_LGAMMA,
6de9cd9a
DN
432 GFC_ISYM_LGE,
433 GFC_ISYM_LGT,
cd5ecab6 434 GFC_ISYM_LINK,
6de9cd9a
DN
435 GFC_ISYM_LLE,
436 GFC_ISYM_LLT,
83d890b9 437 GFC_ISYM_LOC,
bf3fb7e4 438 GFC_ISYM_LOG,
6de9cd9a
DN
439 GFC_ISYM_LOG10,
440 GFC_ISYM_LOGICAL,
bf3fb7e4 441 GFC_ISYM_LONG,
a119fc1c 442 GFC_ISYM_LSHIFT,
bf3fb7e4 443 GFC_ISYM_LSTAT,
cd5ecab6 444 GFC_ISYM_LTIME,
0d519038 445 GFC_ISYM_MALLOC,
6de9cd9a
DN
446 GFC_ISYM_MATMUL,
447 GFC_ISYM_MAX,
cd5ecab6 448 GFC_ISYM_MAXEXPONENT,
6de9cd9a
DN
449 GFC_ISYM_MAXLOC,
450 GFC_ISYM_MAXVAL,
bf3fb7e4
FXC
451 GFC_ISYM_MCLOCK,
452 GFC_ISYM_MCLOCK8,
6de9cd9a
DN
453 GFC_ISYM_MERGE,
454 GFC_ISYM_MIN,
cd5ecab6 455 GFC_ISYM_MINEXPONENT,
6de9cd9a
DN
456 GFC_ISYM_MINLOC,
457 GFC_ISYM_MINVAL,
458 GFC_ISYM_MOD,
459 GFC_ISYM_MODULO,
cd5ecab6
DF
460 GFC_ISYM_MOVE_ALLOC,
461 GFC_ISYM_MVBITS,
6de9cd9a 462 GFC_ISYM_NEAREST,
cd5ecab6 463 GFC_ISYM_NEW_LINE,
6de9cd9a
DN
464 GFC_ISYM_NINT,
465 GFC_ISYM_NOT,
cd5ecab6 466 GFC_ISYM_NULL,
d0a4a61c 467 GFC_ISYM_NUMIMAGES,
5d723e54 468 GFC_ISYM_OR,
6de9cd9a 469 GFC_ISYM_PACK,
cd5ecab6
DF
470 GFC_ISYM_PERROR,
471 GFC_ISYM_PRECISION,
6de9cd9a
DN
472 GFC_ISYM_PRESENT,
473 GFC_ISYM_PRODUCT,
cd5ecab6 474 GFC_ISYM_RADIX,
2bd74949 475 GFC_ISYM_RAND,
cd5ecab6
DF
476 GFC_ISYM_RANDOM_NUMBER,
477 GFC_ISYM_RANDOM_SEED,
478 GFC_ISYM_RANGE,
6de9cd9a 479 GFC_ISYM_REAL,
f77b6ca3 480 GFC_ISYM_RENAME,
6de9cd9a
DN
481 GFC_ISYM_REPEAT,
482 GFC_ISYM_RESHAPE,
483 GFC_ISYM_RRSPACING,
cd5ecab6 484 GFC_ISYM_RSHIFT,
cf2b3c22 485 GFC_ISYM_SAME_TYPE_AS,
a39fafac 486 GFC_ISYM_SC_KIND,
6de9cd9a
DN
487 GFC_ISYM_SCALE,
488 GFC_ISYM_SCAN,
53096259 489 GFC_ISYM_SECNDS,
cd5ecab6 490 GFC_ISYM_SECOND,
6de9cd9a
DN
491 GFC_ISYM_SET_EXPONENT,
492 GFC_ISYM_SHAPE,
6de9cd9a 493 GFC_ISYM_SIGN,
185d7d97 494 GFC_ISYM_SIGNAL,
cd5ecab6 495 GFC_ISYM_SI_KIND,
6de9cd9a
DN
496 GFC_ISYM_SIN,
497 GFC_ISYM_SINH,
498 GFC_ISYM_SIZE,
cd5ecab6 499 GFC_ISYM_SLEEP,
fd2157ce 500 GFC_ISYM_SIZEOF,
6de9cd9a
DN
501 GFC_ISYM_SPACING,
502 GFC_ISYM_SPREAD,
503 GFC_ISYM_SQRT,
cd5ecab6 504 GFC_ISYM_SRAND,
6de9cd9a 505 GFC_ISYM_SR_KIND,
df65f093 506 GFC_ISYM_STAT,
6de9cd9a 507 GFC_ISYM_SUM,
cd5ecab6 508 GFC_ISYM_SYMLINK,
f77b6ca3 509 GFC_ISYM_SYMLNK,
5b1374e9 510 GFC_ISYM_SYSTEM,
cd5ecab6 511 GFC_ISYM_SYSTEM_CLOCK,
6de9cd9a
DN
512 GFC_ISYM_TAN,
513 GFC_ISYM_TANH,
64f002ed 514 GFC_ISYM_THIS_IMAGE,
f77b6ca3
FXC
515 GFC_ISYM_TIME,
516 GFC_ISYM_TIME8,
cd5ecab6 517 GFC_ISYM_TINY,
414f00e9 518 GFC_ISYM_TRAILZ,
6de9cd9a
DN
519 GFC_ISYM_TRANSFER,
520 GFC_ISYM_TRANSPOSE,
521 GFC_ISYM_TRIM,
25fc05eb 522 GFC_ISYM_TTYNAM,
6de9cd9a 523 GFC_ISYM_UBOUND,
64f002ed 524 GFC_ISYM_UCOBOUND,
d8fe26b2
SK
525 GFC_ISYM_UMASK,
526 GFC_ISYM_UNLINK,
6de9cd9a
DN
527 GFC_ISYM_UNPACK,
528 GFC_ISYM_VERIFY,
5d723e54 529 GFC_ISYM_XOR,
cd5ecab6
DF
530 GFC_ISYM_Y0,
531 GFC_ISYM_Y1,
532 GFC_ISYM_YN
6de9cd9a 533};
cd5ecab6 534typedef enum gfc_isym_id gfc_isym_id;
6de9cd9a 535
f96d606f 536
51b09ce3
AL
537typedef enum
538{
539 GFC_INIT_REAL_OFF = 0,
540 GFC_INIT_REAL_ZERO,
541 GFC_INIT_REAL_NAN,
346a77d1 542 GFC_INIT_REAL_SNAN,
51b09ce3
AL
543 GFC_INIT_REAL_INF,
544 GFC_INIT_REAL_NEG_INF
545}
546init_local_real;
547
548typedef enum
549{
550 GFC_INIT_LOGICAL_OFF = 0,
551 GFC_INIT_LOGICAL_FALSE,
552 GFC_INIT_LOGICAL_TRUE
553}
554init_local_logical;
555
556typedef enum
557{
558 GFC_INIT_CHARACTER_OFF = 0,
559 GFC_INIT_CHARACTER_ON
560}
561init_local_character;
562
563typedef enum
564{
565 GFC_INIT_INTEGER_OFF = 0,
566 GFC_INIT_INTEGER_ON
567}
568init_local_integer;
569
f4d1d50a
TB
570typedef enum
571{
572 GFC_FCOARRAY_NONE = 0,
573 GFC_FCOARRAY_SINGLE
574}
575gfc_fcoarray;
576
6de9cd9a
DN
577/************************* Structures *****************************/
578
5cf54585
TS
579/* Used for keeping things in balanced binary trees. */
580#define BBT_HEADER(self) int priority; struct self *left, *right
581
7306b628 582#define NAMED_INTCST(a,b,c,d) a,
a8b3b0b6
CR
583typedef enum
584{
585 ISOFORTRANENV_INVALID = -1,
586#include "iso-fortran-env.def"
587 ISOFORTRANENV_LAST, ISOFORTRANENV_NUMBER = ISOFORTRANENV_LAST
588}
589iso_fortran_env_symbol;
590#undef NAMED_INTCST
591
7306b628 592#define NAMED_INTCST(a,b,c,d) a,
a8b3b0b6
CR
593#define NAMED_REALCST(a,b,c) a,
594#define NAMED_CMPXCST(a,b,c) a,
595#define NAMED_LOGCST(a,b,c) a,
596#define NAMED_CHARKNDCST(a,b,c) a,
597#define NAMED_CHARCST(a,b,c) a,
598#define DERIVED_TYPE(a,b,c) a,
599#define PROCEDURE(a,b) a,
600typedef enum
601{
602 ISOCBINDING_INVALID = -1,
603#include "iso-c-binding.def"
604 ISOCBINDING_LAST,
605 ISOCBINDING_NUMBER = ISOCBINDING_LAST
606}
607iso_c_binding_symbol;
608#undef NAMED_INTCST
609#undef NAMED_REALCST
610#undef NAMED_CMPXCST
611#undef NAMED_LOGCST
612#undef NAMED_CHARKNDCST
613#undef NAMED_CHARCST
614#undef DERIVED_TYPE
615#undef PROCEDURE
616
617typedef enum
618{
619 INTMOD_NONE = 0, INTMOD_ISO_FORTRAN_ENV, INTMOD_ISO_C_BINDING
620}
621intmod_id;
622
623typedef struct
624{
625 char name[GFC_MAX_SYMBOL_LEN + 1];
626 int value; /* Used for both integer and character values. */
627 bt f90_type;
628}
629CInteropKind_t;
630
631/* Array of structs, where the structs represent the C interop kinds.
632 The list will be implemented based on a hash of the kind name since
633 these could be accessed multiple times.
634 Declared in trans-types.c as a global, since it's in that file
635 that the list is initialized. */
636extern CInteropKind_t c_interop_kinds_table[];
637
08a6b8e0
TB
638
639/* Structure and list of supported extension attributes. */
2b374f55 640typedef enum
08a6b8e0
TB
641{
642 EXT_ATTR_DLLIMPORT = 0,
643 EXT_ATTR_DLLEXPORT,
644 EXT_ATTR_STDCALL,
645 EXT_ATTR_CDECL,
646 EXT_ATTR_FASTCALL,
647 EXT_ATTR_LAST, EXT_ATTR_NUM = EXT_ATTR_LAST
2b374f55
TB
648}
649ext_attr_id_t;
08a6b8e0
TB
650
651typedef struct
652{
653 const char *name;
654 unsigned id;
655 const char *middle_end_name;
656}
657ext_attr_t;
658
659extern const ext_attr_t ext_attr_list[];
660
6de9cd9a
DN
661/* Symbol attribute structure. */
662typedef struct
663{
664 /* Variable attributes. */
be59db2d 665 unsigned allocatable:1, dimension:1, codimension:1, external:1, intrinsic:1,
59e36b72 666 optional:1, pointer:1, target:1, value:1, volatile_:1, temporary:1,
e9bd9f7d 667 dummy:1, result:1, assign:1, threadprivate:1, not_always_present:1,
1eee5628 668 implied_index:1, subref_array_pointer:1, proc_pointer:1, asynchronous:1;
6de9cd9a 669
41a394bb
DK
670 /* For CLASS containers, the pointer attribute is sometimes set internally
671 even though it was not directly specified. In this case, keep the
672 "real" (original) value here. */
673 unsigned class_pointer:1;
674
5349080d
TB
675 ENUM_BITFIELD (save_state) save:2;
676
6de9cd9a 677 unsigned data:1, /* Symbol is named in a DATA statement. */
8b11b59f 678 is_protected:1, /* Symbol has been marked as protected. */
993ef28f 679 use_assoc:1, /* Symbol has been use-associated. */
5a8af0b4 680 use_only:1, /* Symbol has been use-associated, with ONLY. */
0e5a218b 681 use_rename:1, /* Symbol has been use-associated and renamed. */
5a8af0b4 682 imported:1; /* Symbol has been associated by IMPORT. */
6de9cd9a 683
30aabb86 684 unsigned in_namelist:1, in_common:1, in_equivalence:1;
69773742
JW
685 unsigned function:1, subroutine:1, procedure:1;
686 unsigned generic:1, generic_copy:1;
d1303acd 687 unsigned implicit_type:1; /* Type defined via implicit rules. */
ebb479cd 688 unsigned untyped:1; /* No implicit type could be found. */
6de9cd9a 689
ebb479cd 690 unsigned is_bind_c:1; /* say if is bound to C. */
7c1dab0d 691 unsigned extension:8; /* extension level of a derived type. */
cf2b3c22 692 unsigned is_class:1; /* is a CLASS container. */
2e23972e 693 unsigned class_ok:1; /* is a CLASS object with correct attributes. */
eece1eb9
PT
694 unsigned vtab:1; /* is a derived type vtab, pointed to by CLASS objects. */
695 unsigned vtype:1; /* is a derived type of a vtab. */
a8b3b0b6
CR
696
697 /* These flags are both in the typespec and attribute. The attribute
698 list is what gets read from/written to a module file. The typespec
699 is created from a decl being processed. */
700 unsigned is_c_interop:1; /* It's c interoperable. */
701 unsigned is_iso_c:1; /* Symbol is from iso_c_binding. */
702
6de9cd9a
DN
703 /* Function/subroutine attributes */
704 unsigned sequence:1, elemental:1, pure:1, recursive:1;
9e1d712c 705 unsigned unmaskable:1, masked:1, contained:1, mod_proc:1, abstract:1;
6de9cd9a 706
fe58e076
TK
707 /* This is set if the subroutine doesn't return. Currently, this
708 is only possible for intrinsic subroutines. */
709 unsigned noreturn:1;
710
3d79abbd
PB
711 /* Set if this procedure is an alternate entry point. These procedures
712 don't have any code associated, and the backend will turn them into
713 thunks to the master function. */
714 unsigned entry:1;
8b67b708 715
3d79abbd
PB
716 /* Set if this is the master function for a procedure with multiple
717 entry points. */
718 unsigned entry_master:1;
8b67b708 719
d198b59a
JJ
720 /* Set if this is the master function for a function with multiple
721 entry points where characteristics of the entry points differ. */
722 unsigned mixed_entry_master:1;
3d79abbd 723
6de9cd9a
DN
724 /* Set if a function must always be referenced by an explicit interface. */
725 unsigned always_explicit:1;
726
727 /* Set if the symbol has been referenced in an expression. No further
728 modification of type or type parameters is permitted. */
729 unsigned referenced:1;
730
ecf24057 731 /* Set if this is the symbol for the main program. */
8b67b708
FXC
732 unsigned is_main_program:1;
733
6de9cd9a 734 /* Mutually exclusive multibit attributes. */
5f42ddb0
KG
735 ENUM_BITFIELD (gfc_access) access:2;
736 ENUM_BITFIELD (sym_intent) intent:2;
737 ENUM_BITFIELD (sym_flavor) flavor:4;
738 ENUM_BITFIELD (ifsrc) if_source:2;
6de9cd9a 739
5f42ddb0 740 ENUM_BITFIELD (procedure_type) proc:3;
949446f5 741
83d890b9 742 /* Special attributes for Cray pointers, pointees. */
949446f5 743 unsigned cray_pointer:1, cray_pointee:1;
6de9cd9a 744
5cca320d 745 /* The symbol is a derived type with allocatable components, pointer
713485cc
JW
746 components or private components, procedure pointer components,
747 possibly nested. zero_comp is true if the derived type has no
748 component at all. */
749 unsigned alloc_comp:1, pointer_comp:1, proc_pointer_comp:1,
be59db2d 750 private_comp:1, zero_comp:1, coarray_comp:1;
77bb16aa 751
08a6b8e0
TB
752 /* Attributes set by compiler extensions (!GCC$ ATTRIBUTES). */
753 unsigned ext_attr:EXT_ATTR_NUM;
754
1eee5628
TB
755 /* The namespace where the attribute has been set. */
756 struct gfc_namespace *volatile_ns, *asynchronous_ns;
6de9cd9a
DN
757}
758symbol_attribute;
759
760
8fc541d3
FXC
761/* We need to store source lines as sequences of multibyte source
762 characters. We define here a type wide enough to hold any multibyte
763 source character, just like libcpp does. A 32-bit type is enough. */
764
765#if HOST_BITS_PER_INT >= 32
766typedef unsigned int gfc_char_t;
767#elif HOST_BITS_PER_LONG >= 32
768typedef unsigned long gfc_char_t;
769#elif defined(HAVE_LONG_LONG) && (HOST_BITS_PER_LONGLONG >= 32)
770typedef unsigned long long gfc_char_t;
771#else
772# error "Cannot find an integer type with at least 32 bits"
773#endif
774
775
d4fa05b9 776/* The following three structures are used to identify a location in
949446f5
BF
777 the sources.
778
d4fa05b9
TS
779 gfc_file is used to maintain a tree of the source files and how
780 they include each other
6de9cd9a 781
d4fa05b9
TS
782 gfc_linebuf holds a single line of source code and information
783 which file it resides in
6de9cd9a 784
d4fa05b9 785 locus point to the sourceline and the character in the source
949446f5 786 line.
d4fa05b9 787*/
6de9cd9a 788
949446f5 789typedef struct gfc_file
6de9cd9a 790{
1b271c9b 791 struct gfc_file *next, *up;
d4fa05b9
TS
792 int inclusion_line, line;
793 char *filename;
794} gfc_file;
795
949446f5 796typedef struct gfc_linebuf
d4fa05b9 797{
c8cc8542 798 source_location location;
d4fa05b9
TS
799 struct gfc_file *file;
800 struct gfc_linebuf *next;
801
ba1defa5 802 int truncated;
9e8a6720 803 bool dbg_emitted;
ba1defa5 804
8fc541d3 805 gfc_char_t line[1];
d4fa05b9 806} gfc_linebuf;
4cdf7223
PB
807
808#define gfc_linebuf_header_size (offsetof (gfc_linebuf, line))
809
5ffeb913 810#define gfc_linebuf_linenum(LBUF) (LOCATION_LINE ((LBUF)->location))
5ffeb913 811
949446f5 812typedef struct
d4fa05b9 813{
8fc541d3 814 gfc_char_t *nextc;
d4fa05b9
TS
815 gfc_linebuf *lb;
816} locus;
6de9cd9a 817
0ce0154c
KG
818/* In order for the "gfc" format checking to work correctly, you must
819 have declared a typedef locus first. */
820#if GCC_VERSION >= 4001
821#define ATTRIBUTE_GCC_GFC(m, n) __attribute__ ((__format__ (__gcc_gfc__, m, n))) ATTRIBUTE_NONNULL(m)
822#else
823#define ATTRIBUTE_GCC_GFC(m, n) ATTRIBUTE_NONNULL(m)
824#endif
825
6de9cd9a 826
a3d3c0f5
DK
827/* Suppress error messages or re-enable them. */
828
829void gfc_push_suppress_errors (void);
830void gfc_pop_suppress_errors (void);
6de9cd9a
DN
831
832
833/* Character length structures hold the expression that gives the
834 length of a character variable. We avoid putting these into
835 gfc_typespec because doing so prevents us from doing structure
836 copies and forces us to deallocate any typespecs we create, as well
837 as structures that contain typespecs. They also can have multiple
838 character typespecs pointing to them.
839
840 These structures form a singly linked list within the current
841 namespace and are deallocated with the namespace. It is possible to
842 end up with gfc_charlen structures that have nothing pointing to them. */
843
844typedef struct gfc_charlen
845{
846 struct gfc_expr *length;
847 struct gfc_charlen *next;
c03fc95d 848 bool length_from_typespec; /* Length from explicit array ctor typespec? */
6de9cd9a 849 tree backend_decl;
cadb8f42 850 tree passed_length; /* Length argument explicitelly passed. */
110eec24
TS
851
852 int resolved;
6de9cd9a
DN
853}
854gfc_charlen;
855
ece3f663 856#define gfc_get_charlen() XCNEW (gfc_charlen)
6de9cd9a 857
bc21d315 858/* Type specification structure. */
6de9cd9a
DN
859typedef struct
860{
861 bt type;
862 int kind;
bc21d315
JW
863
864 union
865 {
866 struct gfc_symbol *derived; /* For derived types only. */
867 gfc_charlen *cl; /* For character types only. */
868 }
869 u;
870
32d99e68 871 struct gfc_symbol *interface; /* For PROCEDURE declarations. */
a8b3b0b6
CR
872 int is_c_interop;
873 int is_iso_c;
874 bt f90_type;
6de9cd9a
DN
875}
876gfc_typespec;
877
878/* Array specification. */
879typedef struct
880{
881 int rank; /* A rank of zero means that a variable is a scalar. */
be59db2d 882 int corank;
178f9aa1 883 array_type type, cotype;
6de9cd9a 884 struct gfc_expr *lower[GFC_MAX_DIMENSIONS], *upper[GFC_MAX_DIMENSIONS];
83d890b9
AL
885
886 /* These two fields are used with the Cray Pointer extension. */
887 bool cray_pointee; /* True iff this spec belongs to a cray pointee. */
888 bool cp_was_assumed; /* AS_ASSUMED_SIZE cp arrays are converted to
889 AS_EXPLICIT, but we want to remember that we
890 did this. */
891
6de9cd9a
DN
892}
893gfc_array_spec;
894
ece3f663 895#define gfc_get_array_spec() XCNEW (gfc_array_spec)
6de9cd9a
DN
896
897
898/* Components of derived types. */
899typedef struct gfc_component
900{
cb9e4f55 901 const char *name;
6de9cd9a
DN
902 gfc_typespec ts;
903
d4b7d0f0 904 symbol_attribute attr;
6de9cd9a
DN
905 gfc_array_spec *as;
906
907 tree backend_decl;
908 locus loc;
909 struct gfc_expr *initializer;
910 struct gfc_component *next;
713485cc 911
90661f26 912 /* Needed for procedure pointer components. */
713485cc 913 struct gfc_formal_arglist *formal;
7e196f89 914 struct gfc_namespace *formal_ns;
90661f26 915 struct gfc_typebound_proc *tb;
6de9cd9a
DN
916}
917gfc_component;
918
ece3f663 919#define gfc_get_component() XCNEW (gfc_component)
6de9cd9a
DN
920
921/* Formal argument lists are lists of symbols. */
922typedef struct gfc_formal_arglist
923{
4f613946 924 /* Symbol representing the argument at this position in the arglist. */
6de9cd9a 925 struct gfc_symbol *sym;
4f613946 926 /* Points to the next formal argument. */
6de9cd9a
DN
927 struct gfc_formal_arglist *next;
928}
929gfc_formal_arglist;
930
ece3f663 931#define gfc_get_formal_arglist() XCNEW (gfc_formal_arglist)
6de9cd9a
DN
932
933
934/* The gfc_actual_arglist structure is for actual arguments. */
935typedef struct gfc_actual_arglist
936{
cb9e4f55 937 const char *name;
6de9cd9a
DN
938 /* Alternate return label when the expr member is null. */
939 struct gfc_st_label *label;
940
1600fe22
TS
941 /* This is set to the type of an eventual omitted optional
942 argument. This is used to determine if a hidden string length
943 argument has to be added to a function call. */
944 bt missing_arg_type;
945
6de9cd9a
DN
946 struct gfc_expr *expr;
947 struct gfc_actual_arglist *next;
948}
949gfc_actual_arglist;
950
ece3f663 951#define gfc_get_actual_arglist() XCNEW (gfc_actual_arglist)
6de9cd9a
DN
952
953
954/* Because a symbol can belong to multiple namelists, they must be
955 linked externally to the symbol itself. */
956typedef struct gfc_namelist
957{
958 struct gfc_symbol *sym;
959 struct gfc_namelist *next;
960}
961gfc_namelist;
962
ece3f663 963#define gfc_get_namelist() XCNEW (gfc_namelist)
6de9cd9a 964
6c7a4dfd
JJ
965enum
966{
967 OMP_LIST_PRIVATE,
968 OMP_LIST_FIRSTPRIVATE,
969 OMP_LIST_LASTPRIVATE,
970 OMP_LIST_COPYPRIVATE,
971 OMP_LIST_SHARED,
972 OMP_LIST_COPYIN,
973 OMP_LIST_PLUS,
974 OMP_LIST_REDUCTION_FIRST = OMP_LIST_PLUS,
975 OMP_LIST_MULT,
976 OMP_LIST_SUB,
977 OMP_LIST_AND,
978 OMP_LIST_OR,
979 OMP_LIST_EQV,
980 OMP_LIST_NEQV,
981 OMP_LIST_MAX,
982 OMP_LIST_MIN,
983 OMP_LIST_IAND,
984 OMP_LIST_IOR,
985 OMP_LIST_IEOR,
986 OMP_LIST_REDUCTION_LAST = OMP_LIST_IEOR,
987 OMP_LIST_NUM
988};
989
990/* Because a symbol can belong to multiple namelists, they must be
991 linked externally to the symbol itself. */
24b97832
ILT
992
993enum gfc_omp_sched_kind
994{
995 OMP_SCHED_NONE,
996 OMP_SCHED_STATIC,
997 OMP_SCHED_DYNAMIC,
998 OMP_SCHED_GUIDED,
999 OMP_SCHED_RUNTIME,
1000 OMP_SCHED_AUTO
1001};
1002
1003enum gfc_omp_default_sharing
1004{
1005 OMP_DEFAULT_UNKNOWN,
1006 OMP_DEFAULT_NONE,
1007 OMP_DEFAULT_PRIVATE,
1008 OMP_DEFAULT_SHARED,
1009 OMP_DEFAULT_FIRSTPRIVATE
1010};
1011
6c7a4dfd
JJ
1012typedef struct gfc_omp_clauses
1013{
1014 struct gfc_expr *if_expr;
1015 struct gfc_expr *num_threads;
1016 gfc_namelist *lists[OMP_LIST_NUM];
24b97832 1017 enum gfc_omp_sched_kind sched_kind;
6c7a4dfd 1018 struct gfc_expr *chunk_size;
24b97832 1019 enum gfc_omp_default_sharing default_sharing;
a68ab351
JJ
1020 int collapse;
1021 bool nowait, ordered, untied;
6c7a4dfd
JJ
1022}
1023gfc_omp_clauses;
1024
ece3f663 1025#define gfc_get_omp_clauses() XCNEW (gfc_omp_clauses)
6c7a4dfd 1026
6de9cd9a 1027
d80c695f
TS
1028/* The gfc_st_label structure is a BBT attached to a namespace that
1029 records the usage of statement labels within that space. */
1030
6de9cd9a
DN
1031typedef struct gfc_st_label
1032{
5cf54585
TS
1033 BBT_HEADER(gfc_st_label);
1034
6de9cd9a
DN
1035 int value;
1036
1037 gfc_sl_type defined, referenced;
1038
1039 struct gfc_expr *format;
1040
1041 tree backend_decl;
1042
1043 locus where;
6de9cd9a
DN
1044}
1045gfc_st_label;
1046
1047
1048/* gfc_interface()-- Interfaces are lists of symbols strung together. */
1049typedef struct gfc_interface
1050{
1051 struct gfc_symbol *sym;
1052 locus where;
1053 struct gfc_interface *next;
1054}
1055gfc_interface;
1056
ece3f663 1057#define gfc_get_interface() XCNEW (gfc_interface)
6de9cd9a 1058
6de9cd9a
DN
1059/* User operator nodes. These are like stripped down symbols. */
1060typedef struct
1061{
cb9e4f55 1062 const char *name;
6de9cd9a 1063
8b11b59f 1064 gfc_interface *op;
6de9cd9a
DN
1065 struct gfc_namespace *ns;
1066 gfc_access access;
1067}
1068gfc_user_op;
1069
30b608eb 1070
e157f736
DK
1071/* A list of specific bindings that are associated with a generic spec. */
1072typedef struct gfc_tbp_generic
1073{
1074 /* The parser sets specific_st, upon resolution we look for the corresponding
1075 gfc_typebound_proc and set specific for further use. */
1076 struct gfc_symtree* specific_st;
1077 struct gfc_typebound_proc* specific;
1078
1079 struct gfc_tbp_generic* next;
1080}
1081gfc_tbp_generic;
1082
1083#define gfc_get_tbp_generic() XCNEW (gfc_tbp_generic)
1084
1085
30b608eb 1086/* Data needed for type-bound procedures. */
e157f736 1087typedef struct gfc_typebound_proc
30b608eb 1088{
e157f736
DK
1089 locus where; /* Where the PROCEDURE/GENERIC definition was. */
1090
1091 union
1092 {
b0e5fa94 1093 struct gfc_symtree* specific; /* The interface if DEFERRED. */
e157f736
DK
1094 gfc_tbp_generic* generic;
1095 }
1096 u;
30b608eb
DK
1097
1098 gfc_access access;
90661f26 1099 const char* pass_arg; /* Argument-name for PASS. NULL if not specified. */
30b608eb 1100
e157f736
DK
1101 /* The overridden type-bound proc (or GENERIC with this name in the
1102 parent-type) or NULL if non. */
1103 struct gfc_typebound_proc* overridden;
1104
30b608eb
DK
1105 /* Once resolved, we use the position of pass_arg in the formal arglist of
1106 the binding-target procedure to identify it. The first argument has
8e1f752a 1107 number 1 here, the second 2, and so on. */
30b608eb
DK
1108 unsigned pass_arg_num;
1109
1110 unsigned nopass:1; /* Whether we have NOPASS (PASS otherwise). */
1111 unsigned non_overridable:1;
b0e5fa94 1112 unsigned deferred:1;
e157f736
DK
1113 unsigned is_generic:1;
1114 unsigned function:1, subroutine:1;
b82657f4 1115 unsigned error:1; /* Ignore it, when an error occurred during resolution. */
90661f26 1116 unsigned ppc:1;
30b608eb
DK
1117}
1118gfc_typebound_proc;
1119
1120
6de9cd9a
DN
1121/* Symbol nodes. These are important things. They are what the
1122 standard refers to as "entities". The possibly multiple names that
1123 refer to the same entity are accomplished by a binary tree of
1124 symtree structures that is balanced by the red-black method-- more
1125 than one symtree node can point to any given symbol. */
1126
1127typedef struct gfc_symbol
1128{
cb9e4f55
TS
1129 const char *name; /* Primary name, before renaming */
1130 const char *module; /* Module this symbol came from */
6de9cd9a
DN
1131 locus declared_at;
1132
1133 gfc_typespec ts;
1134 symbol_attribute attr;
1135
32d99e68 1136 /* The formal member points to the formal argument list if the
6de9cd9a
DN
1137 symbol is a function or subroutine name. If the symbol is a
1138 generic name, the generic member points to the list of
1139 interfaces. */
1140
1141 gfc_interface *generic;
1142 gfc_access component_access;
1143
1144 gfc_formal_arglist *formal;
1145 struct gfc_namespace *formal_ns;
34523524
DK
1146 struct gfc_namespace *f2k_derived;
1147
6de9cd9a
DN
1148 struct gfc_expr *value; /* Parameter/Initializer value */
1149 gfc_array_spec *as;
1150 struct gfc_symbol *result; /* function result symbol */
1151 gfc_component *components; /* Derived type components */
1152
83d890b9
AL
1153 /* Defined only for Cray pointees; points to their pointer. */
1154 struct gfc_symbol *cp_pointer;
1155
cf2b3c22
TB
1156 int entry_id; /* Used in resolve.c for entries. */
1157
7c1dab0d
JW
1158 /* CLASS hashed name for declared and dynamic types in the class. */
1159 int hash_value;
cf2b3c22 1160
9056bd70 1161 struct gfc_symbol *common_next; /* Links for COMMON syms */
30aabb86
PT
1162
1163 /* This is in fact a gfc_common_head but it is only used for pointer
1164 comparisons to check if symbols are in the same common block. */
1165 struct gfc_common_head* common_head;
1166
6de9cd9a
DN
1167 /* Make sure setup code for dummy arguments is generated in the correct
1168 order. */
1169 int dummy_order;
1170
1171 gfc_namelist *namelist, *namelist_tail;
1172
1173 /* Change management fields. Symbols that might be modified by the
1174 current statement have the mark member nonzero and are kept in a
1175 singly linked list through the tlink field. Of these symbols,
1176 symbols with old_symbol equal to NULL are symbols created within
1177 the current statement. Otherwise, old_symbol points to a copy of
1178 the old symbol. */
1179
1180 struct gfc_symbol *old_symbol, *tlink;
8b11b59f 1181 unsigned mark:1, gfc_new:1;
5291e69a
PB
1182 /* Nonzero if all equivalences associated with this symbol have been
1183 processed. */
1184 unsigned equiv_built:1;
31708dc6
RS
1185 /* Set if this variable is used as an index name in a FORALL. */
1186 unsigned forall_index:1;
6de9cd9a
DN
1187 int refs;
1188 struct gfc_namespace *ns; /* namespace containing this symbol */
1189
1190 tree backend_decl;
a8b3b0b6
CR
1191
1192 /* Identity of the intrinsic module the symbol comes from, or
1193 INTMOD_NONE if it's not imported from a intrinsic module. */
1194 intmod_id from_intmod;
1195 /* Identity of the symbol from intrinsic modules, from enums maintained
1196 separately by each intrinsic module. Used together with from_intmod,
1197 it uniquely identifies a symbol from an intrinsic module. */
1198 int intmod_sym_id;
1199
1200 /* This may be repetitive, since the typespec now has a binding
1201 label field. */
1202 char binding_label[GFC_MAX_BINDING_LABEL_LEN + 1];
1203 /* Store a reference to the common_block, if this symbol is in one. */
1204 struct gfc_common_head *common_block;
03af1e4c
DK
1205
1206 /* Link to corresponding association-list if this is an associate name. */
1207 struct gfc_association_list *assoc;
6de9cd9a
DN
1208}
1209gfc_symbol;
1210
1211
9056bd70 1212/* This structure is used to keep track of symbols in common blocks. */
30aabb86 1213typedef struct gfc_common_head
9056bd70
TS
1214{
1215 locus where;
6c7a4dfd 1216 char use_assoc, saved, threadprivate;
53814b8f 1217 char name[GFC_MAX_SYMBOL_LEN + 1];
30aabb86 1218 struct gfc_symbol *head;
a8b3b0b6
CR
1219 char binding_label[GFC_MAX_BINDING_LABEL_LEN + 1];
1220 int is_bind_c;
949446f5 1221}
9056bd70
TS
1222gfc_common_head;
1223
ece3f663 1224#define gfc_get_common_head() XCNEW (gfc_common_head)
9056bd70
TS
1225
1226
3d79abbd
PB
1227/* A list of all the alternate entry points for a procedure. */
1228
1229typedef struct gfc_entry_list
1230{
1231 /* The symbol for this entry point. */
1232 gfc_symbol *sym;
1233 /* The zero-based id of this entry point. */
1234 int id;
1235 /* The LABEL_EXPR marking this entry point. */
1236 tree label;
1933ba0f 1237 /* The next item in the list. */
3d79abbd
PB
1238 struct gfc_entry_list *next;
1239}
1240gfc_entry_list;
1241
1242#define gfc_get_entry_list() \
1243 (gfc_entry_list *) gfc_getmem(sizeof(gfc_entry_list))
9056bd70 1244
a64f5186
JJ
1245/* Lists of rename info for the USE statement. */
1246
1247typedef struct gfc_use_rename
1248{
1249 char local_name[GFC_MAX_SYMBOL_LEN + 1], use_name[GFC_MAX_SYMBOL_LEN + 1];
1250 struct gfc_use_rename *next;
1251 int found;
1252 gfc_intrinsic_op op;
1253 locus where;
1254}
1255gfc_use_rename;
1256
1257#define gfc_get_use_rename() XCNEW (gfc_use_rename);
1258
1259/* A list of all USE statements in a namespace. */
1260
1261typedef struct gfc_use_list
1262{
1263 const char *module_name;
1264 int only_flag;
1265 struct gfc_use_rename *rename;
9268ba9a 1266 locus where;
a64f5186
JJ
1267 /* Next USE statement. */
1268 struct gfc_use_list *next;
1269}
1270gfc_use_list;
1271
1272#define gfc_get_use_list() \
1273 (gfc_use_list *) gfc_getmem(sizeof(gfc_use_list))
1274
6de9cd9a
DN
1275/* Within a namespace, symbols are pointed to by symtree nodes that
1276 are linked together in a balanced binary tree. There can be
1277 several symtrees pointing to the same symbol node via USE
1278 statements. */
1279
6de9cd9a
DN
1280typedef struct gfc_symtree
1281{
1282 BBT_HEADER (gfc_symtree);
cb9e4f55 1283 const char *name;
6de9cd9a
DN
1284 int ambiguous;
1285 union
1286 {
1287 gfc_symbol *sym; /* Symbol associated with this node */
1288 gfc_user_op *uop;
9056bd70 1289 gfc_common_head *common;
e34ccb4c 1290 gfc_typebound_proc *tb;
6de9cd9a
DN
1291 }
1292 n;
6de9cd9a
DN
1293}
1294gfc_symtree;
1295
6b887797
PT
1296/* A linked list of derived types in the namespace. */
1297typedef struct gfc_dt_list
1298{
1299 struct gfc_symbol *derived;
1300 struct gfc_dt_list *next;
1301}
1302gfc_dt_list;
1303
ece3f663 1304#define gfc_get_dt_list() XCNEW (gfc_dt_list)
6b887797 1305
7453378e
PT
1306 /* A list of all derived types. */
1307 extern gfc_dt_list *gfc_derived_types;
6b887797 1308
9abe5e56
DK
1309/* A namespace describes the contents of procedure, module, interface block
1310 or BLOCK construct. */
3d79abbd
PB
1311/* ??? Anything else use these? */
1312
6de9cd9a
DN
1313typedef struct gfc_namespace
1314{
4f613946
TS
1315 /* Tree containing all the symbols in this namespace. */
1316 gfc_symtree *sym_root;
1317 /* Tree containing all the user-defined operators in the namespace. */
1318 gfc_symtree *uop_root;
1319 /* Tree containing all the common blocks. */
949446f5 1320 gfc_symtree *common_root;
e34ccb4c
DK
1321
1322 /* Tree containing type-bound procedures. */
1323 gfc_symtree *tb_sym_root;
94747289
DK
1324 /* Type-bound user operators. */
1325 gfc_symtree *tb_uop_root;
1326 /* For derived-types, store type-bound intrinsic operators here. */
1327 gfc_typebound_proc *tb_op[GFC_INTRINSIC_OPS];
34523524
DK
1328 /* Linked list of finalizer procedures. */
1329 struct gfc_finalizer *finalizers;
6de9cd9a 1330
4f613946 1331 /* If set_flag[letter] is set, an implicit type has been set for letter. */
6de9cd9a 1332 int set_flag[GFC_LETTERS];
4f613946
TS
1333 /* Keeps track of the implicit types associated with the letters. */
1334 gfc_typespec default_type[GFC_LETTERS];
52f49934
DK
1335 /* Store the positions of IMPLICIT statements. */
1336 locus implicit_loc[GFC_LETTERS];
6de9cd9a 1337
4f613946 1338 /* If this is a namespace of a procedure, this points to the procedure. */
6de9cd9a 1339 struct gfc_symbol *proc_name;
4f613946
TS
1340 /* If this is the namespace of a unit which contains executable
1341 code, this points to it. */
6de9cd9a 1342 struct gfc_code *code;
4f613946
TS
1343
1344 /* Points to the equivalences set up in this namespace. */
6de9cd9a 1345 struct gfc_equiv *equiv;
61321991
PT
1346
1347 /* Points to the equivalence groups produced by trans_common. */
1348 struct gfc_equiv_list *equiv_lists;
1349
a1ee985f 1350 gfc_interface *op[GFC_INTRINSIC_OPS];
4f613946
TS
1351
1352 /* Points to the parent namespace, i.e. the namespace of a module or
1353 procedure in which the procedure belonging to this namespace is
1354 contained. The parent namespace points to this namespace either
1355 directly via CONTAINED, or indirectly via the chain built by
1356 SIBLING. */
1357 struct gfc_namespace *parent;
1358 /* CONTAINED points to the first contained namespace. Sibling
1359 namespaces are chained via SIBLING. */
1360 struct gfc_namespace *contained, *sibling;
1361
1362 gfc_common_head blank_common;
6de9cd9a
DN
1363 gfc_access default_access, operator_access[GFC_INTRINSIC_OPS];
1364
1365 gfc_st_label *st_labels;
294fbfc8
TS
1366 /* This list holds information about all the data initializers in
1367 this namespace. */
6de9cd9a
DN
1368 struct gfc_data *data;
1369
27f31e39 1370 gfc_charlen *cl_list, *old_cl_list;
6de9cd9a 1371
3af8d8cb
PT
1372 gfc_dt_list *derived_types;
1373
4c1f4f52 1374 int save_all, seen_save, seen_implicit_none;
3d79abbd
PB
1375
1376 /* Normally we don't need to refcount namespaces. However when we read
1377 a module containing a function with multiple entry points, this
1378 will appear as several functions with the same formal namespace. */
1379 int refs;
1380
1381 /* A list of all alternate entry points to this procedure (or NULL). */
1382 gfc_entry_list *entries;
0de4325e 1383
a64f5186
JJ
1384 /* A list of USE statements in this namespace. */
1385 gfc_use_list *use_stmts;
1386
0de4325e 1387 /* Set to 1 if namespace is a BLOCK DATA program unit. */
9abe5e56 1388 unsigned is_block_data:1;
8998be20
TB
1389
1390 /* Set to 1 if namespace is an interface body with "IMPORT" used. */
9abe5e56 1391 unsigned has_import_set:1;
71a7778c 1392
204803dc
JR
1393 /* Set to 1 if resolved has been called for this namespace.
1394 Holds -1 during resolution. */
1395 signed resolved:2;
3af8d8cb
PT
1396
1397 /* Set to 1 if code has been generated for this namespace. */
9abe5e56
DK
1398 unsigned translated:1;
1399
1400 /* Set to 1 if symbols in this namespace should be 'construct entities',
1401 i.e. for BLOCK local variables. */
1402 unsigned construct_entities:1;
6de9cd9a
DN
1403}
1404gfc_namespace;
1405
1406extern gfc_namespace *gfc_current_ns;
71a7778c 1407extern gfc_namespace *gfc_global_ns_list;
6de9cd9a 1408
c9543002
TS
1409/* Global symbols are symbols of global scope. Currently we only use
1410 this to detect collisions already when parsing.
1411 TODO: Extend to verify procedure calls. */
1412
32e8bb8e
ILT
1413enum gfc_symbol_type
1414{
1415 GSYM_UNKNOWN=1, GSYM_PROGRAM, GSYM_FUNCTION, GSYM_SUBROUTINE,
1416 GSYM_MODULE, GSYM_COMMON, GSYM_BLOCK_DATA
1417};
1418
c9543002
TS
1419typedef struct gfc_gsymbol
1420{
1421 BBT_HEADER(gfc_gsymbol);
1422
973a384d 1423 const char *name;
a8b3b0b6
CR
1424 const char *sym_name;
1425 const char *mod_name;
1426 const char *binding_label;
32e8bb8e 1427 enum gfc_symbol_type type;
c9543002
TS
1428
1429 int defined, used;
1430 locus where;
71a7778c 1431 gfc_namespace *ns;
c9543002
TS
1432}
1433gfc_gsymbol;
1434
1435extern gfc_gsymbol *gfc_gsym_root;
6de9cd9a
DN
1436
1437/* Information on interfaces being built. */
1438typedef struct
1439{
1440 interface_type type;
1441 gfc_symbol *sym;
1442 gfc_namespace *ns;
1443 gfc_user_op *uop;
1444 gfc_intrinsic_op op;
1445}
1446gfc_interface_info;
1447
1448extern gfc_interface_info current_interface;
1449
1450
1451/* Array reference. */
32e8bb8e
ILT
1452
1453enum gfc_array_ref_dimen_type
1454{
d3a9eea2 1455 DIMEN_ELEMENT = 1, DIMEN_RANGE, DIMEN_VECTOR, DIMEN_STAR, DIMEN_UNKNOWN
32e8bb8e
ILT
1456};
1457
6de9cd9a
DN
1458typedef struct gfc_array_ref
1459{
1460 ar_type type;
1461 int dimen; /* # of components in the reference */
d3a9eea2
TB
1462 int codimen;
1463 bool in_allocate; /* For coarray checks. */
6de9cd9a
DN
1464 locus where;
1465 gfc_array_spec *as;
1466
1467 locus c_where[GFC_MAX_DIMENSIONS]; /* All expressions can be NULL */
1468 struct gfc_expr *start[GFC_MAX_DIMENSIONS], *end[GFC_MAX_DIMENSIONS],
1469 *stride[GFC_MAX_DIMENSIONS];
1470
32e8bb8e 1471 enum gfc_array_ref_dimen_type dimen_type[GFC_MAX_DIMENSIONS];
6de9cd9a
DN
1472
1473 struct gfc_expr *offset;
1474}
1475gfc_array_ref;
1476
ece3f663 1477#define gfc_get_array_ref() XCNEW (gfc_array_ref)
6de9cd9a
DN
1478
1479
1480/* Component reference nodes. A variable is stored as an expression
1481 node that points to the base symbol. After that, a singly linked
1482 list of component reference nodes gives the variable's complete
1483 resolution. The array_ref component may be present and comes
1484 before the component component. */
1485
1486typedef enum
1487 { REF_ARRAY, REF_COMPONENT, REF_SUBSTRING }
1488ref_type;
1489
1490typedef struct gfc_ref
1491{
1492 ref_type type;
1493
1494 union
1495 {
1496 struct gfc_array_ref ar;
1497
1498 struct
1499 {
1500 gfc_component *component;
1501 gfc_symbol *sym;
1502 }
1503 c;
1504
1505 struct
1506 {
1507 struct gfc_expr *start, *end; /* Substring */
1508 gfc_charlen *length;
1509 }
1510 ss;
1511
1512 }
1513 u;
1514
1515 struct gfc_ref *next;
1516}
1517gfc_ref;
1518
ece3f663 1519#define gfc_get_ref() XCNEW (gfc_ref)
6de9cd9a
DN
1520
1521
1522/* Structures representing intrinsic symbols and their arguments lists. */
1523typedef struct gfc_intrinsic_arg
1524{
1525 char name[GFC_MAX_SYMBOL_LEN + 1];
1526
1527 gfc_typespec ts;
1528 int optional;
23e38561 1529 ENUM_BITFIELD (sym_intent) intent:2;
6de9cd9a
DN
1530 gfc_actual_arglist *actual;
1531
1532 struct gfc_intrinsic_arg *next;
1533
1534}
1535gfc_intrinsic_arg;
1536
1537
4f613946
TS
1538/* Specifies the various kinds of check functions used to verify the
1539 argument lists of intrinsic functions. fX with X an integer refer
1540 to check functions of intrinsics with X arguments. f1m is used for
1541 the MAX and MIN intrinsics which can have an arbitrary number of
1542 arguments, f3ml is used for the MINLOC and MAXLOC intrinsics as
1543 these have special semantics. */
1544
6de9cd9a
DN
1545typedef union
1546{
17b1d2a0
KG
1547 gfc_try (*f0)(void);
1548 gfc_try (*f1)(struct gfc_expr *);
1549 gfc_try (*f1m)(gfc_actual_arglist *);
1550 gfc_try (*f2)(struct gfc_expr *, struct gfc_expr *);
1551 gfc_try (*f3)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *);
1552 gfc_try (*f3ml)(gfc_actual_arglist *);
1553 gfc_try (*f3red)(gfc_actual_arglist *);
1554 gfc_try (*f4)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
6de9cd9a 1555 struct gfc_expr *);
17b1d2a0 1556 gfc_try (*f5)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
6de9cd9a
DN
1557 struct gfc_expr *, struct gfc_expr *);
1558}
1559gfc_check_f;
1560
4f613946
TS
1561/* Like gfc_check_f, these specify the type of the simplification
1562 function associated with an intrinsic. The fX are just like in
1563 gfc_check_f. cc is used for type conversion functions. */
6de9cd9a
DN
1564
1565typedef union
1566{
4c0c6b9f 1567 struct gfc_expr *(*f0)(void);
6de9cd9a
DN
1568 struct gfc_expr *(*f1)(struct gfc_expr *);
1569 struct gfc_expr *(*f2)(struct gfc_expr *, struct gfc_expr *);
1570 struct gfc_expr *(*f3)(struct gfc_expr *, struct gfc_expr *,
1571 struct gfc_expr *);
1572 struct gfc_expr *(*f4)(struct gfc_expr *, struct gfc_expr *,
1573 struct gfc_expr *, struct gfc_expr *);
1574 struct gfc_expr *(*f5)(struct gfc_expr *, struct gfc_expr *,
1575 struct gfc_expr *, struct gfc_expr *,
1576 struct gfc_expr *);
1577 struct gfc_expr *(*cc)(struct gfc_expr *, bt, int);
1578}
1579gfc_simplify_f;
1580
4f613946 1581/* Again like gfc_check_f, these specify the type of the resolution
13795658 1582 function associated with an intrinsic. The fX are just like in
66e4ab31 1583 gfc_check_f. f1m is used for MIN and MAX, s1 is used for abort(). */
6de9cd9a
DN
1584
1585typedef union
1586{
1587 void (*f0)(struct gfc_expr *);
1588 void (*f1)(struct gfc_expr *, struct gfc_expr *);
1589 void (*f1m)(struct gfc_expr *, struct gfc_actual_arglist *);
1590 void (*f2)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *);
1591 void (*f3)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1592 struct gfc_expr *);
1593 void (*f4)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1594 struct gfc_expr *, struct gfc_expr *);
1595 void (*f5)(struct gfc_expr *, struct gfc_expr *, struct gfc_expr *,
1596 struct gfc_expr *, struct gfc_expr *, struct gfc_expr *);
1597 void (*s1)(struct gfc_code *);
1598}
1599gfc_resolve_f;
1600
1601
1602typedef struct gfc_intrinsic_sym
1603{
cb9e4f55 1604 const char *name, *lib_name;
6de9cd9a
DN
1605 gfc_intrinsic_arg *formal;
1606 gfc_typespec ts;
e1633d82
DF
1607 unsigned elemental:1, inquiry:1, transformational:1, pure:1,
1608 generic:1, specific:1, actual_ok:1, noreturn:1, conversion:1;
1609
1610 int standard;
6de9cd9a
DN
1611
1612 gfc_simplify_f simplify;
1613 gfc_check_f check;
1614 gfc_resolve_f resolve;
1615 struct gfc_intrinsic_sym *specific_head, *next;
cd5ecab6 1616 gfc_isym_id id;
6de9cd9a
DN
1617
1618}
1619gfc_intrinsic_sym;
1620
1621
1622/* Expression nodes. The expression node types deserve explanations,
1623 since the last couple can be easily misconstrued:
1624
1625 EXPR_OP Operator node pointing to one or two other nodes
1626 EXPR_FUNCTION Function call, symbol points to function's name
1627 EXPR_CONSTANT A scalar constant: Logical, String, Real, Int or Complex
1628 EXPR_VARIABLE An Lvalue with a root symbol and possible reference list
8e1f752a 1629 which expresses structure, array and substring refs.
6de9cd9a
DN
1630 EXPR_NULL The NULL pointer value (which also has a basic type).
1631 EXPR_SUBSTRING A substring of a constant string
1632 EXPR_STRUCTURE A structure constructor
8e1f752a
DK
1633 EXPR_ARRAY An array constructor.
1634 EXPR_COMPCALL Function (or subroutine) call of a procedure pointer
1635 component or type-bound procedure. */
6de9cd9a
DN
1636
1637#include <gmp.h>
f8e566e5 1638#include <mpfr.h>
eb6f9a86 1639#include <mpc.h>
f8e566e5 1640#define GFC_RND_MODE GMP_RNDN
f6b855df 1641#define GFC_MPC_RND_MODE MPC_RNDNN
6de9cd9a 1642
b7e75771
JD
1643typedef splay_tree gfc_constructor_base;
1644
6de9cd9a
DN
1645typedef struct gfc_expr
1646{
1647 expr_t expr_type;
1648
1649 gfc_typespec ts; /* These two refer to the overall expression */
1650
1651 int rank;
1652 mpz_t *shape; /* Can be NULL if shape is unknown at compile time */
1653
4a44a72d
DK
1654 /* Nonnull for functions and structure constructors, may also used to hold the
1655 base-object for component calls. */
6de9cd9a
DN
1656 gfc_symtree *symtree;
1657
6de9cd9a
DN
1658 gfc_ref *ref;
1659
6de9cd9a
DN
1660 locus where;
1661
1524f80b 1662 /* True if the expression is a call to a function that returns an array,
346a77d1
TB
1663 and if we have decided not to allocate temporary data for that array.
1664 is_boz is true if the integer is regarded as BOZ bitpatten and is_snan
1665 denotes a signalling not-a-number. */
1666 unsigned int inline_noncopying_intrinsic : 1, is_boz : 1, is_snan : 1;
20585ad6 1667
ebb479cd
PT
1668 /* Sometimes, when an error has been emitted, it is necessary to prevent
1669 it from recurring. */
1670 unsigned int error : 1;
a1ab6660 1671
94bff632 1672 /* Mark an expression where a user operator has been substituted by
a1ab6660
PT
1673 a function call in interface.c(gfc_extend_expr). */
1674 unsigned int user_operator : 1;
ebb479cd 1675
94bff632
JW
1676 /* Mark an expression as being a MOLD argument of ALLOCATE. */
1677 unsigned int mold : 1;
1678
20585ad6
BM
1679 /* If an expression comes from a Hollerith constant or compile-time
1680 evaluation of a transfer statement, it may have a prescribed target-
1681 memory representation, and these cannot always be backformed from
1682 the value. */
1683 struct
1684 {
1685 int length;
1686 char *string;
1687 }
1688 representation;
1689
6de9cd9a
DN
1690 union
1691 {
6de9cd9a 1692 int logical;
20585ad6 1693
ad7ee6f8
JD
1694 io_kind iokind;
1695
f8e566e5
SK
1696 mpz_t integer;
1697
1698 mpfr_t real;
6de9cd9a 1699
d0d92baf 1700 mpc_t complex;
6de9cd9a 1701
58b03ab2
TS
1702 struct
1703 {
a1ee985f 1704 gfc_intrinsic_op op;
58b03ab2
TS
1705 gfc_user_op *uop;
1706 struct gfc_expr *op1, *op2;
1707 }
1708 op;
1709
6de9cd9a
DN
1710 struct
1711 {
1712 gfc_actual_arglist *actual;
6b25a558 1713 const char *name; /* Points to the ultimate name of the function */
6de9cd9a
DN
1714 gfc_intrinsic_sym *isym;
1715 gfc_symbol *esym;
1716 }
1717 function;
1718
8e1f752a
DK
1719 struct
1720 {
1721 gfc_actual_arglist* actual;
e157f736 1722 const char* name;
4a44a72d
DK
1723 /* Base-object, whose component was called. NULL means that it should
1724 be taken from symtree/ref. */
1725 struct gfc_expr* base_object;
1726 gfc_typebound_proc* tbp; /* Should overlap with esym. */
1727
1728 /* For type-bound operators, we want to call PASS procedures but already
1729 have the full arglist; mark this, so that it is not extended by the
1730 PASS argument. */
1731 unsigned ignore_pass:1;
1732
1733 /* Do assign-calls rather than calls, that is appropriate dependency
1734 checking. */
1735 unsigned assign:1;
8e1f752a
DK
1736 }
1737 compcall;
1738
6de9cd9a
DN
1739 struct
1740 {
1741 int length;
00660189 1742 gfc_char_t *string;
6de9cd9a
DN
1743 }
1744 character;
1745
b7e75771 1746 gfc_constructor_base constructor;
6de9cd9a
DN
1747 }
1748 value;
1749
1750}
1751gfc_expr;
1752
1753
94538bd1 1754#define gfc_get_shape(rank) ((mpz_t *) gfc_getmem((rank)*sizeof(mpz_t)))
6de9cd9a
DN
1755
1756/* Structures for information associated with different kinds of
1757 numbers. The first set of integer parameters define all there is
1758 to know about a particular kind. The rest of the elements are
1759 computed from the first elements. */
1760
1761typedef struct
1762{
e2cad04b 1763 /* Values really representable by the target. */
7bee49dc 1764 mpz_t huge, pedantic_min_int, min_int;
e2cad04b
RH
1765
1766 int kind, radix, digits, bit_size, range;
1767
1768 /* True if the C type of the given name maps to this precision.
1769 Note that more than one bit can be set. */
1770 unsigned int c_char : 1;
1771 unsigned int c_short : 1;
1772 unsigned int c_int : 1;
1773 unsigned int c_long : 1;
1774 unsigned int c_long_long : 1;
6de9cd9a
DN
1775}
1776gfc_integer_info;
1777
1778extern gfc_integer_info gfc_integer_kinds[];
1779
1780
1781typedef struct
1782{
1783 int kind, bit_size;
1784
e2cad04b
RH
1785 /* True if the C++ type bool, C99 type _Bool, maps to this precision. */
1786 unsigned int c_bool : 1;
6de9cd9a
DN
1787}
1788gfc_logical_info;
1789
1790extern gfc_logical_info gfc_logical_kinds[];
1791
1792
1793typedef struct
1794{
2d0aa65f 1795 mpfr_t epsilon, huge, tiny, subnormal;
6de9cd9a 1796 int kind, radix, digits, min_exponent, max_exponent;
6de9cd9a 1797 int range, precision;
e2cad04b
RH
1798
1799 /* The precision of the type as reported by GET_MODE_PRECISION. */
1800 int mode_precision;
1801
1802 /* True if the C type of the given name maps to this precision.
1803 Note that more than one bit can be set. */
1804 unsigned int c_float : 1;
1805 unsigned int c_double : 1;
1806 unsigned int c_long_double : 1;
6de9cd9a
DN
1807}
1808gfc_real_info;
1809
1810extern gfc_real_info gfc_real_kinds[];
1811
374929b2
FXC
1812typedef struct
1813{
1814 int kind, bit_size;
1815 const char *name;
1816}
1817gfc_character_info;
1818
1819extern gfc_character_info gfc_character_kinds[];
1820
6de9cd9a
DN
1821
1822/* Equivalence structures. Equivalent lvalues are linked along the
1823 *eq pointer, equivalence sets are strung along the *next node. */
1824typedef struct gfc_equiv
1825{
1826 struct gfc_equiv *next, *eq;
1827 gfc_expr *expr;
30aabb86 1828 const char *module;
6de9cd9a
DN
1829 int used;
1830}
1831gfc_equiv;
1832
ece3f663 1833#define gfc_get_equiv() XCNEW (gfc_equiv)
6de9cd9a 1834
61321991
PT
1835/* Holds a single equivalence member after processing. */
1836typedef struct gfc_equiv_info
1837{
1838 gfc_symbol *sym;
1839 HOST_WIDE_INT offset;
37311e71 1840 HOST_WIDE_INT length;
61321991
PT
1841 struct gfc_equiv_info *next;
1842} gfc_equiv_info;
1843
1844/* Holds equivalence groups, after they have been processed. */
1845typedef struct gfc_equiv_list
1846{
1847 gfc_equiv_info *equiv;
1848 struct gfc_equiv_list *next;
1849} gfc_equiv_list;
6de9cd9a
DN
1850
1851/* gfc_case stores the selector list of a case statement. The *low
1852 and *high pointers can point to the same expression in the case of
1853 a single value. If *high is NULL, the selection is from *low
1854 upwards, if *low is NULL the selection is *high downwards.
1855
410d1a45
SK
1856 This structure has separate fields to allow single and double linked
1857 lists of CASEs at the same time. The singe linked list along the NEXT
6de9cd9a
DN
1858 field is a list of cases for a single CASE label. The double linked
1859 list along the LEFT/RIGHT fields is used to detect overlap and to
1860 build a table of the cases for SELECT constructs with a CHARACTER
1861 case expression. */
1862
1863typedef struct gfc_case
1864{
1865 /* Where we saw this case. */
1866 locus where;
1867 int n;
1868
1869 /* Case range values. If (low == high), it's a single value. If one of
1870 the labels is NULL, it's an unbounded case. If both are NULL, this
1871 represents the default case. */
1872 gfc_expr *low, *high;
1873
cf2b3c22
TB
1874 /* Only used for SELECT TYPE. */
1875 gfc_typespec ts;
1876
6de9cd9a
DN
1877 /* Next case label in the list of cases for a single CASE label. */
1878 struct gfc_case *next;
1879
1880 /* Used for detecting overlap, and for code generation. */
1881 struct gfc_case *left, *right;
1882
1883 /* True if this case label can never be matched. */
1884 int unreachable;
1885}
1886gfc_case;
1887
ece3f663 1888#define gfc_get_case() XCNEW (gfc_case)
6de9cd9a
DN
1889
1890
1891typedef struct
1892{
1893 gfc_expr *var, *start, *end, *step;
1894}
1895gfc_iterator;
1896
ece3f663 1897#define gfc_get_iterator() XCNEW (gfc_iterator)
6de9cd9a
DN
1898
1899
f7b529fa 1900/* Allocation structure for ALLOCATE, DEALLOCATE and NULLIFY statements. */
6de9cd9a
DN
1901
1902typedef struct gfc_alloc
1903{
1904 gfc_expr *expr;
1905 struct gfc_alloc *next;
1906}
1907gfc_alloc;
1908
ece3f663 1909#define gfc_get_alloc() XCNEW (gfc_alloc)
6de9cd9a
DN
1910
1911
1912typedef struct
1913{
1914 gfc_expr *unit, *file, *status, *access, *form, *recl,
6f0f0b2e 1915 *blank, *position, *action, *delim, *pad, *iostat, *iomsg, *convert,
9ad55c33 1916 *decimal, *encoding, *round, *sign, *asynchronous, *id, *newunit;
6de9cd9a
DN
1917 gfc_st_label *err;
1918}
1919gfc_open;
1920
1921
1922typedef struct
1923{
7aba8abe 1924 gfc_expr *unit, *status, *iostat, *iomsg;
6de9cd9a
DN
1925 gfc_st_label *err;
1926}
1927gfc_close;
1928
1929
1930typedef struct
1931{
7aba8abe 1932 gfc_expr *unit, *iostat, *iomsg;
6de9cd9a
DN
1933 gfc_st_label *err;
1934}
1935gfc_filepos;
1936
1937
1938typedef struct
1939{
1940 gfc_expr *unit, *file, *iostat, *exist, *opened, *number, *named,
1941 *name, *access, *sequential, *direct, *form, *formatted,
1942 *unformatted, *recl, *nextrec, *blank, *position, *action, *read,
6f0f0b2e
JD
1943 *write, *readwrite, *delim, *pad, *iolength, *iomsg, *convert, *strm_pos,
1944 *asynchronous, *decimal, *encoding, *pending, *round, *sign, *size, *id;
6de9cd9a
DN
1945
1946 gfc_st_label *err;
1947
1948}
1949gfc_inquire;
1950
1951
1952typedef struct
1953{
6f0f0b2e
JD
1954 gfc_expr *unit, *iostat, *iomsg, *id;
1955 gfc_st_label *err, *end, *eor;
1956}
1957gfc_wait;
1958
1959
1960typedef struct
1961{
1962 gfc_expr *io_unit, *format_expr, *rec, *advance, *iostat, *size, *iomsg,
1963 *id, *pos, *asynchronous, *blank, *decimal, *delim, *pad, *round,
ad7ee6f8 1964 *sign, *extra_comma;
6de9cd9a
DN
1965
1966 gfc_symbol *namelist;
1967 /* A format_label of `format_asterisk' indicates the "*" format */
1968 gfc_st_label *format_label;
1969 gfc_st_label *err, *end, *eor;
1970
e0e85e06 1971 locus eor_where, end_where, err_where;
6de9cd9a
DN
1972}
1973gfc_dt;
1974
1975
1976typedef struct gfc_forall_iterator
1977{
1978 gfc_expr *var, *start, *end, *stride;
1979 struct gfc_forall_iterator *next;
1980}
1981gfc_forall_iterator;
1982
1983
03af1e4c
DK
1984/* Linked list to store associations in an ASSOCIATE statement. */
1985
1986typedef struct gfc_association_list
1987{
1988 struct gfc_association_list *next;
1989
1990 /* Whether this is association to a variable that can be changed; otherwise,
1991 it's association to an expression and the name may not be used as
1992 lvalue. */
1993 unsigned variable:1;
1994
1995 char name[GFC_MAX_SYMBOL_LEN + 1];
1996 gfc_symtree *st; /* Symtree corresponding to name. */
1997 gfc_expr *target;
1998}
1999gfc_association_list;
2000#define gfc_get_association_list() XCNEW (gfc_association_list)
2001
2002
6de9cd9a
DN
2003/* Executable statements that fill gfc_code structures. */
2004typedef enum
2005{
d80c695f 2006 EXEC_NOP = 1, EXEC_END_BLOCK, EXEC_ASSIGN, EXEC_LABEL_ASSIGN,
d0a4a61c 2007 EXEC_POINTER_ASSIGN, EXEC_CRITICAL, EXEC_ERROR_STOP,
8e1f752a
DK
2008 EXEC_GOTO, EXEC_CALL, EXEC_COMPCALL, EXEC_ASSIGN_CALL, EXEC_RETURN,
2009 EXEC_ENTRY, EXEC_PAUSE, EXEC_STOP, EXEC_CONTINUE, EXEC_INIT_ASSIGN,
9abe5e56 2010 EXEC_IF, EXEC_ARITHMETIC_IF, EXEC_DO, EXEC_DO_WHILE, EXEC_SELECT, EXEC_BLOCK,
713485cc 2011 EXEC_FORALL, EXEC_WHERE, EXEC_CYCLE, EXEC_EXIT, EXEC_CALL_PPC,
cf2b3c22 2012 EXEC_ALLOCATE, EXEC_DEALLOCATE, EXEC_END_PROCEDURE, EXEC_SELECT_TYPE,
d0a4a61c 2013 EXEC_SYNC_ALL, EXEC_SYNC_MEMORY, EXEC_SYNC_IMAGES,
6f0f0b2e 2014 EXEC_OPEN, EXEC_CLOSE, EXEC_WAIT,
6de9cd9a 2015 EXEC_READ, EXEC_WRITE, EXEC_IOLENGTH, EXEC_TRANSFER, EXEC_DT_END,
6c7a4dfd
JJ
2016 EXEC_BACKSPACE, EXEC_ENDFILE, EXEC_INQUIRE, EXEC_REWIND, EXEC_FLUSH,
2017 EXEC_OMP_CRITICAL, EXEC_OMP_DO, EXEC_OMP_FLUSH, EXEC_OMP_MASTER,
2018 EXEC_OMP_ORDERED, EXEC_OMP_PARALLEL, EXEC_OMP_PARALLEL_DO,
2019 EXEC_OMP_PARALLEL_SECTIONS, EXEC_OMP_PARALLEL_WORKSHARE,
2020 EXEC_OMP_SECTIONS, EXEC_OMP_SINGLE, EXEC_OMP_WORKSHARE,
2021 EXEC_OMP_ATOMIC, EXEC_OMP_BARRIER, EXEC_OMP_END_NOWAIT,
a68ab351 2022 EXEC_OMP_END_SINGLE, EXEC_OMP_TASK, EXEC_OMP_TASKWAIT
6de9cd9a
DN
2023}
2024gfc_exec_op;
2025
2026typedef struct gfc_code
2027{
2028 gfc_exec_op op;
2029
2030 struct gfc_code *block, *next;
2031 locus loc;
2032
79bd1948 2033 gfc_st_label *here, *label1, *label2, *label3;
6de9cd9a 2034 gfc_symtree *symtree;
8234e5e0 2035 gfc_expr *expr1, *expr2, *expr3;
6de9cd9a
DN
2036 /* A name isn't sufficient to identify a subroutine, we need the actual
2037 symbol for the interface definition.
2038 const char *sub_name; */
2039 gfc_symbol *resolved_sym;
12f681a0 2040 gfc_intrinsic_sym *resolved_isym;
6de9cd9a
DN
2041
2042 union
2043 {
2044 gfc_actual_arglist *actual;
2045 gfc_case *case_list;
2046 gfc_iterator *iterator;
cf2b3c22
TB
2047
2048 struct
2049 {
2050 gfc_typespec ts;
2051 gfc_alloc *list;
2052 }
2053 alloc;
2054
03af1e4c
DK
2055 struct
2056 {
2057 gfc_namespace *ns;
2058 gfc_association_list *assoc;
2059 }
2060 block;
2061
6de9cd9a
DN
2062 gfc_open *open;
2063 gfc_close *close;
2064 gfc_filepos *filepos;
2065 gfc_inquire *inquire;
6f0f0b2e 2066 gfc_wait *wait;
6de9cd9a
DN
2067 gfc_dt *dt;
2068 gfc_forall_iterator *forall_iterator;
2069 struct gfc_code *whichloop;
2070 int stop_code;
3d79abbd 2071 gfc_entry_list *entry;
6c7a4dfd
JJ
2072 gfc_omp_clauses *omp_clauses;
2073 const char *omp_name;
2074 gfc_namelist *omp_namelist;
2075 bool omp_bool;
6de9cd9a
DN
2076 }
2077 ext; /* Points to additional structures required by statement */
2078
2079 /* Backend_decl is used for cycle and break labels in do loops, and
949446f5 2080 probably for other constructs as well, once we translate them. */
6de9cd9a
DN
2081 tree backend_decl;
2082}
2083gfc_code;
2084
2085
2086/* Storage for DATA statements. */
2087typedef struct gfc_data_variable
2088{
2089 gfc_expr *expr;
2090 gfc_iterator iter;
2091 struct gfc_data_variable *list, *next;
2092}
2093gfc_data_variable;
2094
2095
2096typedef struct gfc_data_value
2097{
f2112868 2098 mpz_t repeat;
6de9cd9a 2099 gfc_expr *expr;
6de9cd9a
DN
2100 struct gfc_data_value *next;
2101}
2102gfc_data_value;
2103
2104
2105typedef struct gfc_data
2106{
2107 gfc_data_variable *var;
2108 gfc_data_value *value;
2109 locus where;
2110
2111 struct gfc_data *next;
2112}
2113gfc_data;
2114
6de9cd9a
DN
2115
2116/* Structure for holding compile options */
2117typedef struct
2118{
6de9cd9a
DN
2119 char *module_dir;
2120 gfc_source_form source_form;
1dde8683
BM
2121 /* Maximum line lengths in fixed- and free-form source, respectively.
2122 When fixed_line_length or free_line_length are 0, the whole line is used,
2123 regardless of length.
16ab8e74
BF
2124
2125 If the user requests a fixed_line_length <7 then gfc_init_options()
2126 emits a fatal error. */
1dde8683
BM
2127 int fixed_line_length;
2128 int free_line_length;
2129 /* Maximum number of continuation lines in fixed- and free-form source,
2130 respectively. */
5a06474c
JD
2131 int max_continue_fixed;
2132 int max_continue_free;
6de9cd9a 2133 int max_identifier_length;
6c1abb5c 2134 int dump_parse_tree;
6de9cd9a
DN
2135
2136 int warn_aliasing;
3fbab549 2137 int warn_ampersand;
6de9cd9a 2138 int warn_conversion;
daf8c6f0 2139 int warn_conversion_extra;
6de9cd9a 2140 int warn_implicit_interface;
ca071303 2141 int warn_implicit_procedure;
6de9cd9a
DN
2142 int warn_line_truncation;
2143 int warn_surprising;
840bd9f7
SK
2144 int warn_tabs;
2145 int warn_underflow;
c3005b0f
DK
2146 int warn_intrinsic_shadow;
2147 int warn_intrinsics_std;
2220652d 2148 int warn_character_truncation;
bdfd2ff0 2149 int warn_array_temp;
f613cea7 2150 int warn_align_commons;
4ed44ccc 2151 int warn_unused_dummy_argument;
3f139fcf 2152 int max_errors;
6de9cd9a 2153
a23eec13 2154 int flag_all_intrinsics;
3ae9eb27
SK
2155 int flag_default_double;
2156 int flag_default_integer;
2157 int flag_default_real;
6de9cd9a
DN
2158 int flag_dollar_ok;
2159 int flag_underscoring;
2160 int flag_second_underscore;
2161 int flag_implicit_none;
2162 int flag_max_stack_var_size;
63346ddb 2163 int flag_max_array_constructor;
54554825 2164 int flag_range_check;
6de9cd9a
DN
2165 int flag_pack_derived;
2166 int flag_repack_arrays;
2d7c7df6 2167 int flag_preprocessed;
973ff4c0 2168 int flag_f2c;
ee5426a4 2169 int flag_automatic;
131c66cd 2170 int flag_backslash;
868d75db 2171 int flag_backtrace;
e6472bce 2172 int flag_allow_leading_underscore;
eedeea04 2173 int flag_dump_core;
5a0aad31
FXC
2174 int flag_external_blas;
2175 int blas_matmul_limit;
83d890b9 2176 int flag_cray_pointer;
e0bcf78c 2177 int flag_d_lines;
6c7a4dfd 2178 int flag_openmp;
68d2e027 2179 int flag_sign_zero;
654b6073 2180 int flag_module_private;
1e7de83b 2181 int flag_recursive;
51b09ce3
AL
2182 int flag_init_local_zero;
2183 int flag_init_integer;
2184 int flag_init_integer_value;
2185 int flag_init_real;
2186 int flag_init_logical;
2187 int flag_init_character;
2188 char flag_init_character_value;
f613cea7 2189 int flag_align_commons;
71a7778c 2190 int flag_whole_file;
72bd130e 2191 int flag_protect_parens;
6de9cd9a 2192
944b8b35 2193 int fpe;
d3d3011f 2194 int rtcheck;
f4d1d50a 2195 gfc_fcoarray coarray;
944b8b35 2196
6de9cd9a
DN
2197 int warn_std;
2198 int allow_std;
eaa90d25 2199 int convert;
d67ab5ee 2200 int record_marker;
07b3bbf2 2201 int max_subrecord_length;
6de9cd9a
DN
2202}
2203gfc_option_t;
2204
2205extern gfc_option_t gfc_option;
2206
6de9cd9a
DN
2207/* Constructor nodes for array and structure constructors. */
2208typedef struct gfc_constructor
2209{
b7e75771
JD
2210 gfc_constructor_base base;
2211 mpz_t offset; /* Offset within a constructor, used as
2212 key within base. */
2213
6de9cd9a
DN
2214 gfc_expr *expr;
2215 gfc_iterator *iterator;
2216 locus where;
b7e75771
JD
2217
2218 union
6de9cd9a 2219 {
b7e75771 2220 gfc_component *component; /* Record the component being initialized. */
6de9cd9a
DN
2221 }
2222 n;
6de9cd9a
DN
2223}
2224gfc_constructor;
2225
2226
2227typedef struct iterator_stack
2228{
2229 gfc_symtree *variable;
2230 mpz_t value;
2231 struct iterator_stack *prev;
2232}
2233iterator_stack;
2234extern iterator_stack *iter_stack;
2235
34523524 2236
7431bf06
JW
2237/* Used for (possibly nested) SELECT TYPE statements. */
2238typedef struct gfc_select_type_stack
2239{
2240 gfc_symbol *selector; /* Current selector variable. */
2241 gfc_symtree *tmp; /* Current temporary variable. */
2242 struct gfc_select_type_stack *prev; /* Previous element on stack. */
2243}
2244gfc_select_type_stack;
2245extern gfc_select_type_stack *select_type_stack;
2246#define gfc_get_select_type_stack() XCNEW (gfc_select_type_stack)
2247
2248
34523524
DK
2249/* Node in the linked list used for storing finalizer procedures. */
2250
2251typedef struct gfc_finalizer
2252{
2253 struct gfc_finalizer* next;
df2fba9e 2254 locus where; /* Where the FINAL declaration occurred. */
f6fad28e
DK
2255
2256 /* Up to resolution, we want the gfc_symbol, there we lookup the corresponding
2257 symtree and later need only that. This way, we can access and call the
2258 finalizers from every context as they should be "always accessible". I
2259 don't make this a union because we need the information whether proc_sym is
2260 still referenced or not for dereferencing it on deleting a gfc_finalizer
2261 structure. */
2262 gfc_symbol* proc_sym;
2263 gfc_symtree* proc_tree;
34523524
DK
2264}
2265gfc_finalizer;
f6fad28e
DK
2266#define gfc_get_finalizer() XCNEW (gfc_finalizer)
2267
34523524 2268
6de9cd9a
DN
2269/************************ Function prototypes *************************/
2270
2220652d
PT
2271/* decl.c */
2272bool gfc_in_match_data (void);
8234e5e0 2273match gfc_match_char_spec (gfc_typespec *);
2220652d 2274
6de9cd9a
DN
2275/* scanner.c */
2276void gfc_scanner_done_1 (void);
2277void gfc_scanner_init_1 (void);
2278
0ee1b105 2279void gfc_add_include_path (const char *, bool, bool);
31198773 2280void gfc_add_intrinsic_modules_path (const char *);
6de9cd9a 2281void gfc_release_include_path (void);
31198773
FXC
2282FILE *gfc_open_included_file (const char *, bool, bool);
2283FILE *gfc_open_intrinsic_module (const char *);
6de9cd9a 2284
6de9cd9a
DN
2285int gfc_at_end (void);
2286int gfc_at_eof (void);
2287int gfc_at_bol (void);
2288int gfc_at_eol (void);
2289void gfc_advance_line (void);
2290int gfc_check_include (void);
9e8a6720 2291int gfc_define_undef_line (void);
6de9cd9a 2292
8fc541d3
FXC
2293int gfc_wide_is_printable (gfc_char_t);
2294int gfc_wide_is_digit (gfc_char_t);
2295int gfc_wide_fits_in_byte (gfc_char_t);
2296gfc_char_t gfc_wide_tolower (gfc_char_t);
00660189 2297gfc_char_t gfc_wide_toupper (gfc_char_t);
8fc541d3 2298size_t gfc_wide_strlen (const gfc_char_t *);
00660189
FXC
2299int gfc_wide_strncasecmp (const gfc_char_t *, const char *, size_t);
2300gfc_char_t *gfc_wide_memset (gfc_char_t *, gfc_char_t, size_t);
2301char *gfc_widechar_to_char (const gfc_char_t *, int);
2302gfc_char_t *gfc_char_to_widechar (const char *);
2303
ece3f663 2304#define gfc_get_wide_string(n) XCNEWVEC (gfc_char_t, n)
8fc541d3 2305
6de9cd9a 2306void gfc_skip_comments (void);
8fc541d3
FXC
2307gfc_char_t gfc_next_char_literal (int);
2308gfc_char_t gfc_next_char (void);
2309char gfc_next_ascii_char (void);
2310gfc_char_t gfc_peek_char (void);
2311char gfc_peek_ascii_char (void);
6de9cd9a
DN
2312void gfc_error_recovery (void);
2313void gfc_gobble_whitespace (void);
17b1d2a0 2314gfc_try gfc_new_file (void);
2d7c7df6 2315const char * gfc_read_orig_filename (const char *, const char **);
6de9cd9a 2316
d4fa05b9 2317extern gfc_source_form gfc_current_form;
e0bcf78c 2318extern const char *gfc_source_file;
63645982 2319extern locus gfc_current_locus;
6de9cd9a 2320
60332588
JJ
2321void gfc_start_source_files (void);
2322void gfc_end_source_files (void);
2323
6de9cd9a
DN
2324/* misc.c */
2325void *gfc_getmem (size_t) ATTRIBUTE_MALLOC;
2326void gfc_free (void *);
66e4ab31 2327int gfc_terminal_width (void);
6de9cd9a
DN
2328void gfc_clear_ts (gfc_typespec *);
2329FILE *gfc_open_file (const char *);
6de9cd9a
DN
2330const char *gfc_basic_typename (bt);
2331const char *gfc_typename (gfc_typespec *);
ba3ba492 2332const char *gfc_op2string (gfc_intrinsic_op);
6de9cd9a
DN
2333const char *gfc_code2string (const mstring *, int);
2334int gfc_string2code (const mstring *, const char *);
2335const char *gfc_intent_string (sym_intent);
2336
2337void gfc_init_1 (void);
2338void gfc_init_2 (void);
2339void gfc_done_1 (void);
2340void gfc_done_2 (void);
2341
a8b3b0b6
CR
2342int get_c_kind (const char *, CInteropKind_t *);
2343
6de9cd9a
DN
2344/* options.c */
2345unsigned int gfc_init_options (unsigned int, const char **);
3734d960 2346int gfc_handle_option (size_t, const char *, int, int);
6de9cd9a
DN
2347bool gfc_post_options (const char **);
2348
602b8523
TB
2349/* f95-lang.c */
2350void gfc_maybe_initialize_eh (void);
2351
6de9cd9a 2352/* iresolve.c */
6b25a558 2353const char * gfc_get_string (const char *, ...) ATTRIBUTE_PRINTF_1;
a68ab351 2354bool gfc_find_sym_in_expr (gfc_symbol *, gfc_expr *);
6de9cd9a
DN
2355
2356/* error.c */
2357
2358typedef struct gfc_error_buf
2359{
2360 int flag;
d71b89ca
JJ
2361 size_t allocated, index;
2362 char *message;
6de9cd9a
DN
2363} gfc_error_buf;
2364
2365void gfc_error_init_1 (void);
2366void gfc_buffer_error (int);
2367
00660189
FXC
2368const char *gfc_print_wide_char (gfc_char_t);
2369
0ce0154c
KG
2370void gfc_warning (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
2371void gfc_warning_now (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
6de9cd9a
DN
2372void gfc_clear_warning (void);
2373void gfc_warning_check (void);
2374
0ce0154c
KG
2375void gfc_error (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
2376void gfc_error_now (const char *, ...) ATTRIBUTE_GCC_GFC(1,2);
2377void gfc_fatal_error (const char *, ...) ATTRIBUTE_NORETURN ATTRIBUTE_GCC_GFC(1,2);
2378void gfc_internal_error (const char *, ...) ATTRIBUTE_NORETURN ATTRIBUTE_GCC_GFC(1,2);
6de9cd9a
DN
2379void gfc_clear_error (void);
2380int gfc_error_check (void);
8f81c3c6 2381int gfc_error_flag_test (void);
6de9cd9a 2382
8f0d39a8 2383notification gfc_notification_std (int);
17b1d2a0 2384gfc_try gfc_notify_std (int, const char *, ...) ATTRIBUTE_GCC_GFC(2,3);
6de9cd9a
DN
2385
2386/* A general purpose syntax error. */
2387#define gfc_syntax_error(ST) \
2388 gfc_error ("Syntax error in %s statement at %C", gfc_ascii_statement (ST));
2389
2390void gfc_push_error (gfc_error_buf *);
2391void gfc_pop_error (gfc_error_buf *);
d71b89ca 2392void gfc_free_error (gfc_error_buf *);
6de9cd9a 2393
6de9cd9a 2394void gfc_get_errors (int *, int *);
3af8d8cb 2395void gfc_errors_to_warnings (int);
6de9cd9a
DN
2396
2397/* arith.c */
2398void gfc_arith_init_1 (void);
2399void gfc_arith_done_1 (void);
25d8f0a2 2400arith gfc_check_integer_range (mpz_t p, int kind);
d393bbd7 2401bool gfc_check_character_range (gfc_char_t, int);
6de9cd9a 2402
5e8e542f 2403/* trans-types.c */
17b1d2a0 2404gfc_try gfc_check_any_c_kind (gfc_typespec *);
e7a2d5fb 2405int gfc_validate_kind (bt, int, bool);
e0a6661b
FXC
2406int gfc_get_int_kind_from_width_isofortranenv (int size);
2407int gfc_get_real_kind_from_width_isofortranenv (int size);
7c1dab0d 2408tree gfc_get_derived_type (gfc_symbol * derived);
6de9cd9a 2409extern int gfc_index_integer_kind;
9d64df18 2410extern int gfc_default_integer_kind;
f4e7375a 2411extern int gfc_max_integer_kind;
9d64df18
TS
2412extern int gfc_default_real_kind;
2413extern int gfc_default_double_kind;
2414extern int gfc_default_character_kind;
2415extern int gfc_default_logical_kind;
2416extern int gfc_default_complex_kind;
e8525382 2417extern int gfc_c_int_kind;
014ec6ee 2418extern int gfc_intio_kind;
f1412ca5 2419extern int gfc_charlen_int_kind;
39f87c03
FXC
2420extern int gfc_numeric_storage_size;
2421extern int gfc_character_storage_size;
6de9cd9a
DN
2422
2423/* symbol.c */
2424void gfc_clear_new_implicit (void);
17b1d2a0
KG
2425gfc_try gfc_add_new_implicit_range (int, int);
2426gfc_try gfc_merge_new_implicit (gfc_typespec *);
6de9cd9a 2427void gfc_set_implicit_none (void);
e9bd9f7d 2428void gfc_check_function_type (gfc_namespace *);
e9c06563 2429bool gfc_is_intrinsic_typename (const char *);
6de9cd9a 2430
713485cc 2431gfc_typespec *gfc_get_default_type (const char *, gfc_namespace *);
17b1d2a0 2432gfc_try gfc_set_default_type (gfc_symbol *, int, gfc_namespace *);
6de9cd9a 2433
66e4ab31 2434void gfc_set_sym_referenced (gfc_symbol *);
6de9cd9a 2435
17b1d2a0 2436gfc_try gfc_add_attribute (symbol_attribute *, locus *);
2b374f55 2437gfc_try gfc_add_ext_attribute (symbol_attribute *, ext_attr_id_t, locus *);
17b1d2a0 2438gfc_try gfc_add_allocatable (symbol_attribute *, locus *);
be59db2d 2439gfc_try gfc_add_codimension (symbol_attribute *, const char *, locus *);
17b1d2a0
KG
2440gfc_try gfc_add_dimension (symbol_attribute *, const char *, locus *);
2441gfc_try gfc_add_external (symbol_attribute *, locus *);
2442gfc_try gfc_add_intrinsic (symbol_attribute *, locus *);
2443gfc_try gfc_add_optional (symbol_attribute *, locus *);
2444gfc_try gfc_add_pointer (symbol_attribute *, locus *);
2445gfc_try gfc_add_cray_pointer (symbol_attribute *, locus *);
2446gfc_try gfc_add_cray_pointee (symbol_attribute *, locus *);
32e8bb8e 2447match gfc_mod_pointee_as (gfc_array_spec *);
17b1d2a0
KG
2448gfc_try gfc_add_protected (symbol_attribute *, const char *, locus *);
2449gfc_try gfc_add_result (symbol_attribute *, const char *, locus *);
2450gfc_try gfc_add_save (symbol_attribute *, const char *, locus *);
2451gfc_try gfc_add_threadprivate (symbol_attribute *, const char *, locus *);
2452gfc_try gfc_add_saved_common (symbol_attribute *, locus *);
2453gfc_try gfc_add_target (symbol_attribute *, locus *);
2454gfc_try gfc_add_dummy (symbol_attribute *, const char *, locus *);
2455gfc_try gfc_add_generic (symbol_attribute *, const char *, locus *);
2456gfc_try gfc_add_common (symbol_attribute *, locus *);
2457gfc_try gfc_add_in_common (symbol_attribute *, const char *, locus *);
2458gfc_try gfc_add_in_equivalence (symbol_attribute *, const char *, locus *);
2459gfc_try gfc_add_data (symbol_attribute *, const char *, locus *);
2460gfc_try gfc_add_in_namelist (symbol_attribute *, const char *, locus *);
2461gfc_try gfc_add_sequence (symbol_attribute *, const char *, locus *);
2462gfc_try gfc_add_elemental (symbol_attribute *, locus *);
2463gfc_try gfc_add_pure (symbol_attribute *, locus *);
2464gfc_try gfc_add_recursive (symbol_attribute *, locus *);
2465gfc_try gfc_add_function (symbol_attribute *, const char *, locus *);
2466gfc_try gfc_add_subroutine (symbol_attribute *, const char *, locus *);
2467gfc_try gfc_add_volatile (symbol_attribute *, const char *, locus *);
1eee5628 2468gfc_try gfc_add_asynchronous (symbol_attribute *, const char *, locus *);
17b1d2a0 2469gfc_try gfc_add_proc (symbol_attribute *attr, const char *name, locus *where);
52f49934 2470gfc_try gfc_add_abstract (symbol_attribute* attr, locus* where);
17b1d2a0
KG
2471
2472gfc_try gfc_add_access (symbol_attribute *, gfc_access, const char *, locus *);
63a3341a
PT
2473gfc_try gfc_add_is_bind_c (symbol_attribute *, const char *, locus *, int);
2474gfc_try gfc_add_extension (symbol_attribute *, locus *);
17b1d2a0
KG
2475gfc_try gfc_add_value (symbol_attribute *, const char *, locus *);
2476gfc_try gfc_add_flavor (symbol_attribute *, sym_flavor, const char *, locus *);
2477gfc_try gfc_add_entry (symbol_attribute *, const char *, locus *);
2478gfc_try gfc_add_procedure (symbol_attribute *, procedure_type,
231b2fcc 2479 const char *, locus *);
17b1d2a0
KG
2480gfc_try gfc_add_intent (symbol_attribute *, sym_intent, locus *);
2481gfc_try gfc_add_explicit_interface (gfc_symbol *, ifsrc,
6de9cd9a 2482 gfc_formal_arglist *, locus *);
17b1d2a0 2483gfc_try gfc_add_type (gfc_symbol *, gfc_typespec *, locus *);
6de9cd9a
DN
2484
2485void gfc_clear_attr (symbol_attribute *);
17b1d2a0
KG
2486gfc_try gfc_missing_attr (symbol_attribute *, locus *);
2487gfc_try gfc_copy_attr (symbol_attribute *, symbol_attribute *, locus *);
6de9cd9a 2488
17b1d2a0 2489gfc_try gfc_add_component (gfc_symbol *, const char *, gfc_component **);
6de9cd9a
DN
2490gfc_symbol *gfc_use_derived (gfc_symbol *);
2491gfc_symtree *gfc_use_derived_tree (gfc_symtree *);
9d1210f4 2492gfc_component *gfc_find_component (gfc_symbol *, const char *, bool, bool);
6de9cd9a
DN
2493
2494gfc_st_label *gfc_get_st_label (int);
2495void gfc_free_st_label (gfc_st_label *);
2496void gfc_define_st_label (gfc_st_label *, gfc_sl_type, locus *);
17b1d2a0 2497gfc_try gfc_reference_st_label (gfc_st_label *, gfc_sl_type);
6de9cd9a 2498
08113c73
PT
2499gfc_expr * gfc_lval_expr_from_sym (gfc_symbol *);
2500
0366dfe9 2501gfc_namespace *gfc_get_namespace (gfc_namespace *, int);
6de9cd9a
DN
2502gfc_symtree *gfc_new_symtree (gfc_symtree **, const char *);
2503gfc_symtree *gfc_find_symtree (gfc_symtree *, const char *);
a99d95a2 2504void gfc_delete_symtree (gfc_symtree **, const char *);
aa84a9a5 2505gfc_symtree *gfc_get_unique_symtree (gfc_namespace *);
6de9cd9a
DN
2506gfc_user_op *gfc_get_uop (const char *);
2507gfc_user_op *gfc_find_uop (const char *, gfc_namespace *);
2508void gfc_free_symbol (gfc_symbol *);
2509gfc_symbol *gfc_new_symbol (const char *, gfc_namespace *);
2510int gfc_find_symbol (const char *, gfc_namespace *, int, gfc_symbol **);
2511int gfc_find_sym_tree (const char *, gfc_namespace *, int, gfc_symtree **);
2512int gfc_get_symbol (const char *, gfc_namespace *, gfc_symbol **);
2ec855f1 2513gfc_try verify_c_interop (gfc_typespec *);
17b1d2a0
KG
2514gfc_try verify_c_interop_param (gfc_symbol *);
2515gfc_try verify_bind_c_sym (gfc_symbol *, gfc_typespec *, int, gfc_common_head *);
2516gfc_try verify_bind_c_derived_type (gfc_symbol *);
2517gfc_try verify_com_block_vars_c_interop (gfc_common_head *);
741ac903 2518void generate_isocbinding_symbol (const char *, iso_c_binding_symbol, const char *);
a8b3b0b6 2519gfc_symbol *get_iso_c_sym (gfc_symbol *, char *, char *, int);
08a6b8e0 2520int gfc_get_sym_tree (const char *, gfc_namespace *, gfc_symtree **, bool);
6de9cd9a
DN
2521int gfc_get_ha_symbol (const char *, gfc_symbol **);
2522int gfc_get_ha_sym_tree (const char *, gfc_symtree **);
2523
2524int gfc_symbols_could_alias (gfc_symbol *, gfc_symbol *);
2525
2526void gfc_undo_symbols (void);
2527void gfc_commit_symbols (void);
66e4ab31 2528void gfc_commit_symbol (gfc_symbol *);
b76e28c6 2529gfc_charlen *gfc_new_charlen (gfc_namespace *, gfc_charlen *);
27f31e39 2530void gfc_free_charlen (gfc_charlen *, gfc_charlen *);
6de9cd9a
DN
2531void gfc_free_namespace (gfc_namespace *);
2532
2533void gfc_symbol_init_2 (void);
2534void gfc_symbol_done_2 (void);
2535
9056bd70 2536void gfc_traverse_symtree (gfc_symtree *, void (*)(gfc_symtree *));
6de9cd9a
DN
2537void gfc_traverse_ns (gfc_namespace *, void (*)(gfc_symbol *));
2538void gfc_traverse_user_op (gfc_namespace *, void (*)(gfc_user_op *));
2539void gfc_save_all (gfc_namespace *);
2540
2541void gfc_symbol_state (void);
71a7778c
PT
2542void gfc_free_dt_list (void);
2543
6de9cd9a 2544
cb9e4f55
TS
2545gfc_gsymbol *gfc_get_gsymbol (const char *);
2546gfc_gsymbol *gfc_find_gsymbol (gfc_gsymbol *, const char *);
c9543002 2547
3e15518b 2548gfc_typebound_proc* gfc_get_typebound_proc (gfc_typebound_proc*);
30b608eb 2549gfc_symbol* gfc_get_derived_super_type (gfc_symbol*);
cf2b3c22
TB
2550gfc_symbol* gfc_get_ultimate_derived_super_type (gfc_symbol*);
2551bool gfc_type_is_extension_of (gfc_symbol *, gfc_symbol *);
e74f1cc8 2552bool gfc_type_compatible (gfc_typespec *, gfc_typespec *);
30b608eb 2553
c73b6478
JW
2554void gfc_copy_formal_args (gfc_symbol *, gfc_symbol *);
2555void gfc_copy_formal_args_intr (gfc_symbol *, gfc_intrinsic_sym *);
7e196f89 2556void gfc_copy_formal_args_ppc (gfc_component *, gfc_symbol *);
69773742 2557
34523524
DK
2558void gfc_free_finalizer (gfc_finalizer *el); /* Needed in resolve.c, too */
2559
f37e928c
DK
2560gfc_try gfc_check_symbol_typed (gfc_symbol*, gfc_namespace*, bool, locus);
2561
f2cbd86c
DF
2562/* intrinsic.c -- true if working in an init-expr, false otherwise. */
2563extern bool gfc_init_expr_flag;
6de9cd9a
DN
2564
2565/* Given a symbol that we have decided is intrinsic, mark it as such
2566 by placing it into a special module that is otherwise impossible to
2567 read or write. */
2568
cb9e4f55 2569#define gfc_intrinsic_symbol(SYM) SYM->module = gfc_get_string ("(intrinsic)")
6de9cd9a
DN
2570
2571void gfc_intrinsic_init_1 (void);
2572void gfc_intrinsic_done_1 (void);
2573
2574char gfc_type_letter (bt);
2575gfc_symbol * gfc_get_intrinsic_sub_symbol (const char *);
17b1d2a0
KG
2576gfc_try gfc_convert_type (gfc_expr *, gfc_typespec *, int);
2577gfc_try gfc_convert_type_warn (gfc_expr *, gfc_typespec *, int, int);
2578gfc_try gfc_convert_chartype (gfc_expr *, gfc_typespec *);
6de9cd9a
DN
2579int gfc_generic_intrinsic (const char *);
2580int gfc_specific_intrinsic (const char *);
c3005b0f 2581bool gfc_is_intrinsic (gfc_symbol*, int, locus);
0e7e7e6e 2582int gfc_intrinsic_actual_ok (const char *, const bool);
6de9cd9a 2583gfc_intrinsic_sym *gfc_find_function (const char *);
cd5ecab6 2584gfc_intrinsic_sym *gfc_find_subroutine (const char *);
6de9cd9a
DN
2585
2586match gfc_intrinsic_func_interface (gfc_expr *, int);
2587match gfc_intrinsic_sub_interface (gfc_code *, int);
2588
c3005b0f 2589void gfc_warn_intrinsic_shadow (const gfc_symbol*, bool, bool);
17b1d2a0
KG
2590gfc_try gfc_check_intrinsic_standard (const gfc_intrinsic_sym*, const char**,
2591 bool, locus);
c3005b0f 2592
6de9cd9a
DN
2593/* match.c -- FIXME */
2594void gfc_free_iterator (gfc_iterator *, int);
2595void gfc_free_forall_iterator (gfc_forall_iterator *);
2596void gfc_free_alloc_list (gfc_alloc *);
2597void gfc_free_namelist (gfc_namelist *);
2598void gfc_free_equiv (gfc_equiv *);
2599void gfc_free_data (gfc_data *);
2600void gfc_free_case_list (gfc_case *);
2601
b6398823
PT
2602/* matchexp.c -- FIXME too? */
2603gfc_expr *gfc_get_parentheses (gfc_expr *);
2604
6c7a4dfd
JJ
2605/* openmp.c */
2606void gfc_free_omp_clauses (gfc_omp_clauses *);
2607void gfc_resolve_omp_directive (gfc_code *, gfc_namespace *);
2608void gfc_resolve_do_iterator (gfc_code *, gfc_symbol *);
2609void gfc_resolve_omp_parallel_blocks (gfc_code *, gfc_namespace *);
2610void gfc_resolve_omp_do_blocks (gfc_code *, gfc_namespace *);
2611
6de9cd9a
DN
2612/* expr.c */
2613void gfc_free_actual_arglist (gfc_actual_arglist *);
2614gfc_actual_arglist *gfc_copy_actual_arglist (gfc_actual_arglist *);
2615const char *gfc_extract_int (gfc_expr *, int *);
1d6b7f39 2616bool is_subref_array (gfc_expr *);
6de9cd9a
DN
2617
2618gfc_expr *gfc_build_conversion (gfc_expr *);
2619void gfc_free_ref_list (gfc_ref *);
dcea1b2f 2620void gfc_type_convert_binary (gfc_expr *, int);
6de9cd9a 2621int gfc_is_constant_expr (gfc_expr *);
17b1d2a0 2622gfc_try gfc_simplify_expr (gfc_expr *, int);
4075a94e 2623int gfc_has_vector_index (gfc_expr *);
6de9cd9a
DN
2624
2625gfc_expr *gfc_get_expr (void);
b7e75771
JD
2626gfc_expr *gfc_get_array_expr (bt type, int kind, locus *);
2627gfc_expr *gfc_get_null_expr (locus *);
2628gfc_expr *gfc_get_operator_expr (locus *, gfc_intrinsic_op,gfc_expr *, gfc_expr *);
2629gfc_expr *gfc_get_structure_constructor_expr (bt, int, locus *);
2630gfc_expr *gfc_get_constant_expr (bt, int, locus *);
2631gfc_expr *gfc_get_character_expr (int, locus *, const char *, int len);
2632gfc_expr *gfc_get_int_expr (int, locus *, int);
2633gfc_expr *gfc_get_logical_expr (int, locus *, bool);
2634gfc_expr *gfc_get_iokind_expr (locus *, io_kind);
2635
6de9cd9a
DN
2636void gfc_free_expr (gfc_expr *);
2637void gfc_replace_expr (gfc_expr *, gfc_expr *);
6de9cd9a 2638mpz_t *gfc_copy_shape (mpz_t *, int);
94538bd1 2639mpz_t *gfc_copy_shape_excluding (mpz_t *, int, gfc_expr *);
6de9cd9a 2640gfc_expr *gfc_copy_expr (gfc_expr *);
8e1f752a 2641gfc_ref* gfc_copy_ref (gfc_ref*);
6de9cd9a 2642
17b1d2a0 2643gfc_try gfc_specification_expr (gfc_expr *);
6de9cd9a
DN
2644
2645int gfc_numeric_ts (gfc_typespec *);
2646int gfc_kind_max (gfc_expr *, gfc_expr *);
2647
ca8a8795 2648gfc_try gfc_check_conformance (gfc_expr *, gfc_expr *, const char *, ...) ATTRIBUTE_PRINTF_3;
17b1d2a0
KG
2649gfc_try gfc_check_assign (gfc_expr *, gfc_expr *, int);
2650gfc_try gfc_check_pointer_assign (gfc_expr *, gfc_expr *);
2651gfc_try gfc_check_assign_symbol (gfc_symbol *, gfc_expr *);
6de9cd9a 2652
16e520b6 2653bool gfc_has_default_initializer (gfc_symbol *);
54b4ba60 2654gfc_expr *gfc_default_initializer (gfc_typespec *);
294fbfc8
TS
2655gfc_expr *gfc_get_variable_expr (gfc_symtree *);
2656
b7d1d8b4
PT
2657gfc_array_spec *gfc_get_full_arrayspec_from_expr (gfc_expr *expr);
2658
640670c7
PT
2659bool gfc_traverse_expr (gfc_expr *, gfc_symbol *,
2660 bool (*)(gfc_expr *, gfc_symbol *, int*),
2661 int);
66e4ab31 2662void gfc_expr_set_symbols_referenced (gfc_expr *);
f37e928c 2663gfc_try gfc_expr_check_typed (gfc_expr*, gfc_namespace*, bool);
c6acea9d 2664void gfc_expr_replace_symbols (gfc_expr *, gfc_symbol *);
f64edc8b 2665void gfc_expr_replace_comp (gfc_expr *, gfc_component *);
f37e928c 2666
f64edc8b 2667bool gfc_is_proc_ptr_comp (gfc_expr *, gfc_component **);
713485cc 2668
d3a9eea2
TB
2669bool gfc_is_coindexed (gfc_expr *);
2670bool gfc_has_ultimate_allocatable (gfc_expr *);
2671bool gfc_has_ultimate_pointer (gfc_expr *);
2672
2673
6de9cd9a
DN
2674/* st.c */
2675extern gfc_code new_st;
2676
2677void gfc_clear_new_st (void);
2678gfc_code *gfc_get_code (void);
2679gfc_code *gfc_append_code (gfc_code *, gfc_code *);
2680void gfc_free_statement (gfc_code *);
2681void gfc_free_statements (gfc_code *);
03af1e4c 2682void gfc_free_association_list (gfc_association_list *);
6de9cd9a
DN
2683
2684/* resolve.c */
17b1d2a0 2685gfc_try gfc_resolve_expr (gfc_expr *);
6de9cd9a 2686void gfc_resolve (gfc_namespace *);
6c7a4dfd 2687void gfc_resolve_blocks (gfc_code *, gfc_namespace *);
6de9cd9a
DN
2688int gfc_impure_variable (gfc_symbol *);
2689int gfc_pure (gfc_symbol *);
2690int gfc_elemental (gfc_symbol *);
17b1d2a0
KG
2691gfc_try gfc_resolve_iterator (gfc_iterator *, bool);
2692gfc_try find_forall_index (gfc_expr *, gfc_symbol *, int);
2693gfc_try gfc_resolve_index (gfc_expr *, int);
2694gfc_try gfc_resolve_dim_arg (gfc_expr *);
4213f93b 2695int gfc_is_formal_arg (void);
07368af0 2696void gfc_resolve_substring_charlen (gfc_expr *);
a8b3b0b6 2697match gfc_iso_c_sub_interface(gfc_code *, gfc_symbol *);
cf2b3c22
TB
2698gfc_expr *gfc_expr_to_initialize (gfc_expr *);
2699bool gfc_type_is_extensible (gfc_symbol *sym);
a8b3b0b6 2700
6de9cd9a
DN
2701
2702/* array.c */
b7e75771
JD
2703gfc_iterator *gfc_copy_iterator (gfc_iterator *);
2704
6de9cd9a
DN
2705void gfc_free_array_spec (gfc_array_spec *);
2706gfc_array_ref *gfc_copy_array_ref (gfc_array_ref *);
2707
17b1d2a0 2708gfc_try gfc_set_array_spec (gfc_symbol *, gfc_array_spec *, locus *);
6de9cd9a 2709gfc_array_spec *gfc_copy_array_spec (gfc_array_spec *);
17b1d2a0 2710gfc_try gfc_resolve_array_spec (gfc_array_spec *, int);
6de9cd9a
DN
2711
2712int gfc_compare_array_spec (gfc_array_spec *, gfc_array_spec *);
2713
6de9cd9a 2714void gfc_simplify_iterator_var (gfc_expr *);
17b1d2a0 2715gfc_try gfc_expand_constructor (gfc_expr *);
6de9cd9a
DN
2716int gfc_constant_ac (gfc_expr *);
2717int gfc_expanded_ac (gfc_expr *);
17b1d2a0
KG
2718gfc_try gfc_resolve_character_array_constructor (gfc_expr *);
2719gfc_try gfc_resolve_array_constructor (gfc_expr *);
2720gfc_try gfc_check_constructor_type (gfc_expr *);
2721gfc_try gfc_check_iter_variable (gfc_expr *);
2722gfc_try gfc_check_constructor (gfc_expr *, gfc_try (*)(gfc_expr *));
17b1d2a0
KG
2723gfc_try gfc_array_size (gfc_expr *, mpz_t *);
2724gfc_try gfc_array_dimen_size (gfc_expr *, int, mpz_t *);
2725gfc_try gfc_array_ref_shape (gfc_array_ref *, mpz_t *);
6de9cd9a 2726gfc_array_ref *gfc_find_array_ref (gfc_expr *);
66e4ab31 2727tree gfc_conv_array_initializer (tree type, gfc_expr *);
17b1d2a0
KG
2728gfc_try spec_size (gfc_array_spec *, mpz_t *);
2729gfc_try spec_dimen_size (gfc_array_spec *, int, mpz_t *);
4077d207 2730int gfc_is_compile_time_shape (gfc_array_spec *);
6de9cd9a 2731
543af7ab
TK
2732gfc_try gfc_ref_dimen_size (gfc_array_ref *, int dimen, mpz_t *);
2733
2734
6de9cd9a
DN
2735/* interface.c -- FIXME: some of these should be in symbol.c */
2736void gfc_free_interface (gfc_interface *);
e0e85e06 2737int gfc_compare_derived_types (gfc_symbol *, gfc_symbol *);
6de9cd9a 2738int gfc_compare_types (gfc_typespec *, gfc_typespec *);
889dc035
JW
2739int gfc_compare_interfaces (gfc_symbol*, gfc_symbol*, const char *, int, int,
2740 char *, int);
6de9cd9a
DN
2741void gfc_check_interfaces (gfc_namespace *);
2742void gfc_procedure_use (gfc_symbol *, gfc_actual_arglist **, locus *);
7e196f89 2743void gfc_ppc_use (gfc_component *, gfc_actual_arglist **, locus *);
6de9cd9a
DN
2744gfc_symbol *gfc_search_interface (gfc_interface *, int,
2745 gfc_actual_arglist **);
4a44a72d 2746gfc_try gfc_extend_expr (gfc_expr *, bool *);
6de9cd9a 2747void gfc_free_formal_arglist (gfc_formal_arglist *);
17b1d2a0
KG
2748gfc_try gfc_extend_assign (gfc_code *, gfc_namespace *);
2749gfc_try gfc_add_interface (gfc_symbol *);
2b77e908
FXC
2750gfc_interface *gfc_current_interface_head (void);
2751void gfc_set_current_interface_head (gfc_interface *);
f6fad28e 2752gfc_symtree* gfc_find_sym_in_symtree (gfc_symbol*);
f0ac18b7 2753bool gfc_arglist_matches_symbol (gfc_actual_arglist**, gfc_symbol*);
94747289 2754bool gfc_check_operator_interface (gfc_symbol*, gfc_intrinsic_op, locus);
03af1e4c 2755int gfc_has_vector_subscript (gfc_expr*);
6de9cd9a
DN
2756
2757/* io.c */
2758extern gfc_st_label format_asterisk;
2759
2760void gfc_free_open (gfc_open *);
17b1d2a0 2761gfc_try gfc_resolve_open (gfc_open *);
6de9cd9a 2762void gfc_free_close (gfc_close *);
17b1d2a0 2763gfc_try gfc_resolve_close (gfc_close *);
6de9cd9a 2764void gfc_free_filepos (gfc_filepos *);
17b1d2a0 2765gfc_try gfc_resolve_filepos (gfc_filepos *);
6de9cd9a 2766void gfc_free_inquire (gfc_inquire *);
17b1d2a0 2767gfc_try gfc_resolve_inquire (gfc_inquire *);
6de9cd9a 2768void gfc_free_dt (gfc_dt *);
88e18fed 2769gfc_try gfc_resolve_dt (gfc_dt *, locus *);
6f0f0b2e 2770void gfc_free_wait (gfc_wait *);
17b1d2a0 2771gfc_try gfc_resolve_wait (gfc_wait *);
6de9cd9a
DN
2772
2773/* module.c */
2774void gfc_module_init_2 (void);
2775void gfc_module_done_2 (void);
2776void gfc_dump_module (const char *, int);
af30f793 2777bool gfc_check_access (gfc_access, gfc_access);
a64f5186 2778void gfc_free_use_stmts (gfc_use_list *);
6de9cd9a
DN
2779
2780/* primary.c */
2781symbol_attribute gfc_variable_attr (gfc_expr *, gfc_typespec *);
2782symbol_attribute gfc_expr_attr (gfc_expr *);
eb77cddf 2783match gfc_match_rvalue (gfc_expr **);
713485cc 2784match gfc_match_varspec (gfc_expr*, int, bool, bool);
8fc541d3 2785int gfc_check_digit (char, int);
2d71b918 2786bool gfc_is_function_return_value (gfc_symbol *, gfc_namespace *);
6de9cd9a
DN
2787
2788/* trans.c */
2789void gfc_generate_code (gfc_namespace *);
2790void gfc_generate_module_code (gfc_namespace *);
2791
2792/* bbt.c */
2793typedef int (*compare_fn) (void *, void *);
2794void gfc_insert_bbt (void *, void *, compare_fn);
2795void gfc_delete_bbt (void *, void *, compare_fn);
2796
2797/* dump-parse-tree.c */
6c1abb5c 2798void gfc_dump_parse_tree (gfc_namespace *, FILE *);
6de9cd9a
DN
2799
2800/* parse.c */
17b1d2a0 2801gfc_try gfc_parse_file (void);
ca39e6f2 2802void gfc_global_used (gfc_gsymbol *, locus *);
6de9cd9a 2803
2990f854
PT
2804/* dependency.c */
2805int gfc_dep_compare_expr (gfc_expr *, gfc_expr *);
23f2d017 2806int gfc_is_data_pointer (gfc_expr *);
2990f854 2807
fb5bc08b
DK
2808/* check.c */
2809gfc_try gfc_check_same_strlen (const gfc_expr*, const gfc_expr*, const char*);
2810
d15bac21
JW
2811/* class.c */
2812void gfc_add_component_ref (gfc_expr *, const char *);
2813gfc_expr *gfc_class_null_initializer (gfc_typespec *);
2814gfc_try gfc_build_class_symbol (gfc_typespec *, symbol_attribute *,
2815 gfc_array_spec **, bool);
2816gfc_symbol *gfc_find_derived_vtab (gfc_symbol *, bool);
2817gfc_symtree* gfc_find_typebound_proc (gfc_symbol*, gfc_try*,
2818 const char*, bool, locus*);
2819gfc_symtree* gfc_find_typebound_user_op (gfc_symbol*, gfc_try*,
2820 const char*, bool, locus*);
2821gfc_typebound_proc* gfc_find_typebound_intrinsic_op (gfc_symbol*, gfc_try*,
2822 gfc_intrinsic_op, bool,
2823 locus*);
2824gfc_symtree* gfc_get_tbp_symtree (gfc_symtree**, const char*);
2825
7a08eda1
JW
2826#define CLASS_DATA(sym) sym->ts.u.derived->components
2827
53814b8f 2828#endif /* GCC_GFORTRAN_H */