Always pass explicit location to fatal_error.
[official-gcc.git] / gcc / fortran / f95-lang.c
blob94f7479a22f0417c1a2c1b8dc2a6c260f08026f9
1 /* gfortran backend interface
2 Copyright (C) 2000-2015 Free Software Foundation, Inc.
3 Contributed by Paul Brook.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* f95-lang.c-- GCC backend interface stuff */
23 /* declare required prototypes: */
25 #include "config.h"
26 #include "system.h"
27 #include "ansidecl.h"
28 #include "system.h"
29 #include "coretypes.h"
30 #include "gfortran.h"
31 #include "hash-set.h"
32 #include "machmode.h"
33 #include "vec.h"
34 #include "double-int.h"
35 #include "input.h"
36 #include "alias.h"
37 #include "symtab.h"
38 #include "options.h"
39 #include "wide-int.h"
40 #include "inchash.h"
41 #include "tree.h"
42 #include "flags.h"
43 #include "langhooks.h"
44 #include "langhooks-def.h"
45 #include "timevar.h"
46 #include "tm.h"
47 #include "hard-reg-set.h"
48 #include "input.h"
49 #include "function.h"
50 #include "ggc.h"
51 #include "toplev.h"
52 #include "target.h"
53 #include "debug.h"
54 #include "diagnostic.h" /* For errorcount/warningcount */
55 #include "dumpfile.h"
56 #include "hash-map.h"
57 #include "is-a.h"
58 #include "plugin-api.h"
59 #include "ipa-ref.h"
60 #include "cgraph.h"
61 #include "cpp.h"
62 #include "trans.h"
63 #include "trans-types.h"
64 #include "trans-const.h"
66 /* Language-dependent contents of an identifier. */
68 struct GTY(())
69 lang_identifier {
70 struct tree_identifier common;
73 /* The resulting tree type. */
75 union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
76 chain_next ("CODE_CONTAINS_STRUCT (TREE_CODE (&%h.generic), TS_COMMON) ? ((union lang_tree_node *) TREE_CHAIN (&%h.generic)) : NULL")))
77 lang_tree_node {
78 union tree_node GTY((tag ("0"),
79 desc ("tree_node_structure (&%h)"))) generic;
80 struct lang_identifier GTY((tag ("1"))) identifier;
83 /* Save and restore the variables in this file and elsewhere
84 that keep track of the progress of compilation of the current function.
85 Used for nested functions. */
87 struct GTY(())
88 language_function {
89 /* struct gfc_language_function base; */
90 struct binding_level *binding_level;
93 static void gfc_init_decl_processing (void);
94 static void gfc_init_builtin_functions (void);
95 static bool global_bindings_p (void);
97 /* Each front end provides its own. */
98 static bool gfc_init (void);
99 static void gfc_finish (void);
100 static void gfc_write_global_declarations (void);
101 static void gfc_be_parse_file (void);
102 static alias_set_type gfc_get_alias_set (tree);
103 static void gfc_init_ts (void);
104 static tree gfc_builtin_function (tree);
106 /* Handle an "omp declare target" attribute; arguments as in
107 struct attribute_spec.handler. */
108 static tree
109 gfc_handle_omp_declare_target_attribute (tree *, tree, tree, int, bool *)
111 return NULL_TREE;
114 /* Table of valid Fortran attributes. */
115 static const struct attribute_spec gfc_attribute_table[] =
117 /* { name, min_len, max_len, decl_req, type_req, fn_type_req, handler,
118 affects_type_identity } */
119 { "omp declare target", 0, 0, true, false, false,
120 gfc_handle_omp_declare_target_attribute, false },
121 { NULL, 0, 0, false, false, false, NULL, false }
124 #undef LANG_HOOKS_NAME
125 #undef LANG_HOOKS_INIT
126 #undef LANG_HOOKS_FINISH
127 #undef LANG_HOOKS_WRITE_GLOBALS
128 #undef LANG_HOOKS_OPTION_LANG_MASK
129 #undef LANG_HOOKS_INIT_OPTIONS_STRUCT
130 #undef LANG_HOOKS_INIT_OPTIONS
131 #undef LANG_HOOKS_HANDLE_OPTION
132 #undef LANG_HOOKS_POST_OPTIONS
133 #undef LANG_HOOKS_PARSE_FILE
134 #undef LANG_HOOKS_MARK_ADDRESSABLE
135 #undef LANG_HOOKS_TYPE_FOR_MODE
136 #undef LANG_HOOKS_TYPE_FOR_SIZE
137 #undef LANG_HOOKS_GET_ALIAS_SET
138 #undef LANG_HOOKS_INIT_TS
139 #undef LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE
140 #undef LANG_HOOKS_OMP_PREDETERMINED_SHARING
141 #undef LANG_HOOKS_OMP_REPORT_DECL
142 #undef LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR
143 #undef LANG_HOOKS_OMP_CLAUSE_COPY_CTOR
144 #undef LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP
145 #undef LANG_HOOKS_OMP_CLAUSE_LINEAR_CTOR
146 #undef LANG_HOOKS_OMP_CLAUSE_DTOR
147 #undef LANG_HOOKS_OMP_FINISH_CLAUSE
148 #undef LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR
149 #undef LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE
150 #undef LANG_HOOKS_OMP_PRIVATE_OUTER_REF
151 #undef LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES
152 #undef LANG_HOOKS_BUILTIN_FUNCTION
153 #undef LANG_HOOKS_BUILTIN_FUNCTION
154 #undef LANG_HOOKS_GET_ARRAY_DESCR_INFO
155 #undef LANG_HOOKS_ATTRIBUTE_TABLE
157 /* Define lang hooks. */
158 #define LANG_HOOKS_NAME "GNU Fortran"
159 #define LANG_HOOKS_INIT gfc_init
160 #define LANG_HOOKS_FINISH gfc_finish
161 #define LANG_HOOKS_WRITE_GLOBALS gfc_write_global_declarations
162 #define LANG_HOOKS_OPTION_LANG_MASK gfc_option_lang_mask
163 #define LANG_HOOKS_INIT_OPTIONS_STRUCT gfc_init_options_struct
164 #define LANG_HOOKS_INIT_OPTIONS gfc_init_options
165 #define LANG_HOOKS_HANDLE_OPTION gfc_handle_option
166 #define LANG_HOOKS_POST_OPTIONS gfc_post_options
167 #define LANG_HOOKS_PARSE_FILE gfc_be_parse_file
168 #define LANG_HOOKS_TYPE_FOR_MODE gfc_type_for_mode
169 #define LANG_HOOKS_TYPE_FOR_SIZE gfc_type_for_size
170 #define LANG_HOOKS_GET_ALIAS_SET gfc_get_alias_set
171 #define LANG_HOOKS_INIT_TS gfc_init_ts
172 #define LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE gfc_omp_privatize_by_reference
173 #define LANG_HOOKS_OMP_PREDETERMINED_SHARING gfc_omp_predetermined_sharing
174 #define LANG_HOOKS_OMP_REPORT_DECL gfc_omp_report_decl
175 #define LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR gfc_omp_clause_default_ctor
176 #define LANG_HOOKS_OMP_CLAUSE_COPY_CTOR gfc_omp_clause_copy_ctor
177 #define LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP gfc_omp_clause_assign_op
178 #define LANG_HOOKS_OMP_CLAUSE_LINEAR_CTOR gfc_omp_clause_linear_ctor
179 #define LANG_HOOKS_OMP_CLAUSE_DTOR gfc_omp_clause_dtor
180 #define LANG_HOOKS_OMP_FINISH_CLAUSE gfc_omp_finish_clause
181 #define LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR gfc_omp_disregard_value_expr
182 #define LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE gfc_omp_private_debug_clause
183 #define LANG_HOOKS_OMP_PRIVATE_OUTER_REF gfc_omp_private_outer_ref
184 #define LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES \
185 gfc_omp_firstprivatize_type_sizes
186 #define LANG_HOOKS_BUILTIN_FUNCTION gfc_builtin_function
187 #define LANG_HOOKS_GET_ARRAY_DESCR_INFO gfc_get_array_descr_info
188 #define LANG_HOOKS_ATTRIBUTE_TABLE gfc_attribute_table
190 struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
192 #define NULL_BINDING_LEVEL (struct binding_level *) NULL
194 /* A chain of binding_level structures awaiting reuse. */
196 static GTY(()) struct binding_level *free_binding_level;
198 /* True means we've initialized exception handling. */
199 static bool gfc_eh_initialized_p;
201 /* The current translation unit. */
202 static GTY(()) tree current_translation_unit;
205 static void
206 gfc_create_decls (void)
208 /* GCC builtins. */
209 gfc_init_builtin_functions ();
211 /* Runtime/IO library functions. */
212 gfc_build_builtin_function_decls ();
214 gfc_init_constants ();
216 /* Build our translation-unit decl. */
217 current_translation_unit = build_translation_unit_decl (NULL_TREE);
221 static void
222 gfc_be_parse_file (void)
224 int errors;
225 int warnings;
227 gfc_create_decls ();
228 gfc_parse_file ();
229 gfc_generate_constructors ();
231 /* Tell the frontend about any errors. */
232 gfc_get_errors (&warnings, &errors);
233 errorcount += errors;
234 warningcount += warnings;
236 /* Clear the binding level stack. */
237 while (!global_bindings_p ())
238 poplevel (0, 0);
240 /* Switch to the default tree diagnostics here, because there may be
241 diagnostics before gfc_finish(). */
242 gfc_diagnostics_finish ();
246 /* Initialize everything. */
248 static bool
249 gfc_init (void)
251 if (!gfc_cpp_enabled ())
253 linemap_add (line_table, LC_ENTER, false, gfc_source_file, 1);
254 linemap_add (line_table, LC_RENAME, false, "<built-in>", 0);
256 else
257 gfc_cpp_init_0 ();
259 gfc_init_decl_processing ();
260 gfc_static_ctors = NULL_TREE;
262 if (gfc_cpp_enabled ())
263 gfc_cpp_init ();
265 gfc_init_1 ();
267 if (!gfc_new_file ())
268 fatal_error (input_location, "can't open input file: %s", gfc_source_file);
270 if (flag_preprocess_only)
271 return false;
273 return true;
277 static void
278 gfc_finish (void)
280 gfc_cpp_done ();
281 gfc_done_1 ();
282 gfc_release_include_path ();
283 return;
286 /* ??? This is something of a hack.
288 Emulated tls lowering needs to see all TLS variables before we call
289 finalize_compilation_unit. The C/C++ front ends manage this
290 by calling decl_rest_of_compilation on each global and static variable
291 as they are seen. The Fortran front end waits until this hook.
293 A Correct solution is for finalize_compilation_unit not to be
294 called during the WRITE_GLOBALS langhook, and have that hook only do what
295 its name suggests and write out globals. But the C++ and Java front ends
296 have (unspecified) problems with aliases that gets in the way. It has
297 been suggested that these problems would be solved by completing the
298 conversion to cgraph-based aliases. */
300 static void
301 gfc_write_global_declarations (void)
303 tree decl;
305 /* Finalize all of the globals. */
306 for (decl = getdecls(); decl ; decl = DECL_CHAIN (decl))
307 rest_of_decl_compilation (decl, true, true);
309 write_global_declarations ();
312 /* These functions and variables deal with binding contours. We only
313 need these functions for the list of PARM_DECLs, but we leave the
314 functions more general; these are a simplified version of the
315 functions from GNAT. */
317 /* For each binding contour we allocate a binding_level structure which
318 records the entities defined or declared in that contour. Contours
319 include:
321 the global one
322 one for each subprogram definition
323 one for each compound statement (declare block)
325 Binding contours are used to create GCC tree BLOCK nodes. */
327 struct GTY(())
328 binding_level {
329 /* A chain of ..._DECL nodes for all variables, constants, functions,
330 parameters and type declarations. These ..._DECL nodes are chained
331 through the DECL_CHAIN field. */
332 tree names;
333 /* For each level (except the global one), a chain of BLOCK nodes for all
334 the levels that were entered and exited one level down from this one. */
335 tree blocks;
336 /* The binding level containing this one (the enclosing binding level). */
337 struct binding_level *level_chain;
340 /* The binding level currently in effect. */
341 static GTY(()) struct binding_level *current_binding_level = NULL;
343 /* The outermost binding level. This binding level is created when the
344 compiler is started and it will exist through the entire compilation. */
345 static GTY(()) struct binding_level *global_binding_level;
347 /* Binding level structures are initialized by copying this one. */
348 static struct binding_level clear_binding_level = { NULL, NULL, NULL };
351 /* Return true if we are in the global binding level. */
353 bool
354 global_bindings_p (void)
356 return current_binding_level == global_binding_level;
359 tree
360 getdecls (void)
362 return current_binding_level->names;
365 /* Enter a new binding level. */
367 void
368 pushlevel (void)
370 struct binding_level *newlevel = ggc_alloc<binding_level> ();
372 *newlevel = clear_binding_level;
374 /* Add this level to the front of the chain (stack) of levels that are
375 active. */
376 newlevel->level_chain = current_binding_level;
377 current_binding_level = newlevel;
380 /* Exit a binding level.
381 Pop the level off, and restore the state of the identifier-decl mappings
382 that were in effect when this level was entered.
384 If KEEP is nonzero, this level had explicit declarations, so
385 and create a "block" (a BLOCK node) for the level
386 to record its declarations and subblocks for symbol table output.
388 If FUNCTIONBODY is nonzero, this level is the body of a function,
389 so create a block as if KEEP were set and also clear out all
390 label names. */
392 tree
393 poplevel (int keep, int functionbody)
395 /* Points to a BLOCK tree node. This is the BLOCK node constructed for the
396 binding level that we are about to exit and which is returned by this
397 routine. */
398 tree block_node = NULL_TREE;
399 tree decl_chain = current_binding_level->names;
400 tree subblock_chain = current_binding_level->blocks;
401 tree subblock_node;
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. */
406 if (keep || functionbody)
407 block_node = build_block (keep ? decl_chain : 0, subblock_chain, 0, 0);
409 /* Record the BLOCK node just built as the subblock its enclosing scope. */
410 for (subblock_node = subblock_chain; subblock_node;
411 subblock_node = BLOCK_CHAIN (subblock_node))
412 BLOCK_SUPERCONTEXT (subblock_node) = block_node;
414 /* Clear out the meanings of the local variables of this level. */
416 for (subblock_node = decl_chain; subblock_node;
417 subblock_node = DECL_CHAIN (subblock_node))
418 if (DECL_NAME (subblock_node) != 0)
419 /* If the identifier was used or addressed via a local extern decl,
420 don't forget that fact. */
421 if (DECL_EXTERNAL (subblock_node))
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;
429 /* Pop the current level. */
430 current_binding_level = current_binding_level->level_chain;
432 if (functionbody)
433 /* This is the top level block of a function. */
434 DECL_INITIAL (current_function_decl) = block_node;
435 else if (current_binding_level == global_binding_level)
436 /* When using gfc_start_block/gfc_finish_block from middle-end hooks,
437 don't add newly created BLOCKs as subblocks of global_binding_level. */
439 else if (block_node)
441 current_binding_level->blocks
442 = block_chainon (current_binding_level->blocks, block_node);
445 /* If we did not make a block for the level just exited, any blocks made for
446 inner levels (since they cannot be recorded as subblocks in that level)
447 must be carried forward so they will later become subblocks of something
448 else. */
449 else if (subblock_chain)
450 current_binding_level->blocks
451 = block_chainon (current_binding_level->blocks, subblock_chain);
452 if (block_node)
453 TREE_USED (block_node) = 1;
455 return block_node;
459 /* Records a ..._DECL node DECL as belonging to the current lexical scope.
460 Returns the ..._DECL node. */
462 tree
463 pushdecl (tree decl)
465 if (global_bindings_p ())
466 DECL_CONTEXT (decl) = current_translation_unit;
467 else
469 /* External objects aren't nested. For debug info insert a copy
470 of the decl into the binding level. */
471 if (DECL_EXTERNAL (decl))
473 tree orig = decl;
474 decl = copy_node (decl);
475 DECL_CONTEXT (orig) = NULL_TREE;
477 DECL_CONTEXT (decl) = current_function_decl;
480 /* Put the declaration on the list. */
481 DECL_CHAIN (decl) = current_binding_level->names;
482 current_binding_level->names = decl;
484 /* For the declaration of a type, set its name if it is not already set. */
486 if (TREE_CODE (decl) == TYPE_DECL && TYPE_NAME (TREE_TYPE (decl)) == 0)
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);
494 return decl;
498 /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL. */
500 tree
501 pushdecl_top_level (tree x)
503 tree t;
504 struct binding_level *b = current_binding_level;
506 current_binding_level = global_binding_level;
507 t = pushdecl (x);
508 current_binding_level = b;
509 return t;
512 #ifndef CHAR_TYPE_SIZE
513 #define CHAR_TYPE_SIZE BITS_PER_UNIT
514 #endif
516 #ifndef INT_TYPE_SIZE
517 #define INT_TYPE_SIZE BITS_PER_WORD
518 #endif
520 #undef SIZE_TYPE
521 #define SIZE_TYPE "long unsigned int"
523 /* Create tree nodes for the basic scalar types of Fortran 95,
524 and some nodes representing standard constants (0, 1, (void *) 0).
525 Initialize the global binding level.
526 Make definitions for built-in primitive functions. */
527 static void
528 gfc_init_decl_processing (void)
530 current_function_decl = NULL;
531 current_binding_level = NULL_BINDING_LEVEL;
532 free_binding_level = NULL_BINDING_LEVEL;
534 /* Make the binding_level structure for global names. We move all
535 variables that are in a COMMON block to this binding level. */
536 pushlevel ();
537 global_binding_level = current_binding_level;
539 /* Build common tree nodes. char_type_node is unsigned because we
540 only use it for actual characters, not for INTEGER(1). Also, we
541 want double_type_node to actually have double precision. */
542 build_common_tree_nodes (false, false);
544 void_list_node = build_tree_list (NULL_TREE, void_type_node);
546 /* Set up F95 type nodes. */
547 gfc_init_kinds ();
548 gfc_init_types ();
549 gfc_init_c_interop_kinds ();
553 /* Return the typed-based alias set for T, which may be an expression
554 or a type. Return -1 if we don't do anything special. */
556 static alias_set_type
557 gfc_get_alias_set (tree t)
559 tree u;
561 /* Permit type-punning when accessing an EQUIVALENCEd variable or
562 mixed type entry master's return value. */
563 for (u = t; handled_component_p (u); u = TREE_OPERAND (u, 0))
564 if (TREE_CODE (u) == COMPONENT_REF
565 && TREE_CODE (TREE_TYPE (TREE_OPERAND (u, 0))) == UNION_TYPE)
566 return 0;
568 return -1;
571 /* Builtin function initialization. */
573 static tree
574 gfc_builtin_function (tree decl)
576 pushdecl (decl);
577 return decl;
580 /* So far we need just these 7 attribute types. */
581 #define ATTR_NULL 0
582 #define ATTR_LEAF_LIST (ECF_LEAF)
583 #define ATTR_NOTHROW_LEAF_LIST (ECF_NOTHROW | ECF_LEAF)
584 #define ATTR_NOTHROW_LEAF_MALLOC_LIST (ECF_NOTHROW | ECF_LEAF | ECF_MALLOC)
585 #define ATTR_CONST_NOTHROW_LEAF_LIST (ECF_NOTHROW | ECF_LEAF | ECF_CONST)
586 #define ATTR_PURE_NOTHROW_LEAF_LIST (ECF_NOTHROW | ECF_LEAF | ECF_PURE)
587 #define ATTR_NOTHROW_LIST (ECF_NOTHROW)
588 #define ATTR_CONST_NOTHROW_LIST (ECF_NOTHROW | ECF_CONST)
590 static void
591 gfc_define_builtin (const char *name, tree type, enum built_in_function code,
592 const char *library_name, int attr)
594 tree decl;
596 decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
597 library_name, NULL_TREE);
598 set_call_expr_flags (decl, attr);
600 set_builtin_decl (code, decl, true);
604 #define DO_DEFINE_MATH_BUILTIN(code, name, argtype, tbase) \
605 gfc_define_builtin ("__builtin_" name "l", tbase##longdouble[argtype], \
606 BUILT_IN_ ## code ## L, name "l", \
607 ATTR_CONST_NOTHROW_LEAF_LIST); \
608 gfc_define_builtin ("__builtin_" name, tbase##double[argtype], \
609 BUILT_IN_ ## code, name, \
610 ATTR_CONST_NOTHROW_LEAF_LIST); \
611 gfc_define_builtin ("__builtin_" name "f", tbase##float[argtype], \
612 BUILT_IN_ ## code ## F, name "f", \
613 ATTR_CONST_NOTHROW_LEAF_LIST);
615 #define DEFINE_MATH_BUILTIN(code, name, argtype) \
616 DO_DEFINE_MATH_BUILTIN (code, name, argtype, mfunc_)
618 #define DEFINE_MATH_BUILTIN_C(code, name, argtype) \
619 DO_DEFINE_MATH_BUILTIN (code, name, argtype, mfunc_) \
620 DO_DEFINE_MATH_BUILTIN (C##code, "c" name, argtype, mfunc_c)
623 /* Create function types for builtin functions. */
625 static void
626 build_builtin_fntypes (tree *fntype, tree type)
628 /* type (*) (type) */
629 fntype[0] = build_function_type_list (type, type, NULL_TREE);
630 /* type (*) (type, type) */
631 fntype[1] = build_function_type_list (type, type, type, NULL_TREE);
632 /* type (*) (type, int) */
633 fntype[2] = build_function_type_list (type,
634 type, integer_type_node, NULL_TREE);
635 /* type (*) (void) */
636 fntype[3] = build_function_type_list (type, NULL_TREE);
637 /* type (*) (type, &int) */
638 fntype[4] = build_function_type_list (type, type,
639 build_pointer_type (integer_type_node),
640 NULL_TREE);
641 /* type (*) (int, type) */
642 fntype[5] = build_function_type_list (type,
643 integer_type_node, type, NULL_TREE);
647 static tree
648 builtin_type_for_size (int size, bool unsignedp)
650 tree type = gfc_type_for_size (size, unsignedp);
651 return type ? type : error_mark_node;
654 /* Initialization of builtin function nodes. */
656 static void
657 gfc_init_builtin_functions (void)
659 enum builtin_type
661 #define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
662 #define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
663 #define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
664 #define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
665 #define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
666 #define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
667 #define DEF_FUNCTION_TYPE_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) NAME,
668 #define DEF_FUNCTION_TYPE_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
669 ARG6) NAME,
670 #define DEF_FUNCTION_TYPE_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
671 ARG6, ARG7) NAME,
672 #define DEF_FUNCTION_TYPE_8(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
673 ARG6, ARG7, ARG8) NAME,
674 #define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
675 #define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
676 #define DEF_FUNCTION_TYPE_VAR_8(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
677 ARG6, ARG7, ARG8) NAME,
678 #define DEF_FUNCTION_TYPE_VAR_12(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
679 ARG6, ARG7, ARG8, ARG9, ARG10, ARG11, ARG12) NAME,
680 #define DEF_POINTER_TYPE(NAME, TYPE) NAME,
681 #include "types.def"
682 #undef DEF_PRIMITIVE_TYPE
683 #undef DEF_FUNCTION_TYPE_0
684 #undef DEF_FUNCTION_TYPE_1
685 #undef DEF_FUNCTION_TYPE_2
686 #undef DEF_FUNCTION_TYPE_3
687 #undef DEF_FUNCTION_TYPE_4
688 #undef DEF_FUNCTION_TYPE_5
689 #undef DEF_FUNCTION_TYPE_6
690 #undef DEF_FUNCTION_TYPE_7
691 #undef DEF_FUNCTION_TYPE_8
692 #undef DEF_FUNCTION_TYPE_VAR_0
693 #undef DEF_FUNCTION_TYPE_VAR_2
694 #undef DEF_FUNCTION_TYPE_VAR_8
695 #undef DEF_FUNCTION_TYPE_VAR_12
696 #undef DEF_POINTER_TYPE
697 BT_LAST
700 tree mfunc_float[6];
701 tree mfunc_double[6];
702 tree mfunc_longdouble[6];
703 tree mfunc_cfloat[6];
704 tree mfunc_cdouble[6];
705 tree mfunc_clongdouble[6];
706 tree func_cfloat_float, func_float_cfloat;
707 tree func_cdouble_double, func_double_cdouble;
708 tree func_clongdouble_longdouble, func_longdouble_clongdouble;
709 tree func_float_floatp_floatp;
710 tree func_double_doublep_doublep;
711 tree func_longdouble_longdoublep_longdoublep;
712 tree ftype, ptype;
713 tree builtin_types[(int) BT_LAST + 1];
715 int attr;
717 build_builtin_fntypes (mfunc_float, float_type_node);
718 build_builtin_fntypes (mfunc_double, double_type_node);
719 build_builtin_fntypes (mfunc_longdouble, long_double_type_node);
720 build_builtin_fntypes (mfunc_cfloat, complex_float_type_node);
721 build_builtin_fntypes (mfunc_cdouble, complex_double_type_node);
722 build_builtin_fntypes (mfunc_clongdouble, complex_long_double_type_node);
724 func_cfloat_float = build_function_type_list (float_type_node,
725 complex_float_type_node,
726 NULL_TREE);
728 func_float_cfloat = build_function_type_list (complex_float_type_node,
729 float_type_node, NULL_TREE);
731 func_cdouble_double = build_function_type_list (double_type_node,
732 complex_double_type_node,
733 NULL_TREE);
735 func_double_cdouble = build_function_type_list (complex_double_type_node,
736 double_type_node, NULL_TREE);
738 func_clongdouble_longdouble =
739 build_function_type_list (long_double_type_node,
740 complex_long_double_type_node, NULL_TREE);
742 func_longdouble_clongdouble =
743 build_function_type_list (complex_long_double_type_node,
744 long_double_type_node, NULL_TREE);
746 ptype = build_pointer_type (float_type_node);
747 func_float_floatp_floatp =
748 build_function_type_list (void_type_node, ptype, ptype, NULL_TREE);
750 ptype = build_pointer_type (double_type_node);
751 func_double_doublep_doublep =
752 build_function_type_list (void_type_node, ptype, ptype, NULL_TREE);
754 ptype = build_pointer_type (long_double_type_node);
755 func_longdouble_longdoublep_longdoublep =
756 build_function_type_list (void_type_node, ptype, ptype, NULL_TREE);
758 /* Non-math builtins are defined manually, so they're not included here. */
759 #define OTHER_BUILTIN(ID,NAME,TYPE,CONST)
761 #include "mathbuiltins.def"
763 gfc_define_builtin ("__builtin_roundl", mfunc_longdouble[0],
764 BUILT_IN_ROUNDL, "roundl", ATTR_CONST_NOTHROW_LEAF_LIST);
765 gfc_define_builtin ("__builtin_round", mfunc_double[0],
766 BUILT_IN_ROUND, "round", ATTR_CONST_NOTHROW_LEAF_LIST);
767 gfc_define_builtin ("__builtin_roundf", mfunc_float[0],
768 BUILT_IN_ROUNDF, "roundf", ATTR_CONST_NOTHROW_LEAF_LIST);
770 gfc_define_builtin ("__builtin_truncl", mfunc_longdouble[0],
771 BUILT_IN_TRUNCL, "truncl", ATTR_CONST_NOTHROW_LEAF_LIST);
772 gfc_define_builtin ("__builtin_trunc", mfunc_double[0],
773 BUILT_IN_TRUNC, "trunc", ATTR_CONST_NOTHROW_LEAF_LIST);
774 gfc_define_builtin ("__builtin_truncf", mfunc_float[0],
775 BUILT_IN_TRUNCF, "truncf", ATTR_CONST_NOTHROW_LEAF_LIST);
777 gfc_define_builtin ("__builtin_cabsl", func_clongdouble_longdouble,
778 BUILT_IN_CABSL, "cabsl", ATTR_CONST_NOTHROW_LEAF_LIST);
779 gfc_define_builtin ("__builtin_cabs", func_cdouble_double,
780 BUILT_IN_CABS, "cabs", ATTR_CONST_NOTHROW_LEAF_LIST);
781 gfc_define_builtin ("__builtin_cabsf", func_cfloat_float,
782 BUILT_IN_CABSF, "cabsf", ATTR_CONST_NOTHROW_LEAF_LIST);
784 gfc_define_builtin ("__builtin_copysignl", mfunc_longdouble[1],
785 BUILT_IN_COPYSIGNL, "copysignl",
786 ATTR_CONST_NOTHROW_LEAF_LIST);
787 gfc_define_builtin ("__builtin_copysign", mfunc_double[1],
788 BUILT_IN_COPYSIGN, "copysign",
789 ATTR_CONST_NOTHROW_LEAF_LIST);
790 gfc_define_builtin ("__builtin_copysignf", mfunc_float[1],
791 BUILT_IN_COPYSIGNF, "copysignf",
792 ATTR_CONST_NOTHROW_LEAF_LIST);
794 gfc_define_builtin ("__builtin_nextafterl", mfunc_longdouble[1],
795 BUILT_IN_NEXTAFTERL, "nextafterl",
796 ATTR_CONST_NOTHROW_LEAF_LIST);
797 gfc_define_builtin ("__builtin_nextafter", mfunc_double[1],
798 BUILT_IN_NEXTAFTER, "nextafter",
799 ATTR_CONST_NOTHROW_LEAF_LIST);
800 gfc_define_builtin ("__builtin_nextafterf", mfunc_float[1],
801 BUILT_IN_NEXTAFTERF, "nextafterf",
802 ATTR_CONST_NOTHROW_LEAF_LIST);
804 /* Some built-ins depend on rounding mode. Depending on compilation options, they
805 will be "pure" or "const". */
806 attr = flag_rounding_math ? ATTR_PURE_NOTHROW_LEAF_LIST : ATTR_CONST_NOTHROW_LEAF_LIST;
808 gfc_define_builtin ("__builtin_rintl", mfunc_longdouble[0],
809 BUILT_IN_RINTL, "rintl", attr);
810 gfc_define_builtin ("__builtin_rint", mfunc_double[0],
811 BUILT_IN_RINT, "rint", attr);
812 gfc_define_builtin ("__builtin_rintf", mfunc_float[0],
813 BUILT_IN_RINTF, "rintf", attr);
815 gfc_define_builtin ("__builtin_remainderl", mfunc_longdouble[1],
816 BUILT_IN_REMAINDERL, "remainderl", attr);
817 gfc_define_builtin ("__builtin_remainder", mfunc_double[1],
818 BUILT_IN_REMAINDER, "remainder", attr);
819 gfc_define_builtin ("__builtin_remainderf", mfunc_float[1],
820 BUILT_IN_REMAINDERF, "remainderf", attr);
822 gfc_define_builtin ("__builtin_logbl", mfunc_longdouble[0],
823 BUILT_IN_LOGBL, "logbl", ATTR_CONST_NOTHROW_LEAF_LIST);
824 gfc_define_builtin ("__builtin_logb", mfunc_double[0],
825 BUILT_IN_LOGB, "logb", ATTR_CONST_NOTHROW_LEAF_LIST);
826 gfc_define_builtin ("__builtin_logbf", mfunc_float[0],
827 BUILT_IN_LOGBF, "logbf", ATTR_CONST_NOTHROW_LEAF_LIST);
830 gfc_define_builtin ("__builtin_frexpl", mfunc_longdouble[4],
831 BUILT_IN_FREXPL, "frexpl", ATTR_NOTHROW_LEAF_LIST);
832 gfc_define_builtin ("__builtin_frexp", mfunc_double[4],
833 BUILT_IN_FREXP, "frexp", ATTR_NOTHROW_LEAF_LIST);
834 gfc_define_builtin ("__builtin_frexpf", mfunc_float[4],
835 BUILT_IN_FREXPF, "frexpf", ATTR_NOTHROW_LEAF_LIST);
837 gfc_define_builtin ("__builtin_fabsl", mfunc_longdouble[0],
838 BUILT_IN_FABSL, "fabsl", ATTR_CONST_NOTHROW_LEAF_LIST);
839 gfc_define_builtin ("__builtin_fabs", mfunc_double[0],
840 BUILT_IN_FABS, "fabs", ATTR_CONST_NOTHROW_LEAF_LIST);
841 gfc_define_builtin ("__builtin_fabsf", mfunc_float[0],
842 BUILT_IN_FABSF, "fabsf", ATTR_CONST_NOTHROW_LEAF_LIST);
844 gfc_define_builtin ("__builtin_scalbnl", mfunc_longdouble[2],
845 BUILT_IN_SCALBNL, "scalbnl", ATTR_CONST_NOTHROW_LEAF_LIST);
846 gfc_define_builtin ("__builtin_scalbn", mfunc_double[2],
847 BUILT_IN_SCALBN, "scalbn", ATTR_CONST_NOTHROW_LEAF_LIST);
848 gfc_define_builtin ("__builtin_scalbnf", mfunc_float[2],
849 BUILT_IN_SCALBNF, "scalbnf", ATTR_CONST_NOTHROW_LEAF_LIST);
851 gfc_define_builtin ("__builtin_fmodl", mfunc_longdouble[1],
852 BUILT_IN_FMODL, "fmodl", ATTR_CONST_NOTHROW_LEAF_LIST);
853 gfc_define_builtin ("__builtin_fmod", mfunc_double[1],
854 BUILT_IN_FMOD, "fmod", ATTR_CONST_NOTHROW_LEAF_LIST);
855 gfc_define_builtin ("__builtin_fmodf", mfunc_float[1],
856 BUILT_IN_FMODF, "fmodf", ATTR_CONST_NOTHROW_LEAF_LIST);
858 /* iround{f,,l}, lround{f,,l} and llround{f,,l} */
859 ftype = build_function_type_list (integer_type_node,
860 float_type_node, NULL_TREE);
861 gfc_define_builtin("__builtin_iroundf", ftype, BUILT_IN_IROUNDF,
862 "iroundf", ATTR_CONST_NOTHROW_LEAF_LIST);
863 ftype = build_function_type_list (long_integer_type_node,
864 float_type_node, NULL_TREE);
865 gfc_define_builtin ("__builtin_lroundf", ftype, BUILT_IN_LROUNDF,
866 "lroundf", ATTR_CONST_NOTHROW_LEAF_LIST);
867 ftype = build_function_type_list (long_long_integer_type_node,
868 float_type_node, NULL_TREE);
869 gfc_define_builtin ("__builtin_llroundf", ftype, BUILT_IN_LLROUNDF,
870 "llroundf", ATTR_CONST_NOTHROW_LEAF_LIST);
872 ftype = build_function_type_list (integer_type_node,
873 double_type_node, NULL_TREE);
874 gfc_define_builtin("__builtin_iround", ftype, BUILT_IN_IROUND,
875 "iround", ATTR_CONST_NOTHROW_LEAF_LIST);
876 ftype = build_function_type_list (long_integer_type_node,
877 double_type_node, NULL_TREE);
878 gfc_define_builtin ("__builtin_lround", ftype, BUILT_IN_LROUND,
879 "lround", ATTR_CONST_NOTHROW_LEAF_LIST);
880 ftype = build_function_type_list (long_long_integer_type_node,
881 double_type_node, NULL_TREE);
882 gfc_define_builtin ("__builtin_llround", ftype, BUILT_IN_LLROUND,
883 "llround", ATTR_CONST_NOTHROW_LEAF_LIST);
885 ftype = build_function_type_list (integer_type_node,
886 long_double_type_node, NULL_TREE);
887 gfc_define_builtin("__builtin_iroundl", ftype, BUILT_IN_IROUNDL,
888 "iroundl", ATTR_CONST_NOTHROW_LEAF_LIST);
889 ftype = build_function_type_list (long_integer_type_node,
890 long_double_type_node, NULL_TREE);
891 gfc_define_builtin ("__builtin_lroundl", ftype, BUILT_IN_LROUNDL,
892 "lroundl", ATTR_CONST_NOTHROW_LEAF_LIST);
893 ftype = build_function_type_list (long_long_integer_type_node,
894 long_double_type_node, NULL_TREE);
895 gfc_define_builtin ("__builtin_llroundl", ftype, BUILT_IN_LLROUNDL,
896 "llroundl", ATTR_CONST_NOTHROW_LEAF_LIST);
898 /* These are used to implement the ** operator. */
899 gfc_define_builtin ("__builtin_powl", mfunc_longdouble[1],
900 BUILT_IN_POWL, "powl", ATTR_CONST_NOTHROW_LEAF_LIST);
901 gfc_define_builtin ("__builtin_pow", mfunc_double[1],
902 BUILT_IN_POW, "pow", ATTR_CONST_NOTHROW_LEAF_LIST);
903 gfc_define_builtin ("__builtin_powf", mfunc_float[1],
904 BUILT_IN_POWF, "powf", ATTR_CONST_NOTHROW_LEAF_LIST);
905 gfc_define_builtin ("__builtin_cpowl", mfunc_clongdouble[1],
906 BUILT_IN_CPOWL, "cpowl", ATTR_CONST_NOTHROW_LEAF_LIST);
907 gfc_define_builtin ("__builtin_cpow", mfunc_cdouble[1],
908 BUILT_IN_CPOW, "cpow", ATTR_CONST_NOTHROW_LEAF_LIST);
909 gfc_define_builtin ("__builtin_cpowf", mfunc_cfloat[1],
910 BUILT_IN_CPOWF, "cpowf", ATTR_CONST_NOTHROW_LEAF_LIST);
911 gfc_define_builtin ("__builtin_powil", mfunc_longdouble[2],
912 BUILT_IN_POWIL, "powil", ATTR_CONST_NOTHROW_LEAF_LIST);
913 gfc_define_builtin ("__builtin_powi", mfunc_double[2],
914 BUILT_IN_POWI, "powi", ATTR_CONST_NOTHROW_LEAF_LIST);
915 gfc_define_builtin ("__builtin_powif", mfunc_float[2],
916 BUILT_IN_POWIF, "powif", ATTR_CONST_NOTHROW_LEAF_LIST);
919 if (targetm.libc_has_function (function_c99_math_complex))
921 gfc_define_builtin ("__builtin_cbrtl", mfunc_longdouble[0],
922 BUILT_IN_CBRTL, "cbrtl",
923 ATTR_CONST_NOTHROW_LEAF_LIST);
924 gfc_define_builtin ("__builtin_cbrt", mfunc_double[0],
925 BUILT_IN_CBRT, "cbrt",
926 ATTR_CONST_NOTHROW_LEAF_LIST);
927 gfc_define_builtin ("__builtin_cbrtf", mfunc_float[0],
928 BUILT_IN_CBRTF, "cbrtf",
929 ATTR_CONST_NOTHROW_LEAF_LIST);
930 gfc_define_builtin ("__builtin_cexpil", func_longdouble_clongdouble,
931 BUILT_IN_CEXPIL, "cexpil",
932 ATTR_CONST_NOTHROW_LEAF_LIST);
933 gfc_define_builtin ("__builtin_cexpi", func_double_cdouble,
934 BUILT_IN_CEXPI, "cexpi",
935 ATTR_CONST_NOTHROW_LEAF_LIST);
936 gfc_define_builtin ("__builtin_cexpif", func_float_cfloat,
937 BUILT_IN_CEXPIF, "cexpif",
938 ATTR_CONST_NOTHROW_LEAF_LIST);
941 if (targetm.libc_has_function (function_sincos))
943 gfc_define_builtin ("__builtin_sincosl",
944 func_longdouble_longdoublep_longdoublep,
945 BUILT_IN_SINCOSL, "sincosl", ATTR_NOTHROW_LEAF_LIST);
946 gfc_define_builtin ("__builtin_sincos", func_double_doublep_doublep,
947 BUILT_IN_SINCOS, "sincos", ATTR_NOTHROW_LEAF_LIST);
948 gfc_define_builtin ("__builtin_sincosf", func_float_floatp_floatp,
949 BUILT_IN_SINCOSF, "sincosf", ATTR_NOTHROW_LEAF_LIST);
952 /* For LEADZ, TRAILZ, POPCNT and POPPAR. */
953 ftype = build_function_type_list (integer_type_node,
954 unsigned_type_node, NULL_TREE);
955 gfc_define_builtin ("__builtin_clz", ftype, BUILT_IN_CLZ,
956 "__builtin_clz", ATTR_CONST_NOTHROW_LEAF_LIST);
957 gfc_define_builtin ("__builtin_ctz", ftype, BUILT_IN_CTZ,
958 "__builtin_ctz", ATTR_CONST_NOTHROW_LEAF_LIST);
959 gfc_define_builtin ("__builtin_parity", ftype, BUILT_IN_PARITY,
960 "__builtin_parity", ATTR_CONST_NOTHROW_LEAF_LIST);
961 gfc_define_builtin ("__builtin_popcount", ftype, BUILT_IN_POPCOUNT,
962 "__builtin_popcount", ATTR_CONST_NOTHROW_LEAF_LIST);
964 ftype = build_function_type_list (integer_type_node,
965 long_unsigned_type_node, NULL_TREE);
966 gfc_define_builtin ("__builtin_clzl", ftype, BUILT_IN_CLZL,
967 "__builtin_clzl", ATTR_CONST_NOTHROW_LEAF_LIST);
968 gfc_define_builtin ("__builtin_ctzl", ftype, BUILT_IN_CTZL,
969 "__builtin_ctzl", ATTR_CONST_NOTHROW_LEAF_LIST);
970 gfc_define_builtin ("__builtin_parityl", ftype, BUILT_IN_PARITYL,
971 "__builtin_parityl", ATTR_CONST_NOTHROW_LEAF_LIST);
972 gfc_define_builtin ("__builtin_popcountl", ftype, BUILT_IN_POPCOUNTL,
973 "__builtin_popcountl", ATTR_CONST_NOTHROW_LEAF_LIST);
975 ftype = build_function_type_list (integer_type_node,
976 long_long_unsigned_type_node, NULL_TREE);
977 gfc_define_builtin ("__builtin_clzll", ftype, BUILT_IN_CLZLL,
978 "__builtin_clzll", ATTR_CONST_NOTHROW_LEAF_LIST);
979 gfc_define_builtin ("__builtin_ctzll", ftype, BUILT_IN_CTZLL,
980 "__builtin_ctzll", ATTR_CONST_NOTHROW_LEAF_LIST);
981 gfc_define_builtin ("__builtin_parityll", ftype, BUILT_IN_PARITYLL,
982 "__builtin_parityll", ATTR_CONST_NOTHROW_LEAF_LIST);
983 gfc_define_builtin ("__builtin_popcountll", ftype, BUILT_IN_POPCOUNTLL,
984 "__builtin_popcountll", ATTR_CONST_NOTHROW_LEAF_LIST);
986 /* Other builtin functions we use. */
988 ftype = build_function_type_list (long_integer_type_node,
989 long_integer_type_node,
990 long_integer_type_node, NULL_TREE);
991 gfc_define_builtin ("__builtin_expect", ftype, BUILT_IN_EXPECT,
992 "__builtin_expect", ATTR_CONST_NOTHROW_LEAF_LIST);
994 ftype = build_function_type_list (void_type_node,
995 pvoid_type_node, NULL_TREE);
996 gfc_define_builtin ("__builtin_free", ftype, BUILT_IN_FREE,
997 "free", ATTR_NOTHROW_LEAF_LIST);
999 ftype = build_function_type_list (pvoid_type_node,
1000 size_type_node, NULL_TREE);
1001 gfc_define_builtin ("__builtin_malloc", ftype, BUILT_IN_MALLOC,
1002 "malloc", ATTR_NOTHROW_LEAF_MALLOC_LIST);
1004 ftype = build_function_type_list (pvoid_type_node, size_type_node,
1005 size_type_node, NULL_TREE);
1006 gfc_define_builtin ("__builtin_calloc", ftype, BUILT_IN_CALLOC,
1007 "calloc", ATTR_NOTHROW_LEAF_MALLOC_LIST);
1008 DECL_IS_MALLOC (builtin_decl_explicit (BUILT_IN_CALLOC)) = 1;
1010 ftype = build_function_type_list (pvoid_type_node,
1011 size_type_node, pvoid_type_node,
1012 NULL_TREE);
1013 gfc_define_builtin ("__builtin_realloc", ftype, BUILT_IN_REALLOC,
1014 "realloc", ATTR_NOTHROW_LEAF_LIST);
1016 ftype = build_function_type_list (integer_type_node,
1017 void_type_node, NULL_TREE);
1018 gfc_define_builtin ("__builtin_isnan", ftype, BUILT_IN_ISNAN,
1019 "__builtin_isnan", ATTR_CONST_NOTHROW_LEAF_LIST);
1020 gfc_define_builtin ("__builtin_isfinite", ftype, BUILT_IN_ISFINITE,
1021 "__builtin_isfinite", ATTR_CONST_NOTHROW_LEAF_LIST);
1022 gfc_define_builtin ("__builtin_isnormal", ftype, BUILT_IN_ISNORMAL,
1023 "__builtin_isnormal", ATTR_CONST_NOTHROW_LEAF_LIST);
1025 ftype = build_function_type_list (integer_type_node, void_type_node,
1026 void_type_node, NULL_TREE);
1027 gfc_define_builtin ("__builtin_isunordered", ftype, BUILT_IN_ISUNORDERED,
1028 "__builtin_isunordered", ATTR_CONST_NOTHROW_LEAF_LIST);
1029 gfc_define_builtin ("__builtin_islessequal", ftype, BUILT_IN_ISLESSEQUAL,
1030 "__builtin_islessequal", ATTR_CONST_NOTHROW_LEAF_LIST);
1031 gfc_define_builtin ("__builtin_isgreaterequal", ftype,
1032 BUILT_IN_ISGREATEREQUAL, "__builtin_isgreaterequal",
1033 ATTR_CONST_NOTHROW_LEAF_LIST);
1035 ftype = build_function_type_list (integer_type_node,
1036 float_type_node, NULL_TREE);
1037 gfc_define_builtin("__builtin_signbitf", ftype, BUILT_IN_SIGNBITF,
1038 "signbitf", ATTR_CONST_NOTHROW_LEAF_LIST);
1039 ftype = build_function_type_list (integer_type_node,
1040 double_type_node, NULL_TREE);
1041 gfc_define_builtin("__builtin_signbit", ftype, BUILT_IN_SIGNBIT,
1042 "signbit", ATTR_CONST_NOTHROW_LEAF_LIST);
1043 ftype = build_function_type_list (integer_type_node,
1044 long_double_type_node, NULL_TREE);
1045 gfc_define_builtin("__builtin_signbitl", ftype, BUILT_IN_SIGNBITL,
1046 "signbitl", ATTR_CONST_NOTHROW_LEAF_LIST);
1049 #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
1050 builtin_types[(int) ENUM] = VALUE;
1051 #define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
1052 builtin_types[(int) ENUM] \
1053 = build_function_type_list (builtin_types[(int) RETURN], \
1054 NULL_TREE);
1055 #define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
1056 builtin_types[(int) ENUM] \
1057 = build_function_type_list (builtin_types[(int) RETURN], \
1058 builtin_types[(int) ARG1], \
1059 NULL_TREE);
1060 #define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
1061 builtin_types[(int) ENUM] \
1062 = build_function_type_list (builtin_types[(int) RETURN], \
1063 builtin_types[(int) ARG1], \
1064 builtin_types[(int) ARG2], \
1065 NULL_TREE);
1066 #define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
1067 builtin_types[(int) ENUM] \
1068 = build_function_type_list (builtin_types[(int) RETURN], \
1069 builtin_types[(int) ARG1], \
1070 builtin_types[(int) ARG2], \
1071 builtin_types[(int) ARG3], \
1072 NULL_TREE);
1073 #define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
1074 builtin_types[(int) ENUM] \
1075 = build_function_type_list (builtin_types[(int) RETURN], \
1076 builtin_types[(int) ARG1], \
1077 builtin_types[(int) ARG2], \
1078 builtin_types[(int) ARG3], \
1079 builtin_types[(int) ARG4], \
1080 NULL_TREE);
1081 #define DEF_FUNCTION_TYPE_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
1082 builtin_types[(int) ENUM] \
1083 = build_function_type_list (builtin_types[(int) RETURN], \
1084 builtin_types[(int) ARG1], \
1085 builtin_types[(int) ARG2], \
1086 builtin_types[(int) ARG3], \
1087 builtin_types[(int) ARG4], \
1088 builtin_types[(int) ARG5], \
1089 NULL_TREE);
1090 #define DEF_FUNCTION_TYPE_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1091 ARG6) \
1092 builtin_types[(int) ENUM] \
1093 = build_function_type_list (builtin_types[(int) RETURN], \
1094 builtin_types[(int) ARG1], \
1095 builtin_types[(int) ARG2], \
1096 builtin_types[(int) ARG3], \
1097 builtin_types[(int) ARG4], \
1098 builtin_types[(int) ARG5], \
1099 builtin_types[(int) ARG6], \
1100 NULL_TREE);
1101 #define DEF_FUNCTION_TYPE_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1102 ARG6, ARG7) \
1103 builtin_types[(int) ENUM] \
1104 = build_function_type_list (builtin_types[(int) RETURN], \
1105 builtin_types[(int) ARG1], \
1106 builtin_types[(int) ARG2], \
1107 builtin_types[(int) ARG3], \
1108 builtin_types[(int) ARG4], \
1109 builtin_types[(int) ARG5], \
1110 builtin_types[(int) ARG6], \
1111 builtin_types[(int) ARG7], \
1112 NULL_TREE);
1113 #define DEF_FUNCTION_TYPE_8(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1114 ARG6, ARG7, ARG8) \
1115 builtin_types[(int) ENUM] \
1116 = build_function_type_list (builtin_types[(int) RETURN], \
1117 builtin_types[(int) ARG1], \
1118 builtin_types[(int) ARG2], \
1119 builtin_types[(int) ARG3], \
1120 builtin_types[(int) ARG4], \
1121 builtin_types[(int) ARG5], \
1122 builtin_types[(int) ARG6], \
1123 builtin_types[(int) ARG7], \
1124 builtin_types[(int) ARG8], \
1125 NULL_TREE);
1126 #define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
1127 builtin_types[(int) ENUM] \
1128 = build_varargs_function_type_list (builtin_types[(int) RETURN], \
1129 NULL_TREE);
1130 #define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
1131 builtin_types[(int) ENUM] \
1132 = build_varargs_function_type_list (builtin_types[(int) RETURN], \
1133 builtin_types[(int) ARG1], \
1134 builtin_types[(int) ARG2], \
1135 NULL_TREE);
1136 #define DEF_FUNCTION_TYPE_VAR_8(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1137 ARG6, ARG7, ARG8) \
1138 builtin_types[(int) ENUM] \
1139 = build_varargs_function_type_list (builtin_types[(int) RETURN], \
1140 builtin_types[(int) ARG1], \
1141 builtin_types[(int) ARG2], \
1142 builtin_types[(int) ARG3], \
1143 builtin_types[(int) ARG4], \
1144 builtin_types[(int) ARG5], \
1145 builtin_types[(int) ARG6], \
1146 builtin_types[(int) ARG7], \
1147 builtin_types[(int) ARG8], \
1148 NULL_TREE);
1149 #define DEF_FUNCTION_TYPE_VAR_12(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1150 ARG6, ARG7, ARG8, ARG9, ARG10, ARG11, ARG12) \
1151 builtin_types[(int) ENUM] \
1152 = build_varargs_function_type_list (builtin_types[(int) RETURN], \
1153 builtin_types[(int) ARG1], \
1154 builtin_types[(int) ARG2], \
1155 builtin_types[(int) ARG3], \
1156 builtin_types[(int) ARG4], \
1157 builtin_types[(int) ARG5], \
1158 builtin_types[(int) ARG6], \
1159 builtin_types[(int) ARG7], \
1160 builtin_types[(int) ARG8], \
1161 builtin_types[(int) ARG9], \
1162 builtin_types[(int) ARG10], \
1163 builtin_types[(int) ARG11], \
1164 builtin_types[(int) ARG12], \
1165 NULL_TREE);
1166 #define DEF_POINTER_TYPE(ENUM, TYPE) \
1167 builtin_types[(int) ENUM] \
1168 = build_pointer_type (builtin_types[(int) TYPE]);
1169 #include "types.def"
1170 #undef DEF_PRIMITIVE_TYPE
1171 #undef DEF_FUNCTION_TYPE_0
1172 #undef DEF_FUNCTION_TYPE_1
1173 #undef DEF_FUNCTION_TYPE_2
1174 #undef DEF_FUNCTION_TYPE_3
1175 #undef DEF_FUNCTION_TYPE_4
1176 #undef DEF_FUNCTION_TYPE_5
1177 #undef DEF_FUNCTION_TYPE_6
1178 #undef DEF_FUNCTION_TYPE_7
1179 #undef DEF_FUNCTION_TYPE_8
1180 #undef DEF_FUNCTION_TYPE_VAR_0
1181 #undef DEF_FUNCTION_TYPE_VAR_2
1182 #undef DEF_FUNCTION_TYPE_VAR_8
1183 #undef DEF_FUNCTION_TYPE_VAR_12
1184 #undef DEF_POINTER_TYPE
1185 builtin_types[(int) BT_LAST] = NULL_TREE;
1187 /* Initialize synchronization builtins. */
1188 #undef DEF_SYNC_BUILTIN
1189 #define DEF_SYNC_BUILTIN(code, name, type, attr) \
1190 gfc_define_builtin (name, builtin_types[type], code, name, \
1191 attr);
1192 #include "../sync-builtins.def"
1193 #undef DEF_SYNC_BUILTIN
1195 if (flag_openacc)
1197 #undef DEF_GOACC_BUILTIN
1198 #define DEF_GOACC_BUILTIN(code, name, type, attr) \
1199 gfc_define_builtin ("__builtin_" name, builtin_types[type], \
1200 code, name, attr);
1201 #undef DEF_GOACC_BUILTIN_COMPILER
1202 #define DEF_GOACC_BUILTIN_COMPILER(code, name, type, attr) \
1203 gfc_define_builtin (name, builtin_types[type], code, name, attr);
1204 #undef DEF_GOMP_BUILTIN
1205 #define DEF_GOMP_BUILTIN(code, name, type, attr) /* ignore */
1206 #include "../omp-builtins.def"
1207 #undef DEF_GOACC_BUILTIN
1208 #undef DEF_GOACC_BUILTIN_COMPILER
1209 #undef DEF_GOMP_BUILTIN
1212 if (flag_openmp || flag_openmp_simd || flag_tree_parallelize_loops)
1214 #undef DEF_GOACC_BUILTIN
1215 #define DEF_GOACC_BUILTIN(code, name, type, attr) /* ignore */
1216 #undef DEF_GOACC_BUILTIN_COMPILER
1217 #define DEF_GOACC_BUILTIN_COMPILER(code, name, type, attr) /* ignore */
1218 #undef DEF_GOMP_BUILTIN
1219 #define DEF_GOMP_BUILTIN(code, name, type, attr) \
1220 gfc_define_builtin ("__builtin_" name, builtin_types[type], \
1221 code, name, attr);
1222 #include "../omp-builtins.def"
1223 #undef DEF_GOACC_BUILTIN
1224 #undef DEF_GOACC_BUILTIN_COMPILER
1225 #undef DEF_GOMP_BUILTIN
1228 gfc_define_builtin ("__builtin_trap", builtin_types[BT_FN_VOID],
1229 BUILT_IN_TRAP, NULL, ATTR_NOTHROW_LEAF_LIST);
1230 TREE_THIS_VOLATILE (builtin_decl_explicit (BUILT_IN_TRAP)) = 1;
1232 ftype = build_varargs_function_type_list (ptr_type_node, const_ptr_type_node,
1233 size_type_node, NULL_TREE);
1234 gfc_define_builtin ("__builtin_assume_aligned", ftype,
1235 BUILT_IN_ASSUME_ALIGNED,
1236 "__builtin_assume_aligned",
1237 ATTR_CONST_NOTHROW_LEAF_LIST);
1239 gfc_define_builtin ("__emutls_get_address",
1240 builtin_types[BT_FN_PTR_PTR],
1241 BUILT_IN_EMUTLS_GET_ADDRESS,
1242 "__emutls_get_address", ATTR_CONST_NOTHROW_LEAF_LIST);
1243 gfc_define_builtin ("__emutls_register_common",
1244 builtin_types[BT_FN_VOID_PTR_WORD_WORD_PTR],
1245 BUILT_IN_EMUTLS_REGISTER_COMMON,
1246 "__emutls_register_common", ATTR_NOTHROW_LEAF_LIST);
1248 build_common_builtin_nodes ();
1249 targetm.init_builtins ();
1252 #undef DEFINE_MATH_BUILTIN_C
1253 #undef DEFINE_MATH_BUILTIN
1255 static void
1256 gfc_init_ts (void)
1258 tree_contains_struct[NAMESPACE_DECL][TS_DECL_NON_COMMON] = 1;
1259 tree_contains_struct[NAMESPACE_DECL][TS_DECL_WITH_VIS] = 1;
1260 tree_contains_struct[NAMESPACE_DECL][TS_DECL_WRTL] = 1;
1261 tree_contains_struct[NAMESPACE_DECL][TS_DECL_COMMON] = 1;
1262 tree_contains_struct[NAMESPACE_DECL][TS_DECL_MINIMAL] = 1;
1265 void
1266 gfc_maybe_initialize_eh (void)
1268 if (!flag_exceptions || gfc_eh_initialized_p)
1269 return;
1271 gfc_eh_initialized_p = true;
1272 using_eh_for_cleanups ();
1276 #include "gt-fortran-f95-lang.h"
1277 #include "gtype-fortran.h"