]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/fortran/f95-lang.c
* gcc.dg/torture/pr36891.c: Ignore an irrelevant warning.
[thirdparty/gcc.git] / gcc / fortran / f95-lang.c
CommitLineData
f36327db 1/* gfortran backend interface
44855d8c 2 Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
6c7a4dfd 3 Free Software Foundation, Inc.
6de9cd9a
DN
4 Contributed by Paul Brook.
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/* f95-lang.c-- GCC backend interface stuff */
23
24/* declare required prototypes: */
25
26#include "config.h"
d22e4895 27#include "system.h"
6de9cd9a
DN
28#include "ansidecl.h"
29#include "system.h"
30#include "coretypes.h"
31#include "tree.h"
726a989a 32#include "gimple.h"
6de9cd9a
DN
33#include "flags.h"
34#include "langhooks.h"
35#include "langhooks-def.h"
36#include "timevar.h"
37#include "tm.h"
38#include "function.h"
39#include "ggc.h"
40#include "toplev.h"
41#include "target.h"
42#include "debug.h"
43#include "diagnostic.h"
44#include "tree-dump.h"
45#include "cgraph.h"
46
47#include "gfortran.h"
670637ee 48#include "cpp.h"
6de9cd9a
DN
49#include "trans.h"
50#include "trans-types.h"
51#include "trans-const.h"
52
6de9cd9a
DN
53/* Language-dependent contents of an identifier. */
54
55struct lang_identifier
56GTY(())
57{
58 struct tree_identifier common;
59};
60
61/* The resulting tree type. */
62
63union lang_tree_node
f88cf205 64GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
726a989a 65 chain_next ("(union lang_tree_node *)TREE_CHAIN (&%h.generic)")))
07beea0d 66
6de9cd9a
DN
67{
68 union tree_node GTY((tag ("0"),
69 desc ("tree_node_structure (&%h)"))) generic;
70 struct lang_identifier GTY((tag ("1"))) identifier;
71};
72
73/* Save and restore the variables in this file and elsewhere
74 that keep track of the progress of compilation of the current function.
75 Used for nested functions. */
76
77struct language_function
78GTY(())
79{
80 /* struct gfc_language_function base; */
6de9cd9a
DN
81 struct binding_level *binding_level;
82};
83
84/* We don't have a lex/yacc lexer/parser, but toplev expects these to
85 exist anyway. */
86void yyerror (const char *str);
87int yylex (void);
88
89static void gfc_init_decl_processing (void);
90static void gfc_init_builtin_functions (void);
91
92/* Each front end provides its own. */
93static bool gfc_init (void);
94static void gfc_finish (void);
95static void gfc_print_identifier (FILE *, tree, int);
96static bool gfc_mark_addressable (tree);
97void do_function_end (void);
98int global_bindings_p (void);
30e257e5 99static void clear_binding_stack (void);
6de9cd9a 100static void gfc_be_parse_file (int);
4862826d 101static alias_set_type gfc_get_alias_set (tree);
a64f5186 102static void gfc_init_ts (void);
6de9cd9a
DN
103
104#undef LANG_HOOKS_NAME
105#undef LANG_HOOKS_INIT
106#undef LANG_HOOKS_FINISH
107#undef LANG_HOOKS_INIT_OPTIONS
108#undef LANG_HOOKS_HANDLE_OPTION
109#undef LANG_HOOKS_POST_OPTIONS
110#undef LANG_HOOKS_PRINT_IDENTIFIER
111#undef LANG_HOOKS_PARSE_FILE
6de9cd9a
DN
112#undef LANG_HOOKS_MARK_ADDRESSABLE
113#undef LANG_HOOKS_TYPE_FOR_MODE
114#undef LANG_HOOKS_TYPE_FOR_SIZE
7b9c708f 115#undef LANG_HOOKS_GET_ALIAS_SET
a64f5186 116#undef LANG_HOOKS_INIT_TS
6c7a4dfd
JJ
117#undef LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE
118#undef LANG_HOOKS_OMP_PREDETERMINED_SHARING
cd75853e 119#undef LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR
a68ab351
JJ
120#undef LANG_HOOKS_OMP_CLAUSE_COPY_CTOR
121#undef LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP
122#undef LANG_HOOKS_OMP_CLAUSE_DTOR
6c7a4dfd
JJ
123#undef LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR
124#undef LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE
a68ab351 125#undef LANG_HOOKS_OMP_PRIVATE_OUTER_REF
6c7a4dfd 126#undef LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES
c79efc4d 127#undef LANG_HOOKS_BUILTIN_FUNCTION
fad0afd7 128#undef LANG_HOOKS_GET_ARRAY_DESCR_INFO
6de9cd9a
DN
129
130/* Define lang hooks. */
3135ce84 131#define LANG_HOOKS_NAME "GNU Fortran"
6de9cd9a
DN
132#define LANG_HOOKS_INIT gfc_init
133#define LANG_HOOKS_FINISH gfc_finish
134#define LANG_HOOKS_INIT_OPTIONS gfc_init_options
135#define LANG_HOOKS_HANDLE_OPTION gfc_handle_option
136#define LANG_HOOKS_POST_OPTIONS gfc_post_options
137#define LANG_HOOKS_PRINT_IDENTIFIER gfc_print_identifier
138#define LANG_HOOKS_PARSE_FILE gfc_be_parse_file
a64f5186
JJ
139#define LANG_HOOKS_MARK_ADDRESSABLE gfc_mark_addressable
140#define LANG_HOOKS_TYPE_FOR_MODE gfc_type_for_mode
141#define LANG_HOOKS_TYPE_FOR_SIZE gfc_type_for_size
142#define LANG_HOOKS_GET_ALIAS_SET gfc_get_alias_set
143#define LANG_HOOKS_INIT_TS gfc_init_ts
6c7a4dfd
JJ
144#define LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE gfc_omp_privatize_by_reference
145#define LANG_HOOKS_OMP_PREDETERMINED_SHARING gfc_omp_predetermined_sharing
cd75853e 146#define LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR gfc_omp_clause_default_ctor
a68ab351
JJ
147#define LANG_HOOKS_OMP_CLAUSE_COPY_CTOR gfc_omp_clause_copy_ctor
148#define LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP gfc_omp_clause_assign_op
149#define LANG_HOOKS_OMP_CLAUSE_DTOR gfc_omp_clause_dtor
6c7a4dfd
JJ
150#define LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR gfc_omp_disregard_value_expr
151#define LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE gfc_omp_private_debug_clause
a68ab351 152#define LANG_HOOKS_OMP_PRIVATE_OUTER_REF gfc_omp_private_outer_ref
6c7a4dfd
JJ
153#define LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES \
154 gfc_omp_firstprivatize_type_sizes
c79efc4d 155#define LANG_HOOKS_BUILTIN_FUNCTION gfc_builtin_function
fad0afd7 156#define LANG_HOOKS_GET_ARRAY_DESCR_INFO gfc_get_array_descr_info
6de9cd9a
DN
157
158const struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
159
6de9cd9a
DN
160#define NULL_BINDING_LEVEL (struct binding_level *) NULL
161
162/* A chain of binding_level structures awaiting reuse. */
163
164static GTY(()) struct binding_level *free_binding_level;
165
166/* The elements of `ridpointers' are identifier nodes
167 for the reserved type names and storage classes.
168 It is indexed by a RID_... value. */
169tree *ridpointers = NULL;
170
6de9cd9a
DN
171/* Prepare expr to be an argument of a TRUTH_NOT_EXPR,
172 or validate its data type for an `if' or `while' statement or ?..: exp.
173
174 This preparation consists of taking the ordinary
175 representation of an expression expr and producing a valid tree
176 boolean expression describing whether expr is nonzero. We could
177 simply always do build_binary_op (NE_EXPR, expr, boolean_false_node, 1),
178 but we optimize comparisons, &&, ||, and !.
179
180 The resulting type should always be `boolean_type_node'.
181 This is much simpler than the corresponding C version because we have a
182 distinct boolean type. */
183
184tree
185gfc_truthvalue_conversion (tree expr)
186{
187 switch (TREE_CODE (TREE_TYPE (expr)))
188 {
189 case BOOLEAN_TYPE:
190 if (TREE_TYPE (expr) == boolean_type_node)
191 return expr;
6615c446 192 else if (COMPARISON_CLASS_P (expr))
6de9cd9a
DN
193 {
194 TREE_TYPE (expr) = boolean_type_node;
195 return expr;
196 }
197 else if (TREE_CODE (expr) == NOP_EXPR)
44855d8c
TS
198 return fold_build1 (NOP_EXPR,
199 boolean_type_node, TREE_OPERAND (expr, 0));
6de9cd9a 200 else
44855d8c 201 return fold_build1 (NOP_EXPR, boolean_type_node, expr);
6de9cd9a
DN
202
203 case INTEGER_TYPE:
204 if (TREE_CODE (expr) == INTEGER_CST)
205 return integer_zerop (expr) ? boolean_false_node : boolean_true_node;
206 else
44855d8c
TS
207 return fold_build2 (NE_EXPR, boolean_type_node, expr,
208 build_int_cst (TREE_TYPE (expr), 0));
6de9cd9a
DN
209
210 default:
211 internal_error ("Unexpected type in truthvalue_conversion");
212 }
213}
214
b251af97 215
6de9cd9a
DN
216static void
217gfc_create_decls (void)
218{
219 /* GCC builtins. */
220 gfc_init_builtin_functions ();
221
222 /* Runtime/IO library functions. */
223 gfc_build_builtin_function_decls ();
224
225 gfc_init_constants ();
226}
227
b251af97 228
6de9cd9a
DN
229static void
230gfc_be_parse_file (int set_yydebug ATTRIBUTE_UNUSED)
231{
232 int errors;
233 int warnings;
234
235 gfc_create_decls ();
236 gfc_parse_file ();
237 gfc_generate_constructors ();
238
239 cgraph_finalize_compilation_unit ();
240 cgraph_optimize ();
241
df2fba9e 242 /* Tell the frontend about any errors. */
6de9cd9a
DN
243 gfc_get_errors (&warnings, &errors);
244 errorcount += errors;
245 warningcount += warnings;
30e257e5
PB
246
247 clear_binding_stack ();
6de9cd9a 248}
b251af97
SK
249
250
6de9cd9a
DN
251/* Initialize everything. */
252
253static bool
254gfc_init (void)
255{
670637ee
DF
256 if (!gfc_cpp_enabled ())
257 {
258 linemap_add (line_table, LC_ENTER, false, gfc_source_file, 1);
259 linemap_add (line_table, LC_RENAME, false, "<built-in>", 0);
260 }
261 else
262 gfc_cpp_init_0 ();
c8cc8542 263
6de9cd9a
DN
264 gfc_init_decl_processing ();
265 gfc_static_ctors = NULL_TREE;
266
670637ee
DF
267 if (gfc_cpp_enabled ())
268 gfc_cpp_init ();
269
6de9cd9a
DN
270 gfc_init_1 ();
271
e0bcf78c
TS
272 if (gfc_new_file () != SUCCESS)
273 fatal_error ("can't open input file: %s", gfc_source_file);
670637ee 274
6de9cd9a
DN
275 return true;
276}
277
278
279static void
280gfc_finish (void)
281{
670637ee 282 gfc_cpp_done ();
6de9cd9a
DN
283 gfc_done_1 ();
284 gfc_release_include_path ();
285 return;
286}
287
288static void
289gfc_print_identifier (FILE * file ATTRIBUTE_UNUSED,
290 tree node ATTRIBUTE_UNUSED,
291 int indent ATTRIBUTE_UNUSED)
292{
293 return;
294}
b251af97 295
6de9cd9a
DN
296
297/* These functions and variables deal with binding contours. We only
298 need these functions for the list of PARM_DECLs, but we leave the
299 functions more general; these are a simplified version of the
300 functions from GNAT. */
301
b251af97
SK
302/* For each binding contour we allocate a binding_level structure which
303 records the entities defined or declared in that contour. Contours
304 include:
6de9cd9a
DN
305
306 the global one
307 one for each subprogram definition
308 one for each compound statement (declare block)
309
310 Binding contours are used to create GCC tree BLOCK nodes. */
311
312struct binding_level
313GTY(())
314{
315 /* A chain of ..._DECL nodes for all variables, constants, functions,
316 parameters and type declarations. These ..._DECL nodes are chained
317 through the TREE_CHAIN field. Note that these ..._DECL nodes are stored
318 in the reverse of the order supplied to be compatible with the
319 back-end. */
320 tree names;
321 /* For each level (except the global one), a chain of BLOCK nodes for all
322 the levels that were entered and exited one level down from this one. */
323 tree blocks;
f7b529fa 324 /* The binding level containing this one (the enclosing binding level). */
6de9cd9a
DN
325 struct binding_level *level_chain;
326};
327
328/* The binding level currently in effect. */
329static GTY(()) struct binding_level *current_binding_level = NULL;
330
331/* The outermost binding level. This binding level is created when the
332 compiler is started and it will exist through the entire compilation. */
333static GTY(()) struct binding_level *global_binding_level;
334
335/* Binding level structures are initialized by copying this one. */
9dcf6e73 336static struct binding_level clear_binding_level = { NULL, NULL, NULL };
b251af97
SK
337
338
13795658 339/* Return nonzero if we are currently in the global binding level. */
6de9cd9a
DN
340
341int
342global_bindings_p (void)
343{
344 return current_binding_level == global_binding_level ? -1 : 0;
345}
346
347tree
348getdecls (void)
349{
350 return current_binding_level->names;
351}
352
353/* Enter a new binding level. The input parameter is ignored, but has to be
354 specified for back-end compatibility. */
355
356void
357pushlevel (int ignore ATTRIBUTE_UNUSED)
358{
359 struct binding_level *newlevel
360 = (struct binding_level *) ggc_alloc (sizeof (struct binding_level));
361
362 *newlevel = clear_binding_level;
363
364 /* Add this level to the front of the chain (stack) of levels that are
365 active. */
366 newlevel->level_chain = current_binding_level;
367 current_binding_level = newlevel;
368}
369
370/* Exit a binding level.
371 Pop the level off, and restore the state of the identifier-decl mappings
372 that were in effect when this level was entered.
373
374 If KEEP is nonzero, this level had explicit declarations, so
375 and create a "block" (a BLOCK node) for the level
376 to record its declarations and subblocks for symbol table output.
377
378 If FUNCTIONBODY is nonzero, this level is the body of a function,
379 so create a block as if KEEP were set and also clear out all
380 label names.
381
382 If REVERSE is nonzero, reverse the order of decls before putting
383 them into the BLOCK. */
384
385tree
386poplevel (int keep, int reverse, int functionbody)
387{
1f2959f0 388 /* Points to a BLOCK tree node. This is the BLOCK node constructed for the
6de9cd9a
DN
389 binding level that we are about to exit and which is returned by this
390 routine. */
391 tree block_node = NULL_TREE;
392 tree decl_chain;
393 tree subblock_chain = current_binding_level->blocks;
394 tree subblock_node;
6de9cd9a
DN
395
396 /* Reverse the list of XXXX_DECL nodes if desired. Note that the ..._DECL
397 nodes chained through the `names' field of current_binding_level are in
1f2959f0 398 reverse order except for PARM_DECL node, which are explicitly stored in
6de9cd9a
DN
399 the right order. */
400 decl_chain = (reverse) ? nreverse (current_binding_level->names)
b251af97 401 : current_binding_level->names;
6de9cd9a 402
6de9cd9a
DN
403 /* If there were any declarations in the current binding level, or if this
404 binding level is a function body, or if there are any nested blocks then
405 create a BLOCK node to record them for the life of this function. */
9dcf6e73 406 if (keep || functionbody)
22e8617b 407 block_node = build_block (keep ? decl_chain : 0, subblock_chain, 0, 0);
6de9cd9a
DN
408
409 /* Record the BLOCK node just built as the subblock its enclosing scope. */
410 for (subblock_node = subblock_chain; subblock_node;
411 subblock_node = TREE_CHAIN (subblock_node))
412 BLOCK_SUPERCONTEXT (subblock_node) = block_node;
413
414 /* Clear out the meanings of the local variables of this level. */
415
416 for (subblock_node = decl_chain; subblock_node;
417 subblock_node = TREE_CHAIN (subblock_node))
418 if (DECL_NAME (subblock_node) != 0)
419 /* If the identifier was used or addressed via a local extern decl,
f7b529fa 420 don't forget that fact. */
6de9cd9a
DN
421 if (DECL_EXTERNAL (subblock_node))
422 {
423 if (TREE_USED (subblock_node))
424 TREE_USED (DECL_NAME (subblock_node)) = 1;
425 if (TREE_ADDRESSABLE (subblock_node))
426 TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (subblock_node)) = 1;
427 }
428
429 /* Pop the current level. */
430 current_binding_level = current_binding_level->level_chain;
431
432 if (functionbody)
433 {
434 /* This is the top level block of a function. The ..._DECL chain stored
435 in BLOCK_VARS are the function's parameters (PARM_DECL nodes). Don't
436 leave them in the BLOCK because they are found in the FUNCTION_DECL
437 instead. */
438 DECL_INITIAL (current_function_decl) = block_node;
439 BLOCK_VARS (block_node) = 0;
440 }
77092cda
JJ
441 else if (current_binding_level == global_binding_level)
442 /* When using gfc_start_block/gfc_finish_block from middle-end hooks,
df2fba9e 443 don't add newly created BLOCKs as subblocks of global_binding_level. */
77092cda 444 ;
6de9cd9a
DN
445 else if (block_node)
446 {
9dcf6e73
JM
447 current_binding_level->blocks
448 = chainon (current_binding_level->blocks, block_node);
6de9cd9a
DN
449 }
450
451 /* If we did not make a block for the level just exited, any blocks made for
452 inner levels (since they cannot be recorded as subblocks in that level)
453 must be carried forward so they will later become subblocks of something
454 else. */
455 else if (subblock_chain)
456 current_binding_level->blocks
457 = chainon (current_binding_level->blocks, subblock_chain);
458 if (block_node)
459 TREE_USED (block_node) = 1;
460
461 return block_node;
462}
b251af97
SK
463
464
6de9cd9a 465/* Records a ..._DECL node DECL as belonging to the current lexical scope.
f7b529fa 466 Returns the ..._DECL node. */
6de9cd9a
DN
467
468tree
469pushdecl (tree decl)
470{
471 /* External objects aren't nested, other objects may be. */
472 if ((DECL_EXTERNAL (decl)) || (decl == current_function_decl))
473 DECL_CONTEXT (decl) = 0;
474 else
475 DECL_CONTEXT (decl) = current_function_decl;
476
477 /* Put the declaration on the list. The list of declarations is in reverse
478 order. The list will be reversed later if necessary. This needs to be
479 this way for compatibility with the back-end. */
480
481 TREE_CHAIN (decl) = current_binding_level->names;
482 current_binding_level->names = decl;
483
69de3b83 484 /* For the declaration of a type, set its name if it is not already set. */
6de9cd9a
DN
485
486 if (TREE_CODE (decl) == TYPE_DECL && TYPE_NAME (TREE_TYPE (decl)) == 0)
487 {
488 if (DECL_SOURCE_LINE (decl) == 0)
489 TYPE_NAME (TREE_TYPE (decl)) = decl;
490 else
491 TYPE_NAME (TREE_TYPE (decl)) = DECL_NAME (decl);
492 }
493
494 return decl;
495}
496
497
498/* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL. */
499
500tree
501pushdecl_top_level (tree x)
502{
503 tree t;
504 struct binding_level *b = current_binding_level;
505
506 current_binding_level = global_binding_level;
507 t = pushdecl (x);
508 current_binding_level = b;
509 return t;
510}
511
512
9dcf6e73
JM
513/* Clear the binding stack. */
514static void
30e257e5 515clear_binding_stack (void)
9dcf6e73
JM
516{
517 while (!global_bindings_p ())
518 poplevel (0, 0, 0);
519}
520
521
6de9cd9a
DN
522#ifndef CHAR_TYPE_SIZE
523#define CHAR_TYPE_SIZE BITS_PER_UNIT
524#endif
525
526#ifndef INT_TYPE_SIZE
527#define INT_TYPE_SIZE BITS_PER_WORD
528#endif
529
530#undef SIZE_TYPE
531#define SIZE_TYPE "long unsigned int"
532
533/* Create tree nodes for the basic scalar types of Fortran 95,
534 and some nodes representing standard constants (0, 1, (void *) 0).
535 Initialize the global binding level.
536 Make definitions for built-in primitive functions. */
537static void
538gfc_init_decl_processing (void)
539{
540 current_function_decl = NULL;
6de9cd9a
DN
541 current_binding_level = NULL_BINDING_LEVEL;
542 free_binding_level = NULL_BINDING_LEVEL;
543
544 /* Make the binding_level structure for global names. We move all
545 variables that are in a COMMON block to this binding level. */
546 pushlevel (0);
547 global_binding_level = current_binding_level;
548
549 /* Build common tree nodes. char_type_node is unsigned because we
550 only use it for actual characters, not for INTEGER(1). Also, we
f7b529fa 551 want double_type_node to actually have double precision. */
8c1d6d62 552 build_common_tree_nodes (false, false);
df2fba9e 553 /* x86_64 mingw32 has a sizetype of "unsigned long long", most other hosts
fcdb5d68
KT
554 have a sizetype of "unsigned long". Therefore choose the correct size
555 in mostly target independent way. */
6384205f 556 if (TYPE_MODE (long_unsigned_type_node) == ptr_mode)
fcdb5d68 557 set_sizetype (long_unsigned_type_node);
6384205f 558 else if (TYPE_MODE (long_long_unsigned_type_node) == ptr_mode)
fcdb5d68
KT
559 set_sizetype (long_long_unsigned_type_node);
560 else
561 set_sizetype (long_unsigned_type_node);
6de9cd9a 562 build_common_tree_nodes_2 (0);
24cc1193 563 void_list_node = build_tree_list (NULL_TREE, void_type_node);
6de9cd9a
DN
564
565 /* Set up F95 type nodes. */
5e8e542f 566 gfc_init_kinds ();
6de9cd9a
DN
567 gfc_init_types ();
568}
569
b251af97 570
6de9cd9a
DN
571/* Mark EXP saying that we need to be able to take the
572 address of it; it should not be allocated in a register.
573 In Fortran 95 this is only the case for variables with
574 the TARGET attribute, but we implement it here for a
575 likely future Cray pointer extension.
576 Value is 1 if successful. */
577/* TODO: Check/fix mark_addressable. */
b251af97 578
6de9cd9a
DN
579bool
580gfc_mark_addressable (tree exp)
581{
582 register tree x = exp;
583 while (1)
584 switch (TREE_CODE (x))
585 {
586 case COMPONENT_REF:
587 case ADDR_EXPR:
588 case ARRAY_REF:
589 case REALPART_EXPR:
590 case IMAGPART_EXPR:
591 x = TREE_OPERAND (x, 0);
592 break;
593
594 case CONSTRUCTOR:
595 TREE_ADDRESSABLE (x) = 1;
596 return true;
597
598 case VAR_DECL:
599 case CONST_DECL:
600 case PARM_DECL:
601 case RESULT_DECL:
602 if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x) && DECL_NONLOCAL (x))
603 {
604 if (TREE_PUBLIC (x))
605 {
b251af97
SK
606 error ("global register variable %qs used in nested function",
607 IDENTIFIER_POINTER (DECL_NAME (x)));
6de9cd9a
DN
608 return false;
609 }
509c9d60 610 pedwarn (input_location, 0, "register variable %qs used in nested function",
71205d17 611 IDENTIFIER_POINTER (DECL_NAME (x)));
6de9cd9a
DN
612 }
613 else if (DECL_REGISTER (x) && !TREE_ADDRESSABLE (x))
614 {
615 if (TREE_PUBLIC (x))
616 {
597cdf4f 617 error ("address of global register variable %qs requested",
6de9cd9a
DN
618 IDENTIFIER_POINTER (DECL_NAME (x)));
619 return true;
620 }
621
622#if 0
623 /* If we are making this addressable due to its having
624 volatile components, give a different error message. Also
625 handle the case of an unnamed parameter by not trying
626 to give the name. */
627
628 else if (C_TYPE_FIELDS_VOLATILE (TREE_TYPE (x)))
629 {
630 error ("cannot put object with volatile field into register");
631 return false;
632 }
633#endif
634
509c9d60 635 pedwarn (input_location, 0, "address of register variable %qs requested",
6de9cd9a
DN
636 IDENTIFIER_POINTER (DECL_NAME (x)));
637 }
6de9cd9a
DN
638
639 /* drops in */
640 case FUNCTION_DECL:
641 TREE_ADDRESSABLE (x) = 1;
642
643 default:
644 return true;
645 }
646}
647
b251af97 648
7b9c708f
JJ
649/* Return the typed-based alias set for T, which may be an expression
650 or a type. Return -1 if we don't do anything special. */
651
4862826d 652static alias_set_type
7b9c708f
JJ
653gfc_get_alias_set (tree t)
654{
655 tree u;
656
657 /* Permit type-punning when accessing an EQUIVALENCEd variable or
658 mixed type entry master's return value. */
659 for (u = t; handled_component_p (u); u = TREE_OPERAND (u, 0))
660 if (TREE_CODE (u) == COMPONENT_REF
661 && TREE_CODE (TREE_TYPE (TREE_OPERAND (u, 0))) == UNION_TYPE)
662 return 0;
663
664 return -1;
665}
666
b251af97 667
6de9cd9a
DN
668/* press the big red button - garbage (ggc) collection is on */
669
670int ggc_p = 1;
671
1f2959f0 672/* Builtin function initialization. */
6de9cd9a 673
6de9cd9a 674tree
c79efc4d 675gfc_builtin_function (tree decl)
6de9cd9a 676{
0e6df31e 677 make_decl_rtl (decl);
6de9cd9a 678 pushdecl (decl);
6de9cd9a
DN
679 return decl;
680}
681
682
683static void
b251af97 684gfc_define_builtin (const char *name,
6de9cd9a
DN
685 tree type,
686 int code,
b251af97 687 const char *library_name,
6de9cd9a
DN
688 bool const_p)
689{
690 tree decl;
691
c79efc4d
RÁE
692 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
693 library_name, NULL_TREE);
6de9cd9a
DN
694 if (const_p)
695 TREE_READONLY (decl) = 1;
696
697 built_in_decls[code] = decl;
698 implicit_built_in_decls[code] = decl;
699}
700
701
e8525382 702#define DO_DEFINE_MATH_BUILTIN(code, name, argtype, tbase) \
644cb69f
FXC
703 gfc_define_builtin ("__builtin_" name "l", tbase##longdouble[argtype], \
704 BUILT_IN_ ## code ## L, name "l", true); \
e8525382 705 gfc_define_builtin ("__builtin_" name, tbase##double[argtype], \
6de9cd9a 706 BUILT_IN_ ## code, name, true); \
e8525382 707 gfc_define_builtin ("__builtin_" name "f", tbase##float[argtype], \
6de9cd9a
DN
708 BUILT_IN_ ## code ## F, name "f", true);
709
e8525382
SK
710#define DEFINE_MATH_BUILTIN(code, name, argtype) \
711 DO_DEFINE_MATH_BUILTIN (code, name, argtype, mfunc_)
712
e8525382 713#define DEFINE_MATH_BUILTIN_C(code, name, argtype) \
644cb69f
FXC
714 DO_DEFINE_MATH_BUILTIN (code, name, argtype, mfunc_) \
715 DO_DEFINE_MATH_BUILTIN (C##code, "c" name, argtype, mfunc_c)
e8525382
SK
716
717
718/* Create function types for builtin functions. */
719
720static void
b251af97 721build_builtin_fntypes (tree *fntype, tree type)
e8525382
SK
722{
723 tree tmp;
724
725 /* type (*) (type) */
fb2d50f5 726 tmp = tree_cons (NULL_TREE, type, void_list_node);
e8525382
SK
727 fntype[0] = build_function_type (type, tmp);
728 /* type (*) (type, type) */
fb2d50f5 729 tmp = tree_cons (NULL_TREE, type, tmp);
e8525382
SK
730 fntype[1] = build_function_type (type, tmp);
731 /* type (*) (int, type) */
732 tmp = tree_cons (NULL_TREE, integer_type_node, void_list_node);
733 tmp = tree_cons (NULL_TREE, type, tmp);
734 fntype[2] = build_function_type (type, tmp);
b5a4419c
FXC
735 /* type (*) (void) */
736 fntype[3] = build_function_type (type, void_list_node);
737 /* type (*) (type, &int) */
738 tmp = tree_cons (NULL_TREE, type, void_list_node);
739 tmp = tree_cons (NULL_TREE, build_pointer_type (integer_type_node), tmp);
740 fntype[4] = build_function_type (type, tmp);
741 /* type (*) (type, int) */
742 tmp = tree_cons (NULL_TREE, type, void_list_node);
743 tmp = tree_cons (NULL_TREE, integer_type_node, tmp);
744 fntype[5] = build_function_type (type, tmp);
e8525382
SK
745}
746
b251af97 747
6c7a4dfd
JJ
748static tree
749builtin_type_for_size (int size, bool unsignedp)
750{
751 tree type = lang_hooks.types.type_for_size (size, unsignedp);
752 return type ? type : error_mark_node;
753}
e8525382 754
1f2959f0 755/* Initialization of builtin function nodes. */
e8525382 756
6de9cd9a
DN
757static void
758gfc_init_builtin_functions (void)
759{
6c7a4dfd
JJ
760 enum builtin_type
761 {
762#define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
763#define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
764#define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
765#define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
766#define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
767#define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
768#define DEF_FUNCTION_TYPE_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) NAME,
769#define DEF_FUNCTION_TYPE_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6) NAME,
770#define DEF_FUNCTION_TYPE_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7) NAME,
771#define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
772#define DEF_POINTER_TYPE(NAME, TYPE) NAME,
773#include "types.def"
774#undef DEF_PRIMITIVE_TYPE
775#undef DEF_FUNCTION_TYPE_0
776#undef DEF_FUNCTION_TYPE_1
777#undef DEF_FUNCTION_TYPE_2
778#undef DEF_FUNCTION_TYPE_3
779#undef DEF_FUNCTION_TYPE_4
780#undef DEF_FUNCTION_TYPE_5
781#undef DEF_FUNCTION_TYPE_6
782#undef DEF_FUNCTION_TYPE_7
783#undef DEF_FUNCTION_TYPE_VAR_0
784#undef DEF_POINTER_TYPE
785 BT_LAST
786 };
787 typedef enum builtin_type builtin_type;
788 enum
789 {
790 /* So far we need just these 2 attribute types. */
791 ATTR_NOTHROW_LIST,
792 ATTR_CONST_NOTHROW_LIST
793 };
794
b5a4419c
FXC
795 tree mfunc_float[6];
796 tree mfunc_double[6];
797 tree mfunc_longdouble[6];
798 tree mfunc_cfloat[6];
799 tree mfunc_cdouble[6];
800 tree mfunc_clongdouble[6];
3a53e165
RG
801 tree func_cfloat_float, func_float_cfloat;
802 tree func_cdouble_double, func_double_cdouble;
803 tree func_clongdouble_longdouble, func_longdouble_clongdouble;
804 tree func_float_floatp_floatp;
805 tree func_double_doublep_doublep;
806 tree func_longdouble_longdoublep_longdoublep;
807 tree ftype, ptype;
94f548c2 808 tree tmp, type;
6c7a4dfd 809 tree builtin_types[(int) BT_LAST + 1];
6de9cd9a 810
e8525382
SK
811 build_builtin_fntypes (mfunc_float, float_type_node);
812 build_builtin_fntypes (mfunc_double, double_type_node);
644cb69f 813 build_builtin_fntypes (mfunc_longdouble, long_double_type_node);
e8525382
SK
814 build_builtin_fntypes (mfunc_cfloat, complex_float_type_node);
815 build_builtin_fntypes (mfunc_cdouble, complex_double_type_node);
644cb69f 816 build_builtin_fntypes (mfunc_clongdouble, complex_long_double_type_node);
e8525382 817
ead6d15f
AP
818 tmp = tree_cons (NULL_TREE, complex_float_type_node, void_list_node);
819 func_cfloat_float = build_function_type (float_type_node, tmp);
6de9cd9a 820
3a53e165
RG
821 tmp = tree_cons (NULL_TREE, float_type_node, void_list_node);
822 func_float_cfloat = build_function_type (complex_float_type_node, tmp);
823
ead6d15f
AP
824 tmp = tree_cons (NULL_TREE, complex_double_type_node, void_list_node);
825 func_cdouble_double = build_function_type (double_type_node, tmp);
6de9cd9a 826
3a53e165
RG
827 tmp = tree_cons (NULL_TREE, double_type_node, void_list_node);
828 func_double_cdouble = build_function_type (complex_double_type_node, tmp);
829
644cb69f
FXC
830 tmp = tree_cons (NULL_TREE, complex_long_double_type_node, void_list_node);
831 func_clongdouble_longdouble =
832 build_function_type (long_double_type_node, tmp);
833
3a53e165
RG
834 tmp = tree_cons (NULL_TREE, long_double_type_node, void_list_node);
835 func_longdouble_clongdouble =
836 build_function_type (complex_long_double_type_node, tmp);
837
838 ptype = build_pointer_type (float_type_node);
839 tmp = tree_cons (NULL_TREE, float_type_node,
840 tree_cons (NULL_TREE, ptype,
fc207c37 841 tree_cons (NULL_TREE, ptype, void_list_node)));
3a53e165
RG
842 func_float_floatp_floatp =
843 build_function_type (void_type_node, tmp);
844
845 ptype = build_pointer_type (double_type_node);
846 tmp = tree_cons (NULL_TREE, double_type_node,
847 tree_cons (NULL_TREE, ptype,
fc207c37 848 tree_cons (NULL_TREE, ptype, void_list_node)));
3a53e165
RG
849 func_double_doublep_doublep =
850 build_function_type (void_type_node, tmp);
851
852 ptype = build_pointer_type (long_double_type_node);
853 tmp = tree_cons (NULL_TREE, long_double_type_node,
854 tree_cons (NULL_TREE, ptype,
fc207c37 855 tree_cons (NULL_TREE, ptype, void_list_node)));
3a53e165
RG
856 func_longdouble_longdoublep_longdoublep =
857 build_function_type (void_type_node, tmp);
858
6de9cd9a
DN
859#include "mathbuiltins.def"
860
e7dc5b4f 861 /* We define these separately as the fortran versions have different
6de9cd9a 862 semantics (they return an integer type) */
644cb69f
FXC
863 gfc_define_builtin ("__builtin_roundl", mfunc_longdouble[0],
864 BUILT_IN_ROUNDL, "roundl", true);
6de9cd9a
DN
865 gfc_define_builtin ("__builtin_round", mfunc_double[0],
866 BUILT_IN_ROUND, "round", true);
867 gfc_define_builtin ("__builtin_roundf", mfunc_float[0],
868 BUILT_IN_ROUNDF, "roundf", true);
644cb69f
FXC
869
870 gfc_define_builtin ("__builtin_truncl", mfunc_longdouble[0],
871 BUILT_IN_TRUNCL, "truncl", true);
e743d142
TS
872 gfc_define_builtin ("__builtin_trunc", mfunc_double[0],
873 BUILT_IN_TRUNC, "trunc", true);
874 gfc_define_builtin ("__builtin_truncf", mfunc_float[0],
875 BUILT_IN_TRUNCF, "truncf", true);
876
644cb69f
FXC
877 gfc_define_builtin ("__builtin_cabsl", func_clongdouble_longdouble,
878 BUILT_IN_CABSL, "cabsl", true);
ead6d15f
AP
879 gfc_define_builtin ("__builtin_cabs", func_cdouble_double,
880 BUILT_IN_CABS, "cabs", true);
881 gfc_define_builtin ("__builtin_cabsf", func_cfloat_float,
882 BUILT_IN_CABSF, "cabsf", true);
c6a912da 883
644cb69f
FXC
884 gfc_define_builtin ("__builtin_copysignl", mfunc_longdouble[1],
885 BUILT_IN_COPYSIGNL, "copysignl", true);
ead6d15f
AP
886 gfc_define_builtin ("__builtin_copysign", mfunc_double[1],
887 BUILT_IN_COPYSIGN, "copysign", true);
888 gfc_define_builtin ("__builtin_copysignf", mfunc_float[1],
889 BUILT_IN_COPYSIGNF, "copysignf", true);
58b6e047 890
b5a4419c
FXC
891 gfc_define_builtin ("__builtin_nextafterl", mfunc_longdouble[1],
892 BUILT_IN_NEXTAFTERL, "nextafterl", true);
893 gfc_define_builtin ("__builtin_nextafter", mfunc_double[1],
894 BUILT_IN_NEXTAFTER, "nextafter", true);
895 gfc_define_builtin ("__builtin_nextafterf", mfunc_float[1],
896 BUILT_IN_NEXTAFTERF, "nextafterf", true);
897
898 gfc_define_builtin ("__builtin_frexpl", mfunc_longdouble[4],
899 BUILT_IN_FREXPL, "frexpl", false);
900 gfc_define_builtin ("__builtin_frexp", mfunc_double[4],
901 BUILT_IN_FREXP, "frexp", false);
902 gfc_define_builtin ("__builtin_frexpf", mfunc_float[4],
903 BUILT_IN_FREXPF, "frexpf", false);
904
905 gfc_define_builtin ("__builtin_fabsl", mfunc_longdouble[0],
906 BUILT_IN_FABSL, "fabsl", true);
907 gfc_define_builtin ("__builtin_fabs", mfunc_double[0],
908 BUILT_IN_FABS, "fabs", true);
909 gfc_define_builtin ("__builtin_fabsf", mfunc_float[0],
910 BUILT_IN_FABSF, "fabsf", true);
911
912 gfc_define_builtin ("__builtin_scalbnl", mfunc_longdouble[5],
913 BUILT_IN_SCALBNL, "scalbnl", true);
914 gfc_define_builtin ("__builtin_scalbn", mfunc_double[5],
915 BUILT_IN_SCALBN, "scalbn", true);
916 gfc_define_builtin ("__builtin_scalbnf", mfunc_float[5],
917 BUILT_IN_SCALBNF, "scalbnf", true);
918
58b6e047
PT
919 gfc_define_builtin ("__builtin_fmodl", mfunc_longdouble[1],
920 BUILT_IN_FMODL, "fmodl", true);
921 gfc_define_builtin ("__builtin_fmod", mfunc_double[1],
922 BUILT_IN_FMOD, "fmod", true);
923 gfc_define_builtin ("__builtin_fmodf", mfunc_float[1],
924 BUILT_IN_FMODF, "fmodf", true);
6de9cd9a 925
b5a4419c
FXC
926 gfc_define_builtin ("__builtin_infl", mfunc_longdouble[3],
927 BUILT_IN_INFL, "__builtin_infl", true);
928 gfc_define_builtin ("__builtin_inf", mfunc_double[3],
929 BUILT_IN_INF, "__builtin_inf", true);
930 gfc_define_builtin ("__builtin_inff", mfunc_float[3],
931 BUILT_IN_INFF, "__builtin_inff", true);
932
94f548c2
FXC
933 /* lround{f,,l} and llround{f,,l} */
934 type = tree_cons (NULL_TREE, float_type_node, void_list_node);
935 tmp = build_function_type (long_integer_type_node, type);
936 gfc_define_builtin ("__builtin_lroundf", tmp, BUILT_IN_LROUNDF,
937 "lroundf", true);
938 tmp = build_function_type (long_long_integer_type_node, type);
939 gfc_define_builtin ("__builtin_llroundf", tmp, BUILT_IN_LLROUNDF,
940 "llroundf", true);
941
942 type = tree_cons (NULL_TREE, double_type_node, void_list_node);
943 tmp = build_function_type (long_integer_type_node, type);
944 gfc_define_builtin ("__builtin_lround", tmp, BUILT_IN_LROUND,
945 "lround", true);
946 tmp = build_function_type (long_long_integer_type_node, type);
947 gfc_define_builtin ("__builtin_llround", tmp, BUILT_IN_LLROUND,
948 "llround", true);
949
950 type = tree_cons (NULL_TREE, long_double_type_node, void_list_node);
951 tmp = build_function_type (long_integer_type_node, type);
952 gfc_define_builtin ("__builtin_lroundl", tmp, BUILT_IN_LROUNDL,
953 "lroundl", true);
954 tmp = build_function_type (long_long_integer_type_node, type);
955 gfc_define_builtin ("__builtin_llroundl", tmp, BUILT_IN_LLROUNDL,
956 "llroundl", true);
957
5b200ac2 958 /* These are used to implement the ** operator. */
644cb69f
FXC
959 gfc_define_builtin ("__builtin_powl", mfunc_longdouble[1],
960 BUILT_IN_POWL, "powl", true);
c7d78bbe 961 gfc_define_builtin ("__builtin_pow", mfunc_double[1],
5b200ac2 962 BUILT_IN_POW, "pow", true);
c7d78bbe 963 gfc_define_builtin ("__builtin_powf", mfunc_float[1],
5b200ac2 964 BUILT_IN_POWF, "powf", true);
fb220235
FXC
965 gfc_define_builtin ("__builtin_cpowl", mfunc_clongdouble[1],
966 BUILT_IN_CPOWL, "cpowl", true);
967 gfc_define_builtin ("__builtin_cpow", mfunc_cdouble[1],
968 BUILT_IN_CPOW, "cpow", true);
969 gfc_define_builtin ("__builtin_cpowf", mfunc_cfloat[1],
970 BUILT_IN_CPOWF, "cpowf", true);
31c97dfe
JB
971 gfc_define_builtin ("__builtin_powil", mfunc_longdouble[2],
972 BUILT_IN_POWIL, "powil", true);
973 gfc_define_builtin ("__builtin_powi", mfunc_double[2],
974 BUILT_IN_POWI, "powi", true);
975 gfc_define_builtin ("__builtin_powif", mfunc_float[2],
976 BUILT_IN_POWIF, "powif", true);
977
5b200ac2 978
3a53e165
RG
979 if (TARGET_C99_FUNCTIONS)
980 {
981 gfc_define_builtin ("__builtin_cbrtl", mfunc_longdouble[0],
982 BUILT_IN_CBRTL, "cbrtl", true);
983 gfc_define_builtin ("__builtin_cbrt", mfunc_double[0],
984 BUILT_IN_CBRT, "cbrt", true);
985 gfc_define_builtin ("__builtin_cbrtf", mfunc_float[0],
986 BUILT_IN_CBRTF, "cbrtf", true);
987 gfc_define_builtin ("__builtin_cexpil", func_longdouble_clongdouble,
988 BUILT_IN_CEXPIL, "cexpil", true);
989 gfc_define_builtin ("__builtin_cexpi", func_double_cdouble,
990 BUILT_IN_CEXPI, "cexpi", true);
991 gfc_define_builtin ("__builtin_cexpif", func_float_cfloat,
992 BUILT_IN_CEXPIF, "cexpif", true);
993 }
994
995 if (TARGET_HAS_SINCOS)
996 {
997 gfc_define_builtin ("__builtin_sincosl",
998 func_longdouble_longdoublep_longdoublep,
999 BUILT_IN_SINCOSL, "sincosl", false);
1000 gfc_define_builtin ("__builtin_sincos", func_double_doublep_doublep,
1001 BUILT_IN_SINCOS, "sincos", false);
1002 gfc_define_builtin ("__builtin_sincosf", func_float_floatp_floatp,
1003 BUILT_IN_SINCOSF, "sincosf", false);
1004 }
1005
6de9cd9a
DN
1006 /* Other builtin functions we use. */
1007
c6a912da
RH
1008 tmp = tree_cons (NULL_TREE, long_integer_type_node, void_list_node);
1009 tmp = tree_cons (NULL_TREE, long_integer_type_node, tmp);
1010 ftype = build_function_type (long_integer_type_node, tmp);
1011 gfc_define_builtin ("__builtin_expect", ftype, BUILT_IN_EXPECT,
1012 "__builtin_expect", true);
ef9312c1 1013
1529b8d9
FXC
1014 tmp = tree_cons (NULL_TREE, pvoid_type_node, void_list_node);
1015 ftype = build_function_type (void_type_node, tmp);
1016 gfc_define_builtin ("__builtin_free", ftype, BUILT_IN_FREE,
1017 "free", false);
1018
1019 tmp = tree_cons (NULL_TREE, size_type_node, void_list_node);
1020 ftype = build_function_type (pvoid_type_node, tmp);
1021 gfc_define_builtin ("__builtin_malloc", ftype, BUILT_IN_MALLOC,
1022 "malloc", false);
1023 DECL_IS_MALLOC (built_in_decls[BUILT_IN_MALLOC]) = 1;
1024
4376b7cf
FXC
1025 tmp = tree_cons (NULL_TREE, pvoid_type_node, void_list_node);
1026 tmp = tree_cons (NULL_TREE, size_type_node, tmp);
1027 ftype = build_function_type (pvoid_type_node, tmp);
1028 gfc_define_builtin ("__builtin_realloc", ftype, BUILT_IN_REALLOC,
1029 "realloc", false);
1030
5fcb93f1
FXC
1031 tmp = tree_cons (NULL_TREE, void_type_node, void_list_node);
1032 ftype = build_function_type (integer_type_node, tmp);
1033 gfc_define_builtin ("__builtin_isnan", ftype, BUILT_IN_ISNAN,
1034 "__builtin_isnan", true);
1035
6c7a4dfd
JJ
1036#define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
1037 builtin_types[(int) ENUM] = VALUE;
1038#define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
1039 builtin_types[(int) ENUM] \
1040 = build_function_type (builtin_types[(int) RETURN], \
1041 void_list_node);
1042#define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
1043 builtin_types[(int) ENUM] \
1044 = build_function_type (builtin_types[(int) RETURN], \
1045 tree_cons (NULL_TREE, \
1046 builtin_types[(int) ARG1], \
1047 void_list_node));
1048#define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
1049 builtin_types[(int) ENUM] \
1050 = build_function_type \
1051 (builtin_types[(int) RETURN], \
1052 tree_cons (NULL_TREE, \
1053 builtin_types[(int) ARG1], \
1054 tree_cons (NULL_TREE, \
1055 builtin_types[(int) ARG2], \
1056 void_list_node)));
1057#define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
1058 builtin_types[(int) ENUM] \
1059 = build_function_type \
1060 (builtin_types[(int) RETURN], \
1061 tree_cons (NULL_TREE, \
1062 builtin_types[(int) ARG1], \
1063 tree_cons (NULL_TREE, \
1064 builtin_types[(int) ARG2], \
1065 tree_cons (NULL_TREE, \
1066 builtin_types[(int) ARG3], \
1067 void_list_node))));
1068#define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
1069 builtin_types[(int) ENUM] \
1070 = build_function_type \
1071 (builtin_types[(int) RETURN], \
1072 tree_cons (NULL_TREE, \
1073 builtin_types[(int) ARG1], \
1074 tree_cons (NULL_TREE, \
1075 builtin_types[(int) ARG2], \
1076 tree_cons \
1077 (NULL_TREE, \
1078 builtin_types[(int) ARG3], \
1079 tree_cons (NULL_TREE, \
1080 builtin_types[(int) ARG4], \
1081 void_list_node)))));
1082#define DEF_FUNCTION_TYPE_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
1083 builtin_types[(int) ENUM] \
1084 = build_function_type \
1085 (builtin_types[(int) RETURN], \
1086 tree_cons (NULL_TREE, \
1087 builtin_types[(int) ARG1], \
1088 tree_cons (NULL_TREE, \
1089 builtin_types[(int) ARG2], \
1090 tree_cons \
1091 (NULL_TREE, \
1092 builtin_types[(int) ARG3], \
1093 tree_cons (NULL_TREE, \
1094 builtin_types[(int) ARG4], \
1095 tree_cons (NULL_TREE, \
1096 builtin_types[(int) ARG5],\
1097 void_list_node))))));
1098#define DEF_FUNCTION_TYPE_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1099 ARG6) \
1100 builtin_types[(int) ENUM] \
1101 = build_function_type \
1102 (builtin_types[(int) RETURN], \
1103 tree_cons (NULL_TREE, \
1104 builtin_types[(int) ARG1], \
1105 tree_cons (NULL_TREE, \
1106 builtin_types[(int) ARG2], \
1107 tree_cons \
1108 (NULL_TREE, \
1109 builtin_types[(int) ARG3], \
1110 tree_cons \
1111 (NULL_TREE, \
1112 builtin_types[(int) ARG4], \
1113 tree_cons (NULL_TREE, \
1114 builtin_types[(int) ARG5], \
1115 tree_cons (NULL_TREE, \
1116 builtin_types[(int) ARG6],\
1117 void_list_node)))))));
1118#define DEF_FUNCTION_TYPE_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1119 ARG6, ARG7) \
1120 builtin_types[(int) ENUM] \
1121 = build_function_type \
1122 (builtin_types[(int) RETURN], \
1123 tree_cons (NULL_TREE, \
1124 builtin_types[(int) ARG1], \
1125 tree_cons (NULL_TREE, \
1126 builtin_types[(int) ARG2], \
1127 tree_cons \
1128 (NULL_TREE, \
1129 builtin_types[(int) ARG3], \
1130 tree_cons \
1131 (NULL_TREE, \
1132 builtin_types[(int) ARG4], \
1133 tree_cons (NULL_TREE, \
1134 builtin_types[(int) ARG5], \
1135 tree_cons (NULL_TREE, \
1136 builtin_types[(int) ARG6],\
1137 tree_cons (NULL_TREE, \
1138 builtin_types[(int) ARG6], \
1139 void_list_node))))))));
1140#define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
1141 builtin_types[(int) ENUM] \
1142 = build_function_type (builtin_types[(int) RETURN], NULL_TREE);
1143#define DEF_POINTER_TYPE(ENUM, TYPE) \
1144 builtin_types[(int) ENUM] \
1145 = build_pointer_type (builtin_types[(int) TYPE]);
1146#include "types.def"
1147#undef DEF_PRIMITIVE_TYPE
1148#undef DEF_FUNCTION_TYPE_1
1149#undef DEF_FUNCTION_TYPE_2
1150#undef DEF_FUNCTION_TYPE_3
1151#undef DEF_FUNCTION_TYPE_4
1152#undef DEF_FUNCTION_TYPE_5
1153#undef DEF_FUNCTION_TYPE_6
1154#undef DEF_FUNCTION_TYPE_VAR_0
1155#undef DEF_POINTER_TYPE
1156 builtin_types[(int) BT_LAST] = NULL_TREE;
1157
1158 /* Initialize synchronization builtins. */
1159#undef DEF_SYNC_BUILTIN
1160#define DEF_SYNC_BUILTIN(code, name, type, attr) \
1161 gfc_define_builtin (name, builtin_types[type], code, name, \
1162 attr == ATTR_CONST_NOTHROW_LIST);
1163#include "../sync-builtins.def"
1164#undef DEF_SYNC_BUILTIN
1165
e0e8ce7a 1166 if (gfc_option.flag_openmp || flag_tree_parallelize_loops)
6c7a4dfd
JJ
1167 {
1168#undef DEF_GOMP_BUILTIN
1169#define DEF_GOMP_BUILTIN(code, name, type, attr) \
1170 gfc_define_builtin ("__builtin_" name, builtin_types[type], \
1171 code, name, attr == ATTR_CONST_NOTHROW_LIST);
1172#include "../omp-builtins.def"
1173#undef DEF_GOMP_BUILTIN
1174 }
1175
1176 gfc_define_builtin ("__builtin_trap", builtin_types[BT_FN_VOID],
1177 BUILT_IN_TRAP, NULL, false);
1178 TREE_THIS_VOLATILE (built_in_decls[BUILT_IN_TRAP]) = 1;
1179
8893239d
RH
1180 gfc_define_builtin ("__emutls_get_address",
1181 builtin_types[BT_FN_PTR_PTR], BUILT_IN_EMUTLS_GET_ADDRESS,
1182 "__emutls_get_address", true);
1183 gfc_define_builtin ("__emutls_register_common",
1184 builtin_types[BT_FN_VOID_PTR_WORD_WORD_PTR],
1185 BUILT_IN_EMUTLS_REGISTER_COMMON,
1186 "__emutls_register_common", false);
1187
c6a912da 1188 build_common_builtin_nodes ();
ef9312c1 1189 targetm.init_builtins ();
6de9cd9a
DN
1190}
1191
e8525382 1192#undef DEFINE_MATH_BUILTIN_C
6de9cd9a
DN
1193#undef DEFINE_MATH_BUILTIN
1194
a64f5186
JJ
1195static void
1196gfc_init_ts (void)
1197{
1198 tree_contains_struct[NAMESPACE_DECL][TS_DECL_NON_COMMON] = 1;
1199 tree_contains_struct[NAMESPACE_DECL][TS_DECL_WITH_VIS] = 1;
1200 tree_contains_struct[NAMESPACE_DECL][TS_DECL_WRTL] = 1;
1201 tree_contains_struct[NAMESPACE_DECL][TS_DECL_COMMON] = 1;
1202 tree_contains_struct[NAMESPACE_DECL][TS_DECL_MINIMAL] = 1;
1203}
1204
6de9cd9a
DN
1205#include "gt-fortran-f95-lang.h"
1206#include "gtype-fortran.h"