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