Branch data Line data Source code
1 : : /* gfortran backend interface
2 : : Copyright (C) 2000-2025 Free Software Foundation, Inc.
3 : : Contributed by Paul Brook.
4 : :
5 : : This file is part of GCC.
6 : :
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.
11 : :
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.
16 : :
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/>. */
20 : :
21 : : /* f95-lang.cc-- GCC backend interface stuff */
22 : :
23 : : /* declare required prototypes: */
24 : :
25 : : #include "config.h"
26 : : #include "system.h"
27 : : #include "coretypes.h"
28 : : #include "target.h"
29 : : #include "function.h"
30 : : #include "tree.h"
31 : : #include "gfortran.h"
32 : : #include "trans.h"
33 : : #include "stringpool.h"
34 : : #include "diagnostic.h" /* For errorcount/warningcount */
35 : : #include "langhooks.h"
36 : : #include "langhooks-def.h"
37 : : #include "toplev.h"
38 : : #include "debug.h"
39 : : #include "cpp.h"
40 : : #include "trans-types.h"
41 : : #include "trans-const.h"
42 : : #include "attribs.h"
43 : :
44 : : /* Language-dependent contents of an identifier. */
45 : :
46 : : struct GTY(())
47 : : lang_identifier {
48 : : struct tree_identifier common;
49 : : };
50 : :
51 : : /* The resulting tree type. */
52 : :
53 : : union GTY((desc ("TREE_CODE (&%h.generic) == IDENTIFIER_NODE"),
54 : : chain_next ("CODE_CONTAINS_STRUCT (TREE_CODE (&%h.generic), TS_COMMON) ? ((union lang_tree_node *) TREE_CHAIN (&%h.generic)) : NULL")))
55 : : lang_tree_node {
56 : : union tree_node GTY((tag ("0"),
57 : : desc ("tree_node_structure (&%h)"))) generic;
58 : : struct lang_identifier GTY((tag ("1"))) identifier;
59 : : };
60 : :
61 : : /* Save and restore the variables in this file and elsewhere
62 : : that keep track of the progress of compilation of the current function.
63 : : Used for nested functions. */
64 : :
65 : : struct GTY(())
66 : : language_function {
67 : : /* struct gfc_language_function base; */
68 : : struct binding_level *binding_level;
69 : : };
70 : :
71 : : static void gfc_init_decl_processing (void);
72 : : static void gfc_init_builtin_functions (void);
73 : : static bool global_bindings_p (void);
74 : :
75 : : /* Each front end provides its own. */
76 : : static bool gfc_init (void);
77 : : static void gfc_finish (void);
78 : : static void gfc_be_parse_file (void);
79 : : static void gfc_init_ts (void);
80 : : static tree gfc_builtin_function (tree);
81 : :
82 : : /* Handle an "omp declare target" attribute; arguments as in
83 : : struct attribute_spec.handler. */
84 : : static tree
85 : 1353 : gfc_handle_omp_declare_target_attribute (tree *, tree, tree, int, bool *)
86 : : {
87 : 1353 : return NULL_TREE;
88 : : }
89 : :
90 : : /* Table of valid Fortran attributes. */
91 : : static const attribute_spec gfc_gnu_attributes[] =
92 : : {
93 : : /* { name, min_len, max_len, decl_req, type_req, fn_type_req,
94 : : affects_type_identity, handler, exclude } */
95 : : { "omp declare target", 0, -1, true, false, false, false,
96 : : gfc_handle_omp_declare_target_attribute, NULL },
97 : : { "omp declare target link", 0, 0, true, false, false, false,
98 : : gfc_handle_omp_declare_target_attribute, NULL },
99 : : { "omp declare target indirect", 0, 0, true, false, false, false,
100 : : gfc_handle_omp_declare_target_attribute, NULL },
101 : : { "oacc function", 0, -1, true, false, false, false,
102 : : gfc_handle_omp_declare_target_attribute, NULL },
103 : : };
104 : :
105 : : static const scoped_attribute_specs gfc_gnu_attribute_table =
106 : : {
107 : : "gnu", { gfc_gnu_attributes }
108 : : };
109 : :
110 : : static const scoped_attribute_specs *const gfc_attribute_table[] =
111 : : {
112 : : &gfc_gnu_attribute_table
113 : : };
114 : :
115 : : /* Get a value for the SARIF v2.1.0 "artifact.sourceLanguage" property,
116 : : based on the list in SARIF v2.1.0 Appendix J. */
117 : :
118 : : static const char *
119 : 2 : gfc_get_sarif_source_language (const char *)
120 : : {
121 : 2 : return "fortran";
122 : : }
123 : :
124 : : #undef LANG_HOOKS_NAME
125 : : #undef LANG_HOOKS_INIT
126 : : #undef LANG_HOOKS_FINISH
127 : : #undef LANG_HOOKS_OPTION_LANG_MASK
128 : : #undef LANG_HOOKS_INIT_OPTIONS_STRUCT
129 : : #undef LANG_HOOKS_INIT_OPTIONS
130 : : #undef LANG_HOOKS_HANDLE_OPTION
131 : : #undef LANG_HOOKS_POST_OPTIONS
132 : : #undef LANG_HOOKS_PARSE_FILE
133 : : #undef LANG_HOOKS_MARK_ADDRESSABLE
134 : : #undef LANG_HOOKS_TYPE_FOR_MODE
135 : : #undef LANG_HOOKS_TYPE_FOR_SIZE
136 : : #undef LANG_HOOKS_INIT_TS
137 : : #undef LANG_HOOKS_OMP_ARRAY_DATA
138 : : #undef LANG_HOOKS_OMP_ARRAY_SIZE
139 : : #undef LANG_HOOKS_OMP_IS_ALLOCATABLE_OR_PTR
140 : : #undef LANG_HOOKS_OMP_CHECK_OPTIONAL_ARGUMENT
141 : : #undef LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE
142 : : #undef LANG_HOOKS_OMP_PREDETERMINED_SHARING
143 : : #undef LANG_HOOKS_OMP_PREDETERMINED_MAPPING
144 : : #undef LANG_HOOKS_OMP_REPORT_DECL
145 : : #undef LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR
146 : : #undef LANG_HOOKS_OMP_CLAUSE_COPY_CTOR
147 : : #undef LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP
148 : : #undef LANG_HOOKS_OMP_CLAUSE_LINEAR_CTOR
149 : : #undef LANG_HOOKS_OMP_CLAUSE_DTOR
150 : : #undef LANG_HOOKS_OMP_FINISH_CLAUSE
151 : : #undef LANG_HOOKS_OMP_DEEP_MAPPING
152 : : #undef LANG_HOOKS_OMP_DEEP_MAPPING_P
153 : : #undef LANG_HOOKS_OMP_DEEP_MAPPING_CNT
154 : : #undef LANG_HOOKS_OMP_ALLOCATABLE_P
155 : : #undef LANG_HOOKS_OMP_SCALAR_TARGET_P
156 : : #undef LANG_HOOKS_OMP_SCALAR_P
157 : : #undef LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR
158 : : #undef LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE
159 : : #undef LANG_HOOKS_OMP_PRIVATE_OUTER_REF
160 : : #undef LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES
161 : : #undef LANG_HOOKS_BUILTIN_FUNCTION
162 : : #undef LANG_HOOKS_BUILTIN_FUNCTION
163 : : #undef LANG_HOOKS_GET_ARRAY_DESCR_INFO
164 : : #undef LANG_HOOKS_ATTRIBUTE_TABLE
165 : : #undef LANG_HOOKS_GET_SARIF_SOURCE_LANGUAGE
166 : :
167 : : /* Define lang hooks. */
168 : : #define LANG_HOOKS_NAME "GNU Fortran"
169 : : #define LANG_HOOKS_INIT gfc_init
170 : : #define LANG_HOOKS_FINISH gfc_finish
171 : : #define LANG_HOOKS_OPTION_LANG_MASK gfc_option_lang_mask
172 : : #define LANG_HOOKS_INIT_OPTIONS_STRUCT gfc_init_options_struct
173 : : #define LANG_HOOKS_INIT_OPTIONS gfc_init_options
174 : : #define LANG_HOOKS_HANDLE_OPTION gfc_handle_option
175 : : #define LANG_HOOKS_POST_OPTIONS gfc_post_options
176 : : #define LANG_HOOKS_PARSE_FILE gfc_be_parse_file
177 : : #define LANG_HOOKS_TYPE_FOR_MODE gfc_type_for_mode
178 : : #define LANG_HOOKS_TYPE_FOR_SIZE gfc_type_for_size
179 : : #define LANG_HOOKS_INIT_TS gfc_init_ts
180 : : #define LANG_HOOKS_OMP_ARRAY_DATA gfc_omp_array_data
181 : : #define LANG_HOOKS_OMP_ARRAY_SIZE gfc_omp_array_size
182 : : #define LANG_HOOKS_OMP_IS_ALLOCATABLE_OR_PTR gfc_omp_is_allocatable_or_ptr
183 : : #define LANG_HOOKS_OMP_CHECK_OPTIONAL_ARGUMENT gfc_omp_check_optional_argument
184 : : #define LANG_HOOKS_OMP_PRIVATIZE_BY_REFERENCE gfc_omp_privatize_by_reference
185 : : #define LANG_HOOKS_OMP_PREDETERMINED_SHARING gfc_omp_predetermined_sharing
186 : : #define LANG_HOOKS_OMP_PREDETERMINED_MAPPING gfc_omp_predetermined_mapping
187 : : #define LANG_HOOKS_OMP_REPORT_DECL gfc_omp_report_decl
188 : : #define LANG_HOOKS_OMP_CLAUSE_DEFAULT_CTOR gfc_omp_clause_default_ctor
189 : : #define LANG_HOOKS_OMP_CLAUSE_COPY_CTOR gfc_omp_clause_copy_ctor
190 : : #define LANG_HOOKS_OMP_CLAUSE_ASSIGN_OP gfc_omp_clause_assign_op
191 : : #define LANG_HOOKS_OMP_CLAUSE_LINEAR_CTOR gfc_omp_clause_linear_ctor
192 : : #define LANG_HOOKS_OMP_CLAUSE_DTOR gfc_omp_clause_dtor
193 : : #define LANG_HOOKS_OMP_FINISH_CLAUSE gfc_omp_finish_clause
194 : : #define LANG_HOOKS_OMP_DEEP_MAPPING gfc_omp_deep_mapping
195 : : #define LANG_HOOKS_OMP_DEEP_MAPPING_P gfc_omp_deep_mapping_p
196 : : #define LANG_HOOKS_OMP_DEEP_MAPPING_CNT gfc_omp_deep_mapping_cnt
197 : : #define LANG_HOOKS_OMP_ALLOCATABLE_P gfc_omp_allocatable_p
198 : : #define LANG_HOOKS_OMP_SCALAR_P gfc_omp_scalar_p
199 : : #define LANG_HOOKS_OMP_SCALAR_TARGET_P gfc_omp_scalar_target_p
200 : : #define LANG_HOOKS_OMP_DISREGARD_VALUE_EXPR gfc_omp_disregard_value_expr
201 : : #define LANG_HOOKS_OMP_PRIVATE_DEBUG_CLAUSE gfc_omp_private_debug_clause
202 : : #define LANG_HOOKS_OMP_PRIVATE_OUTER_REF gfc_omp_private_outer_ref
203 : : #define LANG_HOOKS_OMP_FIRSTPRIVATIZE_TYPE_SIZES \
204 : : gfc_omp_firstprivatize_type_sizes
205 : : #define LANG_HOOKS_BUILTIN_FUNCTION gfc_builtin_function
206 : : #define LANG_HOOKS_GET_ARRAY_DESCR_INFO gfc_get_array_descr_info
207 : : #define LANG_HOOKS_ATTRIBUTE_TABLE gfc_attribute_table
208 : : #define LANG_HOOKS_GET_SARIF_SOURCE_LANGUAGE gfc_get_sarif_source_language
209 : :
210 : : struct lang_hooks lang_hooks = LANG_HOOKS_INITIALIZER;
211 : :
212 : : #define NULL_BINDING_LEVEL (struct binding_level *) NULL
213 : :
214 : : /* A chain of binding_level structures awaiting reuse. */
215 : :
216 : : static GTY(()) struct binding_level *free_binding_level;
217 : :
218 : : /* True means we've initialized exception handling. */
219 : : static bool gfc_eh_initialized_p;
220 : :
221 : : /* The current translation unit. */
222 : : static GTY(()) tree current_translation_unit;
223 : :
224 : :
225 : : static void
226 : 30575 : gfc_create_decls (void)
227 : : {
228 : : /* GCC builtins. */
229 : 30575 : gfc_init_builtin_functions ();
230 : :
231 : : /* Runtime/IO library functions. */
232 : 30575 : gfc_build_builtin_function_decls ();
233 : :
234 : 30575 : gfc_init_constants ();
235 : :
236 : : /* Build our translation-unit decl. */
237 : 30575 : current_translation_unit
238 : 30575 : = build_translation_unit_decl (get_identifier (main_input_filename));
239 : 30575 : debug_hooks->register_main_translation_unit (current_translation_unit);
240 : 30575 : }
241 : :
242 : :
243 : : static void
244 : 30575 : gfc_be_parse_file (void)
245 : : {
246 : 30575 : gfc_create_decls ();
247 : 30575 : gfc_parse_file ();
248 : 30564 : gfc_generate_constructors ();
249 : :
250 : : /* Clear the binding level stack. */
251 : 30564 : while (!global_bindings_p ())
252 : 7 : poplevel (0, 0);
253 : :
254 : : /* Finalize all of the globals.
255 : :
256 : : Emulated tls lowering needs to see all TLS variables before we
257 : : call finalize_compilation_unit. The C/C++ front ends manage this
258 : : by calling decl_rest_of_compilation on each global and static
259 : : variable as they are seen. The Fortran front end waits until
260 : : here. */
261 : 136856223 : for (tree decl = getdecls (); decl ; decl = DECL_CHAIN (decl))
262 : 136825659 : rest_of_decl_compilation (decl, true, true);
263 : :
264 : : /* Switch to the default tree diagnostics here, because there may be
265 : : diagnostics before gfc_finish(). */
266 : 30564 : gfc_diagnostics_finish ();
267 : :
268 : 30564 : global_decl_processing ();
269 : 30564 : }
270 : :
271 : :
272 : : /* Initialize everything. */
273 : :
274 : : static bool
275 : 30591 : gfc_init (void)
276 : : {
277 : 30591 : if (!gfc_cpp_enabled ())
278 : : {
279 : 29446 : linemap_add (line_table, LC_ENTER, false, gfc_source_file, 1);
280 : 29446 : linemap_add (line_table, LC_RENAME, false, special_fname_builtin (), 0);
281 : : }
282 : : else
283 : 1145 : gfc_cpp_init_0 ();
284 : :
285 : 30591 : gfc_init_decl_processing ();
286 : 30591 : gfc_static_ctors = NULL_TREE;
287 : :
288 : 30591 : if (gfc_cpp_enabled ())
289 : 1145 : gfc_cpp_init ();
290 : :
291 : 30591 : gfc_init_1 ();
292 : :
293 : : /* Calls exit in case of a fail. */
294 : 30591 : gfc_new_file ();
295 : :
296 : 30588 : if (flag_preprocess_only)
297 : 13 : return false;
298 : :
299 : : return true;
300 : : }
301 : :
302 : :
303 : : static void
304 : 30573 : gfc_finish (void)
305 : : {
306 : 30573 : gfc_cpp_done ();
307 : 30573 : gfc_done_1 ();
308 : 30573 : gfc_release_include_path ();
309 : 30573 : return;
310 : : }
311 : :
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. */
316 : :
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:
320 : :
321 : : the global one
322 : : one for each subprogram definition
323 : : one for each compound statement (declare block)
324 : :
325 : : Binding contours are used to create GCC tree BLOCK nodes. */
326 : :
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;
338 : : /* True if nreverse has been already called on names; if false, names
339 : : are ordered from newest declaration to oldest one. */
340 : : bool reversed;
341 : : };
342 : :
343 : : /* The binding level currently in effect. */
344 : : static GTY(()) struct binding_level *current_binding_level = NULL;
345 : :
346 : : /* The outermost binding level. This binding level is created when the
347 : : compiler is started and it will exist through the entire compilation. */
348 : : static GTY(()) struct binding_level *global_binding_level;
349 : :
350 : : /* Binding level structures are initialized by copying this one. */
351 : : static struct binding_level clear_binding_level = { NULL, NULL, NULL, false };
352 : :
353 : :
354 : : /* Return true if we are in the global binding level. */
355 : :
356 : : bool
357 : 139011040 : global_bindings_p (void)
358 : : {
359 : 30571 : return current_binding_level == global_binding_level;
360 : : }
361 : :
362 : : tree
363 : 4680335 : getdecls (void)
364 : : {
365 : 4680335 : if (!current_binding_level->reversed)
366 : : {
367 : 2358157 : current_binding_level->reversed = true;
368 : 2358157 : current_binding_level->names = nreverse (current_binding_level->names);
369 : : }
370 : 4680335 : return current_binding_level->names;
371 : : }
372 : :
373 : : /* Enter a new binding level. */
374 : :
375 : : void
376 : 2358184 : pushlevel (void)
377 : : {
378 : 2358184 : struct binding_level *newlevel = ggc_alloc<binding_level> ();
379 : :
380 : 2358184 : *newlevel = clear_binding_level;
381 : :
382 : : /* Add this level to the front of the chain (stack) of levels that are
383 : : active. */
384 : 2358184 : newlevel->level_chain = current_binding_level;
385 : 2358184 : current_binding_level = newlevel;
386 : 2358184 : }
387 : :
388 : : /* Exit a binding level.
389 : : Pop the level off, and restore the state of the identifier-decl mappings
390 : : that were in effect when this level was entered.
391 : :
392 : : If KEEP is nonzero, this level had explicit declarations, so
393 : : and create a "block" (a BLOCK node) for the level
394 : : to record its declarations and subblocks for symbol table output.
395 : :
396 : : If FUNCTIONBODY is nonzero, this level is the body of a function,
397 : : so create a block as if KEEP were set and also clear out all
398 : : label names. */
399 : :
400 : : tree
401 : 2327593 : poplevel (int keep, int functionbody)
402 : : {
403 : : /* Points to a BLOCK tree node. This is the BLOCK node constructed for the
404 : : binding level that we are about to exit and which is returned by this
405 : : routine. */
406 : 2327593 : tree block_node = NULL_TREE;
407 : 2327593 : tree decl_chain = getdecls ();
408 : 2327593 : tree subblock_chain = current_binding_level->blocks;
409 : 2327593 : tree subblock_node;
410 : :
411 : : /* If there were any declarations in the current binding level, or if this
412 : : binding level is a function body, or if there are any nested blocks then
413 : : create a BLOCK node to record them for the life of this function. */
414 : 2327593 : if (keep || functionbody)
415 : 689633 : block_node = build_block (keep ? decl_chain : 0, subblock_chain, 0, 0);
416 : :
417 : : /* Record the BLOCK node just built as the subblock its enclosing scope. */
418 : 3324853 : for (subblock_node = subblock_chain; subblock_node;
419 : 997260 : subblock_node = BLOCK_CHAIN (subblock_node))
420 : 997260 : BLOCK_SUPERCONTEXT (subblock_node) = block_node;
421 : :
422 : : /* Clear out the meanings of the local variables of this level. */
423 : :
424 : 4227157 : for (subblock_node = decl_chain; subblock_node;
425 : 1899564 : subblock_node = DECL_CHAIN (subblock_node))
426 : 1899564 : if (DECL_NAME (subblock_node) != 0)
427 : : /* If the identifier was used or addressed via a local extern decl,
428 : : don't forget that fact. */
429 : 881754 : if (DECL_EXTERNAL (subblock_node))
430 : : {
431 : 278 : if (TREE_USED (subblock_node))
432 : 58 : TREE_USED (DECL_NAME (subblock_node)) = 1;
433 : 278 : if (TREE_ADDRESSABLE (subblock_node))
434 : 50 : TREE_ADDRESSABLE (DECL_ASSEMBLER_NAME (subblock_node)) = 1;
435 : : }
436 : :
437 : : /* Pop the current level. */
438 : 2327593 : current_binding_level = current_binding_level->level_chain;
439 : :
440 : 2327593 : if (functionbody)
441 : : /* This is the top level block of a function. */
442 : 108172 : DECL_INITIAL (current_function_decl) = block_node;
443 : 2219421 : else if (current_binding_level == global_binding_level)
444 : : /* When using gfc_start_block/gfc_finish_block from middle-end hooks,
445 : : don't add newly created BLOCKs as subblocks of global_binding_level. */
446 : : ;
447 : 2215492 : else if (block_node)
448 : : {
449 : 578626 : current_binding_level->blocks
450 : 578626 : = block_chainon (current_binding_level->blocks, block_node);
451 : : }
452 : :
453 : : /* If we did not make a block for the level just exited, any blocks made for
454 : : inner levels (since they cannot be recorded as subblocks in that level)
455 : : must be carried forward so they will later become subblocks of something
456 : : else. */
457 : 1636866 : else if (subblock_chain)
458 : 195908 : current_binding_level->blocks
459 : 195908 : = block_chainon (current_binding_level->blocks, subblock_chain);
460 : 2327593 : if (block_node)
461 : 689633 : TREE_USED (block_node) = 1;
462 : :
463 : 2327593 : return block_node;
464 : : }
465 : :
466 : :
467 : : /* Records a ..._DECL node DECL as belonging to the current lexical scope.
468 : : Returns the ..._DECL node. */
469 : :
470 : : tree
471 : 138785056 : pushdecl (tree decl)
472 : : {
473 : 138785056 : if (global_bindings_p ())
474 : 136885492 : DECL_CONTEXT (decl) = current_translation_unit;
475 : : else
476 : : {
477 : : /* External objects aren't nested. For debug info insert a copy
478 : : of the decl into the binding level. */
479 : 1899564 : if (DECL_EXTERNAL (decl))
480 : : {
481 : 278 : tree orig = decl;
482 : 278 : decl = copy_node (decl);
483 : 278 : DECL_CONTEXT (orig) = NULL_TREE;
484 : : }
485 : 1899564 : DECL_CONTEXT (decl) = current_function_decl;
486 : : }
487 : :
488 : : /* Put the declaration on the list. */
489 : 138785056 : DECL_CHAIN (decl) = current_binding_level->names;
490 : 138785056 : current_binding_level->names = decl;
491 : :
492 : : /* For the declaration of a type, set its name if it is not already set. */
493 : :
494 : 138785056 : if (TREE_CODE (decl) == TYPE_DECL && TYPE_NAME (TREE_TYPE (decl)) == 0)
495 : : {
496 : 673413 : if (DECL_SOURCE_LINE (decl) == 0)
497 : 673413 : TYPE_NAME (TREE_TYPE (decl)) = decl;
498 : : else
499 : 0 : TYPE_NAME (TREE_TYPE (decl)) = DECL_NAME (decl);
500 : : }
501 : :
502 : 138785056 : return decl;
503 : : }
504 : :
505 : :
506 : : /* Like pushdecl, only it places X in GLOBAL_BINDING_LEVEL. */
507 : :
508 : : tree
509 : 21558 : pushdecl_top_level (tree x)
510 : : {
511 : 21558 : tree t;
512 : 21558 : struct binding_level *b = current_binding_level;
513 : :
514 : 21558 : current_binding_level = global_binding_level;
515 : 21558 : t = pushdecl (x);
516 : 21558 : current_binding_level = b;
517 : 21558 : return t;
518 : : }
519 : :
520 : : #ifndef CHAR_TYPE_SIZE
521 : : #define CHAR_TYPE_SIZE BITS_PER_UNIT
522 : : #endif
523 : :
524 : : #ifndef INT_TYPE_SIZE
525 : : #define INT_TYPE_SIZE BITS_PER_WORD
526 : : #endif
527 : :
528 : : #undef SIZE_TYPE
529 : : #define SIZE_TYPE "long unsigned int"
530 : :
531 : : /* Create tree nodes for the basic scalar types of Fortran 95,
532 : : and some nodes representing standard constants (0, 1, (void *) 0).
533 : : Initialize the global binding level.
534 : : Make definitions for built-in primitive functions. */
535 : : static void
536 : 30591 : gfc_init_decl_processing (void)
537 : : {
538 : 30591 : current_function_decl = NULL;
539 : 30591 : current_binding_level = NULL_BINDING_LEVEL;
540 : 30591 : free_binding_level = NULL_BINDING_LEVEL;
541 : :
542 : : /* Make the binding_level structure for global names. We move all
543 : : variables that are in a COMMON block to this binding level. */
544 : 30591 : pushlevel ();
545 : 30591 : global_binding_level = current_binding_level;
546 : :
547 : : /* Build common tree nodes. char_type_node is unsigned because we
548 : : only use it for actual characters, not for INTEGER(1). */
549 : 30591 : build_common_tree_nodes (false);
550 : :
551 : : /* Set up F95 type nodes. */
552 : 30591 : gfc_init_kinds ();
553 : 30591 : gfc_init_types ();
554 : 30591 : gfc_init_c_interop_kinds ();
555 : 30591 : }
556 : :
557 : :
558 : : /* Builtin function initialization. */
559 : :
560 : : static tree
561 : 131746840 : gfc_builtin_function (tree decl)
562 : : {
563 : 131746840 : pushdecl (decl);
564 : 131746840 : return decl;
565 : : }
566 : :
567 : : /* So far we need just these 12 attribute types. */
568 : : #define ATTR_NULL 0
569 : : #define ATTR_LEAF_LIST (ECF_LEAF)
570 : : #define ATTR_NOTHROW_LEAF_LIST (ECF_NOTHROW | ECF_LEAF)
571 : : #define ATTR_NOTHROW_LEAF_MALLOC_LIST (ECF_NOTHROW | ECF_LEAF | ECF_MALLOC)
572 : : #define ATTR_CONST_NOTHROW_LEAF_LIST (ECF_NOTHROW | ECF_LEAF | ECF_CONST)
573 : : #define ATTR_PURE_NOTHROW_LEAF_LIST (ECF_NOTHROW | ECF_LEAF | ECF_PURE)
574 : : #define ATTR_NOTHROW_LIST (ECF_NOTHROW)
575 : : #define ATTR_CONST_NOTHROW_LIST (ECF_NOTHROW | ECF_CONST)
576 : : #define ATTR_ALLOC_WARN_UNUSED_RESULT_SIZE_2_NOTHROW_LIST \
577 : : (ECF_NOTHROW | ECF_LEAF | ECF_MALLOC)
578 : : #define ATTR_ALLOC_WARN_UNUSED_RESULT_SIZE_2_NOTHROW_LEAF_LIST \
579 : : (ECF_NOTHROW | ECF_LEAF)
580 : : #define ATTR_COLD_NORETURN_NOTHROW_LEAF_LIST \
581 : : (ECF_COLD | ECF_NORETURN | \
582 : : ECF_NOTHROW | ECF_LEAF)
583 : : #define ATTR_PURE_NOTHROW_LIST (ECF_PURE | ECF_NOTHROW)
584 : :
585 : : static void
586 : 18680759 : gfc_define_builtin (const char *name, tree type, enum built_in_function code,
587 : : const char *library_name, int attr)
588 : : {
589 : 18680759 : tree decl;
590 : :
591 : 18680759 : decl = add_builtin_function (name, type, code, BUILT_IN_NORMAL,
592 : : library_name, NULL_TREE);
593 : 18680759 : set_call_expr_flags (decl, attr);
594 : :
595 : 18680759 : set_builtin_decl (code, decl, true);
596 : 18680759 : }
597 : :
598 : :
599 : : #define DO_DEFINE_MATH_BUILTIN(code, name, argtype, tbase) \
600 : : gfc_define_builtin ("__builtin_" name "l", tbase##longdouble[argtype], \
601 : : BUILT_IN_ ## code ## L, name "l", \
602 : : ATTR_CONST_NOTHROW_LEAF_LIST); \
603 : : gfc_define_builtin ("__builtin_" name, tbase##double[argtype], \
604 : : BUILT_IN_ ## code, name, \
605 : : ATTR_CONST_NOTHROW_LEAF_LIST); \
606 : : gfc_define_builtin ("__builtin_" name "f", tbase##float[argtype], \
607 : : BUILT_IN_ ## code ## F, name "f", \
608 : : ATTR_CONST_NOTHROW_LEAF_LIST);
609 : :
610 : : #define DEFINE_MATH_BUILTIN(code, name, argtype) \
611 : : DO_DEFINE_MATH_BUILTIN (code, name, argtype, mfunc_)
612 : :
613 : : #define DEFINE_MATH_BUILTIN_C(code, name, argtype) \
614 : : DO_DEFINE_MATH_BUILTIN (code, name, argtype, mfunc_) \
615 : : DO_DEFINE_MATH_BUILTIN (C##code, "c" name, argtype, mfunc_c)
616 : :
617 : :
618 : : /* Create function types for builtin functions. */
619 : :
620 : : static void
621 : 183450 : build_builtin_fntypes (tree *fntype, tree type)
622 : : {
623 : : /* type (*) (type) */
624 : 183450 : fntype[0] = build_function_type_list (type, type, NULL_TREE);
625 : : /* type (*) (type, type) */
626 : 183450 : fntype[1] = build_function_type_list (type, type, type, NULL_TREE);
627 : : /* type (*) (type, int) */
628 : 183450 : fntype[2] = build_function_type_list (type,
629 : : type, integer_type_node, NULL_TREE);
630 : : /* type (*) (void) */
631 : 183450 : fntype[3] = build_function_type_list (type, NULL_TREE);
632 : : /* type (*) (type, &int) */
633 : 183450 : fntype[4] = build_function_type_list (type, type,
634 : : build_pointer_type (integer_type_node),
635 : : NULL_TREE);
636 : : /* type (*) (int, type) */
637 : 183450 : fntype[5] = build_function_type_list (type,
638 : : integer_type_node, type, NULL_TREE);
639 : 183450 : }
640 : :
641 : :
642 : : static tree
643 : 152875 : builtin_type_for_size (int size, bool unsignedp)
644 : : {
645 : 152875 : tree type = gfc_type_for_size (size, unsignedp);
646 : 152875 : return type ? type : error_mark_node;
647 : : }
648 : :
649 : : /* Initialization of builtin function nodes. */
650 : :
651 : : static void
652 : 30575 : gfc_init_builtin_functions (void)
653 : : {
654 : 30575 : enum builtin_type
655 : : {
656 : : #define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
657 : : #define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
658 : : #define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
659 : : #define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
660 : : #define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
661 : : #define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
662 : : #define DEF_FUNCTION_TYPE_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) NAME,
663 : : #define DEF_FUNCTION_TYPE_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
664 : : ARG6) NAME,
665 : : #define DEF_FUNCTION_TYPE_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
666 : : ARG6, ARG7) NAME,
667 : : #define DEF_FUNCTION_TYPE_8(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
668 : : ARG6, ARG7, ARG8) NAME,
669 : : #define DEF_FUNCTION_TYPE_9(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
670 : : ARG6, ARG7, ARG8, ARG9) NAME,
671 : : #define DEF_FUNCTION_TYPE_10(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
672 : : ARG6, ARG7, ARG8, ARG9, ARG10) NAME,
673 : : #define DEF_FUNCTION_TYPE_11(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
674 : : ARG6, ARG7, ARG8, ARG9, ARG10, ARG11) NAME,
675 : : #define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
676 : : #define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
677 : : #define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
678 : : #define DEF_FUNCTION_TYPE_VAR_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
679 : : ARG6) NAME,
680 : : #define DEF_FUNCTION_TYPE_VAR_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
681 : : ARG6, ARG7) NAME,
682 : : #define DEF_POINTER_TYPE(NAME, TYPE) NAME,
683 : : #include "types.def"
684 : : #undef DEF_PRIMITIVE_TYPE
685 : : #undef DEF_FUNCTION_TYPE_0
686 : : #undef DEF_FUNCTION_TYPE_1
687 : : #undef DEF_FUNCTION_TYPE_2
688 : : #undef DEF_FUNCTION_TYPE_3
689 : : #undef DEF_FUNCTION_TYPE_4
690 : : #undef DEF_FUNCTION_TYPE_5
691 : : #undef DEF_FUNCTION_TYPE_6
692 : : #undef DEF_FUNCTION_TYPE_7
693 : : #undef DEF_FUNCTION_TYPE_8
694 : : #undef DEF_FUNCTION_TYPE_9
695 : : #undef DEF_FUNCTION_TYPE_10
696 : : #undef DEF_FUNCTION_TYPE_11
697 : : #undef DEF_FUNCTION_TYPE_VAR_0
698 : : #undef DEF_FUNCTION_TYPE_VAR_1
699 : : #undef DEF_FUNCTION_TYPE_VAR_2
700 : : #undef DEF_FUNCTION_TYPE_VAR_6
701 : : #undef DEF_FUNCTION_TYPE_VAR_7
702 : : #undef DEF_POINTER_TYPE
703 : : BT_LAST
704 : : };
705 : :
706 : 30575 : tree mfunc_float[6];
707 : 30575 : tree mfunc_double[6];
708 : 30575 : tree mfunc_longdouble[6];
709 : 30575 : tree mfunc_cfloat[6];
710 : 30575 : tree mfunc_cdouble[6];
711 : 30575 : tree mfunc_clongdouble[6];
712 : 30575 : tree func_cfloat_float, func_float_cfloat;
713 : 30575 : tree func_cdouble_double, func_double_cdouble;
714 : 30575 : tree func_clongdouble_longdouble, func_longdouble_clongdouble;
715 : 30575 : tree func_float_floatp_floatp;
716 : 30575 : tree func_double_doublep_doublep;
717 : 30575 : tree func_longdouble_longdoublep_longdoublep;
718 : 30575 : tree ftype, ptype;
719 : 30575 : tree builtin_types[(int) BT_LAST + 1];
720 : :
721 : 30575 : int attr;
722 : :
723 : 30575 : build_builtin_fntypes (mfunc_float, float_type_node);
724 : 30575 : build_builtin_fntypes (mfunc_double, double_type_node);
725 : 30575 : build_builtin_fntypes (mfunc_longdouble, long_double_type_node);
726 : 30575 : build_builtin_fntypes (mfunc_cfloat, complex_float_type_node);
727 : 30575 : build_builtin_fntypes (mfunc_cdouble, complex_double_type_node);
728 : 30575 : build_builtin_fntypes (mfunc_clongdouble, complex_long_double_type_node);
729 : :
730 : 30575 : func_cfloat_float = build_function_type_list (float_type_node,
731 : : complex_float_type_node,
732 : : NULL_TREE);
733 : :
734 : 30575 : func_float_cfloat = build_function_type_list (complex_float_type_node,
735 : : float_type_node, NULL_TREE);
736 : :
737 : 30575 : func_cdouble_double = build_function_type_list (double_type_node,
738 : : complex_double_type_node,
739 : : NULL_TREE);
740 : :
741 : 30575 : func_double_cdouble = build_function_type_list (complex_double_type_node,
742 : : double_type_node, NULL_TREE);
743 : :
744 : 30575 : func_clongdouble_longdouble
745 : 30575 : = build_function_type_list (long_double_type_node,
746 : : complex_long_double_type_node, NULL_TREE);
747 : :
748 : 30575 : func_longdouble_clongdouble
749 : 30575 : = build_function_type_list (complex_long_double_type_node,
750 : : long_double_type_node, NULL_TREE);
751 : :
752 : 30575 : ptype = build_pointer_type (float_type_node);
753 : 30575 : func_float_floatp_floatp
754 : 30575 : = build_function_type_list (void_type_node, float_type_node, ptype, ptype,
755 : : NULL_TREE);
756 : :
757 : 30575 : ptype = build_pointer_type (double_type_node);
758 : 30575 : func_double_doublep_doublep
759 : 30575 : = build_function_type_list (void_type_node, double_type_node, ptype,
760 : : ptype, NULL_TREE);
761 : :
762 : 30575 : ptype = build_pointer_type (long_double_type_node);
763 : 30575 : func_longdouble_longdoublep_longdoublep
764 : 30575 : = build_function_type_list (void_type_node, long_double_type_node, ptype,
765 : : ptype, NULL_TREE);
766 : :
767 : : /* Non-math builtins are defined manually, so they're not included here. */
768 : : #define OTHER_BUILTIN(ID,NAME,TYPE,CONST)
769 : :
770 : : #include "mathbuiltins.def"
771 : :
772 : 30575 : gfc_define_builtin ("__builtin_roundl", mfunc_longdouble[0],
773 : : BUILT_IN_ROUNDL, "roundl", ATTR_CONST_NOTHROW_LEAF_LIST);
774 : 30575 : gfc_define_builtin ("__builtin_round", mfunc_double[0],
775 : : BUILT_IN_ROUND, "round", ATTR_CONST_NOTHROW_LEAF_LIST);
776 : 30575 : gfc_define_builtin ("__builtin_roundf", mfunc_float[0],
777 : : BUILT_IN_ROUNDF, "roundf", ATTR_CONST_NOTHROW_LEAF_LIST);
778 : :
779 : 30575 : gfc_define_builtin ("__builtin_truncl", mfunc_longdouble[0],
780 : : BUILT_IN_TRUNCL, "truncl", ATTR_CONST_NOTHROW_LEAF_LIST);
781 : 30575 : gfc_define_builtin ("__builtin_trunc", mfunc_double[0],
782 : : BUILT_IN_TRUNC, "trunc", ATTR_CONST_NOTHROW_LEAF_LIST);
783 : 30575 : gfc_define_builtin ("__builtin_truncf", mfunc_float[0],
784 : : BUILT_IN_TRUNCF, "truncf", ATTR_CONST_NOTHROW_LEAF_LIST);
785 : :
786 : 30575 : gfc_define_builtin ("__builtin_cabsl", func_clongdouble_longdouble,
787 : : BUILT_IN_CABSL, "cabsl", ATTR_CONST_NOTHROW_LEAF_LIST);
788 : 30575 : gfc_define_builtin ("__builtin_cabs", func_cdouble_double,
789 : : BUILT_IN_CABS, "cabs", ATTR_CONST_NOTHROW_LEAF_LIST);
790 : 30575 : gfc_define_builtin ("__builtin_cabsf", func_cfloat_float,
791 : : BUILT_IN_CABSF, "cabsf", ATTR_CONST_NOTHROW_LEAF_LIST);
792 : :
793 : 30575 : gfc_define_builtin ("__builtin_copysignl", mfunc_longdouble[1],
794 : : BUILT_IN_COPYSIGNL, "copysignl",
795 : : ATTR_CONST_NOTHROW_LEAF_LIST);
796 : 30575 : gfc_define_builtin ("__builtin_copysign", mfunc_double[1],
797 : : BUILT_IN_COPYSIGN, "copysign",
798 : : ATTR_CONST_NOTHROW_LEAF_LIST);
799 : 30575 : gfc_define_builtin ("__builtin_copysignf", mfunc_float[1],
800 : : BUILT_IN_COPYSIGNF, "copysignf",
801 : : ATTR_CONST_NOTHROW_LEAF_LIST);
802 : :
803 : 30575 : gfc_define_builtin ("__builtin_nextafterl", mfunc_longdouble[1],
804 : : BUILT_IN_NEXTAFTERL, "nextafterl",
805 : : ATTR_CONST_NOTHROW_LEAF_LIST);
806 : 30575 : gfc_define_builtin ("__builtin_nextafter", mfunc_double[1],
807 : : BUILT_IN_NEXTAFTER, "nextafter",
808 : : ATTR_CONST_NOTHROW_LEAF_LIST);
809 : 30575 : gfc_define_builtin ("__builtin_nextafterf", mfunc_float[1],
810 : : BUILT_IN_NEXTAFTERF, "nextafterf",
811 : : ATTR_CONST_NOTHROW_LEAF_LIST);
812 : :
813 : : /* Some built-ins depend on rounding mode. Depending on compilation options, they
814 : : will be "pure" or "const". */
815 : 30575 : attr = flag_rounding_math ? ATTR_PURE_NOTHROW_LEAF_LIST : ATTR_CONST_NOTHROW_LEAF_LIST;
816 : :
817 : 30575 : gfc_define_builtin ("__builtin_rintl", mfunc_longdouble[0],
818 : : BUILT_IN_RINTL, "rintl", attr);
819 : 30575 : gfc_define_builtin ("__builtin_rint", mfunc_double[0],
820 : : BUILT_IN_RINT, "rint", attr);
821 : 30575 : gfc_define_builtin ("__builtin_rintf", mfunc_float[0],
822 : : BUILT_IN_RINTF, "rintf", attr);
823 : :
824 : 30575 : gfc_define_builtin ("__builtin_remainderl", mfunc_longdouble[1],
825 : : BUILT_IN_REMAINDERL, "remainderl", attr);
826 : 30575 : gfc_define_builtin ("__builtin_remainder", mfunc_double[1],
827 : : BUILT_IN_REMAINDER, "remainder", attr);
828 : 30575 : gfc_define_builtin ("__builtin_remainderf", mfunc_float[1],
829 : : BUILT_IN_REMAINDERF, "remainderf", attr);
830 : :
831 : 30575 : gfc_define_builtin ("__builtin_logbl", mfunc_longdouble[0],
832 : : BUILT_IN_LOGBL, "logbl", ATTR_CONST_NOTHROW_LEAF_LIST);
833 : 30575 : gfc_define_builtin ("__builtin_logb", mfunc_double[0],
834 : : BUILT_IN_LOGB, "logb", ATTR_CONST_NOTHROW_LEAF_LIST);
835 : 30575 : gfc_define_builtin ("__builtin_logbf", mfunc_float[0],
836 : : BUILT_IN_LOGBF, "logbf", ATTR_CONST_NOTHROW_LEAF_LIST);
837 : :
838 : :
839 : 30575 : gfc_define_builtin ("__builtin_frexpl", mfunc_longdouble[4],
840 : : BUILT_IN_FREXPL, "frexpl", ATTR_NOTHROW_LEAF_LIST);
841 : 30575 : gfc_define_builtin ("__builtin_frexp", mfunc_double[4],
842 : : BUILT_IN_FREXP, "frexp", ATTR_NOTHROW_LEAF_LIST);
843 : 30575 : gfc_define_builtin ("__builtin_frexpf", mfunc_float[4],
844 : : BUILT_IN_FREXPF, "frexpf", ATTR_NOTHROW_LEAF_LIST);
845 : :
846 : 30575 : gfc_define_builtin ("__builtin_fabsl", mfunc_longdouble[0],
847 : : BUILT_IN_FABSL, "fabsl", ATTR_CONST_NOTHROW_LEAF_LIST);
848 : 30575 : gfc_define_builtin ("__builtin_fabs", mfunc_double[0],
849 : : BUILT_IN_FABS, "fabs", ATTR_CONST_NOTHROW_LEAF_LIST);
850 : 30575 : gfc_define_builtin ("__builtin_fabsf", mfunc_float[0],
851 : : BUILT_IN_FABSF, "fabsf", ATTR_CONST_NOTHROW_LEAF_LIST);
852 : :
853 : 30575 : gfc_define_builtin ("__builtin_scalbnl", mfunc_longdouble[2],
854 : : BUILT_IN_SCALBNL, "scalbnl", ATTR_CONST_NOTHROW_LEAF_LIST);
855 : 30575 : gfc_define_builtin ("__builtin_scalbn", mfunc_double[2],
856 : : BUILT_IN_SCALBN, "scalbn", ATTR_CONST_NOTHROW_LEAF_LIST);
857 : 30575 : gfc_define_builtin ("__builtin_scalbnf", mfunc_float[2],
858 : : BUILT_IN_SCALBNF, "scalbnf", ATTR_CONST_NOTHROW_LEAF_LIST);
859 : :
860 : 30575 : gfc_define_builtin ("__builtin_fmaxl", mfunc_longdouble[1],
861 : : BUILT_IN_FMAXL, "fmaxl", ATTR_CONST_NOTHROW_LEAF_LIST);
862 : 30575 : gfc_define_builtin ("__builtin_fmax", mfunc_double[1],
863 : : BUILT_IN_FMAX, "fmax", ATTR_CONST_NOTHROW_LEAF_LIST);
864 : 30575 : gfc_define_builtin ("__builtin_fmaxf", mfunc_float[1],
865 : : BUILT_IN_FMAXF, "fmaxf", ATTR_CONST_NOTHROW_LEAF_LIST);
866 : :
867 : 30575 : gfc_define_builtin ("__builtin_fminl", mfunc_longdouble[1],
868 : : BUILT_IN_FMINL, "fminl", ATTR_CONST_NOTHROW_LEAF_LIST);
869 : 30575 : gfc_define_builtin ("__builtin_fmin", mfunc_double[1],
870 : : BUILT_IN_FMIN, "fmin", ATTR_CONST_NOTHROW_LEAF_LIST);
871 : 30575 : gfc_define_builtin ("__builtin_fminf", mfunc_float[1],
872 : : BUILT_IN_FMINF, "fminf", ATTR_CONST_NOTHROW_LEAF_LIST);
873 : :
874 : 30575 : gfc_define_builtin ("__builtin_fmodl", mfunc_longdouble[1],
875 : : BUILT_IN_FMODL, "fmodl", ATTR_CONST_NOTHROW_LEAF_LIST);
876 : 30575 : gfc_define_builtin ("__builtin_fmod", mfunc_double[1],
877 : : BUILT_IN_FMOD, "fmod", ATTR_CONST_NOTHROW_LEAF_LIST);
878 : 30575 : gfc_define_builtin ("__builtin_fmodf", mfunc_float[1],
879 : : BUILT_IN_FMODF, "fmodf", ATTR_CONST_NOTHROW_LEAF_LIST);
880 : :
881 : : /* iround{f,,l}, lround{f,,l} and llround{f,,l} */
882 : 30575 : ftype = build_function_type_list (integer_type_node,
883 : : float_type_node, NULL_TREE);
884 : 30575 : gfc_define_builtin("__builtin_iroundf", ftype, BUILT_IN_IROUNDF,
885 : : "iroundf", ATTR_CONST_NOTHROW_LEAF_LIST);
886 : 30575 : ftype = build_function_type_list (long_integer_type_node,
887 : : float_type_node, NULL_TREE);
888 : 30575 : gfc_define_builtin ("__builtin_lroundf", ftype, BUILT_IN_LROUNDF,
889 : : "lroundf", ATTR_CONST_NOTHROW_LEAF_LIST);
890 : 30575 : ftype = build_function_type_list (long_long_integer_type_node,
891 : : float_type_node, NULL_TREE);
892 : 30575 : gfc_define_builtin ("__builtin_llroundf", ftype, BUILT_IN_LLROUNDF,
893 : : "llroundf", ATTR_CONST_NOTHROW_LEAF_LIST);
894 : :
895 : 30575 : ftype = build_function_type_list (integer_type_node,
896 : : double_type_node, NULL_TREE);
897 : 30575 : gfc_define_builtin("__builtin_iround", ftype, BUILT_IN_IROUND,
898 : : "iround", ATTR_CONST_NOTHROW_LEAF_LIST);
899 : 30575 : ftype = build_function_type_list (long_integer_type_node,
900 : : double_type_node, NULL_TREE);
901 : 30575 : gfc_define_builtin ("__builtin_lround", ftype, BUILT_IN_LROUND,
902 : : "lround", ATTR_CONST_NOTHROW_LEAF_LIST);
903 : 30575 : ftype = build_function_type_list (long_long_integer_type_node,
904 : : double_type_node, NULL_TREE);
905 : 30575 : gfc_define_builtin ("__builtin_llround", ftype, BUILT_IN_LLROUND,
906 : : "llround", ATTR_CONST_NOTHROW_LEAF_LIST);
907 : :
908 : 30575 : ftype = build_function_type_list (integer_type_node,
909 : : long_double_type_node, NULL_TREE);
910 : 30575 : gfc_define_builtin("__builtin_iroundl", ftype, BUILT_IN_IROUNDL,
911 : : "iroundl", ATTR_CONST_NOTHROW_LEAF_LIST);
912 : 30575 : ftype = build_function_type_list (long_integer_type_node,
913 : : long_double_type_node, NULL_TREE);
914 : 30575 : gfc_define_builtin ("__builtin_lroundl", ftype, BUILT_IN_LROUNDL,
915 : : "lroundl", ATTR_CONST_NOTHROW_LEAF_LIST);
916 : 30575 : ftype = build_function_type_list (long_long_integer_type_node,
917 : : long_double_type_node, NULL_TREE);
918 : 30575 : gfc_define_builtin ("__builtin_llroundl", ftype, BUILT_IN_LLROUNDL,
919 : : "llroundl", ATTR_CONST_NOTHROW_LEAF_LIST);
920 : :
921 : : /* These are used to implement the ** operator. */
922 : 30575 : gfc_define_builtin ("__builtin_powl", mfunc_longdouble[1],
923 : : BUILT_IN_POWL, "powl", ATTR_CONST_NOTHROW_LEAF_LIST);
924 : 30575 : gfc_define_builtin ("__builtin_pow", mfunc_double[1],
925 : : BUILT_IN_POW, "pow", ATTR_CONST_NOTHROW_LEAF_LIST);
926 : 30575 : gfc_define_builtin ("__builtin_powf", mfunc_float[1],
927 : : BUILT_IN_POWF, "powf", ATTR_CONST_NOTHROW_LEAF_LIST);
928 : 30575 : gfc_define_builtin ("__builtin_cpowl", mfunc_clongdouble[1],
929 : : BUILT_IN_CPOWL, "cpowl", ATTR_CONST_NOTHROW_LEAF_LIST);
930 : 30575 : gfc_define_builtin ("__builtin_cpow", mfunc_cdouble[1],
931 : : BUILT_IN_CPOW, "cpow", ATTR_CONST_NOTHROW_LEAF_LIST);
932 : 30575 : gfc_define_builtin ("__builtin_cpowf", mfunc_cfloat[1],
933 : : BUILT_IN_CPOWF, "cpowf", ATTR_CONST_NOTHROW_LEAF_LIST);
934 : 30575 : gfc_define_builtin ("__builtin_powil", mfunc_longdouble[2],
935 : : BUILT_IN_POWIL, "powil", ATTR_CONST_NOTHROW_LEAF_LIST);
936 : 30575 : gfc_define_builtin ("__builtin_powi", mfunc_double[2],
937 : : BUILT_IN_POWI, "powi", ATTR_CONST_NOTHROW_LEAF_LIST);
938 : 30575 : gfc_define_builtin ("__builtin_powif", mfunc_float[2],
939 : : BUILT_IN_POWIF, "powif", ATTR_CONST_NOTHROW_LEAF_LIST);
940 : :
941 : :
942 : 30575 : if (targetm.libc_has_function (function_c99_math_complex, NULL_TREE))
943 : : {
944 : 30575 : gfc_define_builtin ("__builtin_cbrtl", mfunc_longdouble[0],
945 : : BUILT_IN_CBRTL, "cbrtl",
946 : : ATTR_CONST_NOTHROW_LEAF_LIST);
947 : 30575 : gfc_define_builtin ("__builtin_cbrt", mfunc_double[0],
948 : : BUILT_IN_CBRT, "cbrt",
949 : : ATTR_CONST_NOTHROW_LEAF_LIST);
950 : 30575 : gfc_define_builtin ("__builtin_cbrtf", mfunc_float[0],
951 : : BUILT_IN_CBRTF, "cbrtf",
952 : : ATTR_CONST_NOTHROW_LEAF_LIST);
953 : 30575 : gfc_define_builtin ("__builtin_cexpil", func_longdouble_clongdouble,
954 : : BUILT_IN_CEXPIL, "cexpil",
955 : : ATTR_CONST_NOTHROW_LEAF_LIST);
956 : 30575 : gfc_define_builtin ("__builtin_cexpi", func_double_cdouble,
957 : : BUILT_IN_CEXPI, "cexpi",
958 : : ATTR_CONST_NOTHROW_LEAF_LIST);
959 : 30575 : gfc_define_builtin ("__builtin_cexpif", func_float_cfloat,
960 : : BUILT_IN_CEXPIF, "cexpif",
961 : : ATTR_CONST_NOTHROW_LEAF_LIST);
962 : : }
963 : :
964 : 30575 : if (targetm.libc_has_function (function_sincos, NULL_TREE))
965 : : {
966 : 30575 : gfc_define_builtin ("__builtin_sincosl",
967 : : func_longdouble_longdoublep_longdoublep,
968 : : BUILT_IN_SINCOSL, "sincosl", ATTR_NOTHROW_LEAF_LIST);
969 : 30575 : gfc_define_builtin ("__builtin_sincos", func_double_doublep_doublep,
970 : : BUILT_IN_SINCOS, "sincos", ATTR_NOTHROW_LEAF_LIST);
971 : 30575 : gfc_define_builtin ("__builtin_sincosf", func_float_floatp_floatp,
972 : : BUILT_IN_SINCOSF, "sincosf", ATTR_NOTHROW_LEAF_LIST);
973 : : }
974 : :
975 : : /* For LEADZ, TRAILZ, POPCNT and POPPAR. */
976 : 30575 : ftype = build_function_type_list (integer_type_node,
977 : : unsigned_type_node, NULL_TREE);
978 : 30575 : gfc_define_builtin ("__builtin_clz", ftype, BUILT_IN_CLZ,
979 : : "__builtin_clz", ATTR_CONST_NOTHROW_LEAF_LIST);
980 : 30575 : gfc_define_builtin ("__builtin_ctz", ftype, BUILT_IN_CTZ,
981 : : "__builtin_ctz", ATTR_CONST_NOTHROW_LEAF_LIST);
982 : 30575 : gfc_define_builtin ("__builtin_parity", ftype, BUILT_IN_PARITY,
983 : : "__builtin_parity", ATTR_CONST_NOTHROW_LEAF_LIST);
984 : 30575 : gfc_define_builtin ("__builtin_popcount", ftype, BUILT_IN_POPCOUNT,
985 : : "__builtin_popcount", ATTR_CONST_NOTHROW_LEAF_LIST);
986 : :
987 : 30575 : ftype = build_function_type_list (integer_type_node,
988 : : long_unsigned_type_node, NULL_TREE);
989 : 30575 : gfc_define_builtin ("__builtin_clzl", ftype, BUILT_IN_CLZL,
990 : : "__builtin_clzl", ATTR_CONST_NOTHROW_LEAF_LIST);
991 : 30575 : gfc_define_builtin ("__builtin_ctzl", ftype, BUILT_IN_CTZL,
992 : : "__builtin_ctzl", ATTR_CONST_NOTHROW_LEAF_LIST);
993 : 30575 : gfc_define_builtin ("__builtin_parityl", ftype, BUILT_IN_PARITYL,
994 : : "__builtin_parityl", ATTR_CONST_NOTHROW_LEAF_LIST);
995 : 30575 : gfc_define_builtin ("__builtin_popcountl", ftype, BUILT_IN_POPCOUNTL,
996 : : "__builtin_popcountl", ATTR_CONST_NOTHROW_LEAF_LIST);
997 : :
998 : 30575 : ftype = build_function_type_list (integer_type_node,
999 : : long_long_unsigned_type_node, NULL_TREE);
1000 : 30575 : gfc_define_builtin ("__builtin_clzll", ftype, BUILT_IN_CLZLL,
1001 : : "__builtin_clzll", ATTR_CONST_NOTHROW_LEAF_LIST);
1002 : 30575 : gfc_define_builtin ("__builtin_ctzll", ftype, BUILT_IN_CTZLL,
1003 : : "__builtin_ctzll", ATTR_CONST_NOTHROW_LEAF_LIST);
1004 : 30575 : gfc_define_builtin ("__builtin_parityll", ftype, BUILT_IN_PARITYLL,
1005 : : "__builtin_parityll", ATTR_CONST_NOTHROW_LEAF_LIST);
1006 : 30575 : gfc_define_builtin ("__builtin_popcountll", ftype, BUILT_IN_POPCOUNTLL,
1007 : : "__builtin_popcountll", ATTR_CONST_NOTHROW_LEAF_LIST);
1008 : :
1009 : : /* Other builtin functions we use. */
1010 : :
1011 : 30575 : ftype = build_function_type_list (long_integer_type_node,
1012 : : long_integer_type_node,
1013 : : long_integer_type_node, NULL_TREE);
1014 : 30575 : gfc_define_builtin ("__builtin_expect", ftype, BUILT_IN_EXPECT,
1015 : : "__builtin_expect", ATTR_CONST_NOTHROW_LEAF_LIST);
1016 : :
1017 : 30575 : ftype = build_function_type_list (void_type_node,
1018 : : pvoid_type_node, NULL_TREE);
1019 : 30575 : gfc_define_builtin ("__builtin_free", ftype, BUILT_IN_FREE,
1020 : : "free", ATTR_NOTHROW_LEAF_LIST);
1021 : :
1022 : 30575 : ftype = build_function_type_list (pvoid_type_node,
1023 : : size_type_node, NULL_TREE);
1024 : 30575 : gfc_define_builtin ("__builtin_malloc", ftype, BUILT_IN_MALLOC,
1025 : : "malloc", ATTR_NOTHROW_LEAF_MALLOC_LIST);
1026 : :
1027 : 30575 : ftype = build_function_type_list (pvoid_type_node, size_type_node,
1028 : : size_type_node, NULL_TREE);
1029 : 30575 : gfc_define_builtin ("__builtin_calloc", ftype, BUILT_IN_CALLOC,
1030 : : "calloc", ATTR_NOTHROW_LEAF_MALLOC_LIST);
1031 : 30575 : DECL_IS_MALLOC (builtin_decl_explicit (BUILT_IN_CALLOC)) = 1;
1032 : :
1033 : 30575 : ftype = build_function_type_list (pvoid_type_node, pvoid_type_node,
1034 : : size_type_node, NULL_TREE);
1035 : 30575 : gfc_define_builtin ("__builtin_realloc", ftype, BUILT_IN_REALLOC,
1036 : : "realloc", ATTR_NOTHROW_LEAF_LIST);
1037 : :
1038 : : /* Type-generic floating-point classification built-ins. */
1039 : :
1040 : 30575 : ftype = build_function_type (integer_type_node, NULL_TREE);
1041 : 30575 : gfc_define_builtin ("__builtin_isfinite", ftype, BUILT_IN_ISFINITE,
1042 : : "__builtin_isfinite", ATTR_CONST_NOTHROW_LEAF_LIST);
1043 : 30575 : gfc_define_builtin ("__builtin_isinf", ftype, BUILT_IN_ISINF,
1044 : : "__builtin_isinf", ATTR_CONST_NOTHROW_LEAF_LIST);
1045 : 30575 : gfc_define_builtin ("__builtin_isinf_sign", ftype, BUILT_IN_ISINF_SIGN,
1046 : : "__builtin_isinf_sign", ATTR_CONST_NOTHROW_LEAF_LIST);
1047 : 30575 : gfc_define_builtin ("__builtin_isnan", ftype, BUILT_IN_ISNAN,
1048 : : "__builtin_isnan", ATTR_CONST_NOTHROW_LEAF_LIST);
1049 : 30575 : gfc_define_builtin ("__builtin_isnormal", ftype, BUILT_IN_ISNORMAL,
1050 : : "__builtin_isnormal", ATTR_CONST_NOTHROW_LEAF_LIST);
1051 : 30575 : gfc_define_builtin ("__builtin_issignaling", ftype, BUILT_IN_ISSIGNALING,
1052 : : "__builtin_issignaling", ATTR_CONST_NOTHROW_LEAF_LIST);
1053 : 30575 : gfc_define_builtin ("__builtin_signbit", ftype, BUILT_IN_SIGNBIT,
1054 : : "__builtin_signbit", ATTR_CONST_NOTHROW_LEAF_LIST);
1055 : 30575 : gfc_define_builtin ("__builtin_fpclassify", ftype, BUILT_IN_FPCLASSIFY,
1056 : : "__builtin_fpclassify", ATTR_CONST_NOTHROW_LEAF_LIST);
1057 : :
1058 : 30575 : gfc_define_builtin ("__builtin_isless", ftype, BUILT_IN_ISLESS,
1059 : : "__builtin_isless", ATTR_CONST_NOTHROW_LEAF_LIST);
1060 : 30575 : gfc_define_builtin ("__builtin_islessequal", ftype, BUILT_IN_ISLESSEQUAL,
1061 : : "__builtin_islessequal", ATTR_CONST_NOTHROW_LEAF_LIST);
1062 : 30575 : gfc_define_builtin ("__builtin_islessgreater", ftype, BUILT_IN_ISLESSGREATER,
1063 : : "__builtin_islessgreater", ATTR_CONST_NOTHROW_LEAF_LIST);
1064 : 30575 : gfc_define_builtin ("__builtin_isgreater", ftype, BUILT_IN_ISGREATER,
1065 : : "__builtin_isgreater", ATTR_CONST_NOTHROW_LEAF_LIST);
1066 : 30575 : gfc_define_builtin ("__builtin_isgreaterequal", ftype,
1067 : : BUILT_IN_ISGREATEREQUAL, "__builtin_isgreaterequal",
1068 : : ATTR_CONST_NOTHROW_LEAF_LIST);
1069 : 30575 : gfc_define_builtin ("__builtin_isunordered", ftype, BUILT_IN_ISUNORDERED,
1070 : : "__builtin_isunordered", ATTR_CONST_NOTHROW_LEAF_LIST);
1071 : 30575 : gfc_define_builtin ("__builtin_iseqsig", ftype, BUILT_IN_ISEQSIG,
1072 : : "__builtin_iseqsig", ATTR_CONST_NOTHROW_LEAF_LIST);
1073 : :
1074 : :
1075 : : #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
1076 : : builtin_types[(int) ENUM] = VALUE;
1077 : : #define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
1078 : : builtin_types[(int) ENUM] \
1079 : : = build_function_type_list (builtin_types[(int) RETURN], \
1080 : : NULL_TREE);
1081 : : #define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
1082 : : builtin_types[(int) ENUM] \
1083 : : = build_function_type_list (builtin_types[(int) RETURN], \
1084 : : builtin_types[(int) ARG1], \
1085 : : NULL_TREE);
1086 : : #define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
1087 : : builtin_types[(int) ENUM] \
1088 : : = build_function_type_list (builtin_types[(int) RETURN], \
1089 : : builtin_types[(int) ARG1], \
1090 : : builtin_types[(int) ARG2], \
1091 : : NULL_TREE);
1092 : : #define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
1093 : : builtin_types[(int) ENUM] \
1094 : : = build_function_type_list (builtin_types[(int) RETURN], \
1095 : : builtin_types[(int) ARG1], \
1096 : : builtin_types[(int) ARG2], \
1097 : : builtin_types[(int) ARG3], \
1098 : : NULL_TREE);
1099 : : #define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
1100 : : builtin_types[(int) ENUM] \
1101 : : = build_function_type_list (builtin_types[(int) RETURN], \
1102 : : builtin_types[(int) ARG1], \
1103 : : builtin_types[(int) ARG2], \
1104 : : builtin_types[(int) ARG3], \
1105 : : builtin_types[(int) ARG4], \
1106 : : NULL_TREE);
1107 : : #define DEF_FUNCTION_TYPE_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
1108 : : builtin_types[(int) ENUM] \
1109 : : = build_function_type_list (builtin_types[(int) RETURN], \
1110 : : builtin_types[(int) ARG1], \
1111 : : builtin_types[(int) ARG2], \
1112 : : builtin_types[(int) ARG3], \
1113 : : builtin_types[(int) ARG4], \
1114 : : builtin_types[(int) ARG5], \
1115 : : NULL_TREE);
1116 : : #define DEF_FUNCTION_TYPE_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1117 : : ARG6) \
1118 : : builtin_types[(int) ENUM] \
1119 : : = build_function_type_list (builtin_types[(int) RETURN], \
1120 : : builtin_types[(int) ARG1], \
1121 : : builtin_types[(int) ARG2], \
1122 : : builtin_types[(int) ARG3], \
1123 : : builtin_types[(int) ARG4], \
1124 : : builtin_types[(int) ARG5], \
1125 : : builtin_types[(int) ARG6], \
1126 : : NULL_TREE);
1127 : : #define DEF_FUNCTION_TYPE_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1128 : : ARG6, ARG7) \
1129 : : builtin_types[(int) ENUM] \
1130 : : = build_function_type_list (builtin_types[(int) RETURN], \
1131 : : builtin_types[(int) ARG1], \
1132 : : builtin_types[(int) ARG2], \
1133 : : builtin_types[(int) ARG3], \
1134 : : builtin_types[(int) ARG4], \
1135 : : builtin_types[(int) ARG5], \
1136 : : builtin_types[(int) ARG6], \
1137 : : builtin_types[(int) ARG7], \
1138 : : NULL_TREE);
1139 : : #define DEF_FUNCTION_TYPE_8(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1140 : : ARG6, ARG7, ARG8) \
1141 : : builtin_types[(int) ENUM] \
1142 : : = build_function_type_list (builtin_types[(int) RETURN], \
1143 : : builtin_types[(int) ARG1], \
1144 : : builtin_types[(int) ARG2], \
1145 : : builtin_types[(int) ARG3], \
1146 : : builtin_types[(int) ARG4], \
1147 : : builtin_types[(int) ARG5], \
1148 : : builtin_types[(int) ARG6], \
1149 : : builtin_types[(int) ARG7], \
1150 : : builtin_types[(int) ARG8], \
1151 : : NULL_TREE);
1152 : : #define DEF_FUNCTION_TYPE_9(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1153 : : ARG6, ARG7, ARG8, ARG9) \
1154 : : builtin_types[(int) ENUM] \
1155 : : = build_function_type_list (builtin_types[(int) RETURN], \
1156 : : builtin_types[(int) ARG1], \
1157 : : builtin_types[(int) ARG2], \
1158 : : builtin_types[(int) ARG3], \
1159 : : builtin_types[(int) ARG4], \
1160 : : builtin_types[(int) ARG5], \
1161 : : builtin_types[(int) ARG6], \
1162 : : builtin_types[(int) ARG7], \
1163 : : builtin_types[(int) ARG8], \
1164 : : builtin_types[(int) ARG9], \
1165 : : NULL_TREE);
1166 : : #define DEF_FUNCTION_TYPE_10(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, \
1167 : : ARG5, ARG6, ARG7, ARG8, ARG9, ARG10) \
1168 : : builtin_types[(int) ENUM] \
1169 : : = build_function_type_list (builtin_types[(int) RETURN], \
1170 : : builtin_types[(int) ARG1], \
1171 : : builtin_types[(int) ARG2], \
1172 : : builtin_types[(int) ARG3], \
1173 : : builtin_types[(int) ARG4], \
1174 : : builtin_types[(int) ARG5], \
1175 : : builtin_types[(int) ARG6], \
1176 : : builtin_types[(int) ARG7], \
1177 : : builtin_types[(int) ARG8], \
1178 : : builtin_types[(int) ARG9], \
1179 : : builtin_types[(int) ARG10], \
1180 : : NULL_TREE);
1181 : : #define DEF_FUNCTION_TYPE_11(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, \
1182 : : ARG5, ARG6, ARG7, ARG8, ARG9, ARG10, ARG11)\
1183 : : builtin_types[(int) ENUM] \
1184 : : = build_function_type_list (builtin_types[(int) RETURN], \
1185 : : builtin_types[(int) ARG1], \
1186 : : builtin_types[(int) ARG2], \
1187 : : builtin_types[(int) ARG3], \
1188 : : builtin_types[(int) ARG4], \
1189 : : builtin_types[(int) ARG5], \
1190 : : builtin_types[(int) ARG6], \
1191 : : builtin_types[(int) ARG7], \
1192 : : builtin_types[(int) ARG8], \
1193 : : builtin_types[(int) ARG9], \
1194 : : builtin_types[(int) ARG10], \
1195 : : builtin_types[(int) ARG11], \
1196 : : NULL_TREE);
1197 : : #define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
1198 : : builtin_types[(int) ENUM] \
1199 : : = build_varargs_function_type_list (builtin_types[(int) RETURN], \
1200 : : NULL_TREE);
1201 : : #define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
1202 : : builtin_types[(int) ENUM] \
1203 : : = build_varargs_function_type_list (builtin_types[(int) RETURN], \
1204 : : builtin_types[(int) ARG1], \
1205 : : NULL_TREE);
1206 : : #define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
1207 : : builtin_types[(int) ENUM] \
1208 : : = build_varargs_function_type_list (builtin_types[(int) RETURN], \
1209 : : builtin_types[(int) ARG1], \
1210 : : builtin_types[(int) ARG2], \
1211 : : NULL_TREE);
1212 : : #define DEF_FUNCTION_TYPE_VAR_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1213 : : ARG6) \
1214 : : builtin_types[(int) ENUM] \
1215 : : = build_varargs_function_type_list (builtin_types[(int) RETURN], \
1216 : : builtin_types[(int) ARG1], \
1217 : : builtin_types[(int) ARG2], \
1218 : : builtin_types[(int) ARG3], \
1219 : : builtin_types[(int) ARG4], \
1220 : : builtin_types[(int) ARG5], \
1221 : : builtin_types[(int) ARG6], \
1222 : : NULL_TREE);
1223 : : #define DEF_FUNCTION_TYPE_VAR_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1224 : : ARG6, ARG7) \
1225 : : builtin_types[(int) ENUM] \
1226 : : = build_varargs_function_type_list (builtin_types[(int) RETURN], \
1227 : : builtin_types[(int) ARG1], \
1228 : : builtin_types[(int) ARG2], \
1229 : : builtin_types[(int) ARG3], \
1230 : : builtin_types[(int) ARG4], \
1231 : : builtin_types[(int) ARG5], \
1232 : : builtin_types[(int) ARG6], \
1233 : : builtin_types[(int) ARG7], \
1234 : : NULL_TREE);
1235 : : #define DEF_POINTER_TYPE(ENUM, TYPE) \
1236 : : builtin_types[(int) ENUM] \
1237 : : = build_pointer_type (builtin_types[(int) TYPE]);
1238 : : #include "types.def"
1239 : : #undef DEF_PRIMITIVE_TYPE
1240 : : #undef DEF_FUNCTION_TYPE_0
1241 : : #undef DEF_FUNCTION_TYPE_1
1242 : : #undef DEF_FUNCTION_TYPE_2
1243 : : #undef DEF_FUNCTION_TYPE_3
1244 : : #undef DEF_FUNCTION_TYPE_4
1245 : : #undef DEF_FUNCTION_TYPE_5
1246 : : #undef DEF_FUNCTION_TYPE_6
1247 : : #undef DEF_FUNCTION_TYPE_7
1248 : : #undef DEF_FUNCTION_TYPE_8
1249 : : #undef DEF_FUNCTION_TYPE_10
1250 : : #undef DEF_FUNCTION_TYPE_VAR_0
1251 : : #undef DEF_FUNCTION_TYPE_VAR_1
1252 : : #undef DEF_FUNCTION_TYPE_VAR_2
1253 : : #undef DEF_FUNCTION_TYPE_VAR_6
1254 : : #undef DEF_FUNCTION_TYPE_VAR_7
1255 : : #undef DEF_POINTER_TYPE
1256 : 30575 : builtin_types[(int) BT_LAST] = NULL_TREE;
1257 : :
1258 : : /* Initialize synchronization builtins. */
1259 : : #undef DEF_SYNC_BUILTIN
1260 : : #define DEF_SYNC_BUILTIN(code, name, type, attr) \
1261 : : gfc_define_builtin (name, builtin_types[type], code, name, \
1262 : : attr);
1263 : : #include "../sync-builtins.def"
1264 : : #undef DEF_SYNC_BUILTIN
1265 : :
1266 : 30575 : if (flag_openacc)
1267 : : {
1268 : : #undef DEF_GOACC_BUILTIN
1269 : : #define DEF_GOACC_BUILTIN(code, name, type, attr) \
1270 : : gfc_define_builtin ("__builtin_" name, builtin_types[type], \
1271 : : code, name, attr);
1272 : : #undef DEF_GOACC_BUILTIN_COMPILER
1273 : : #define DEF_GOACC_BUILTIN_COMPILER(code, name, type, attr) \
1274 : : gfc_define_builtin (name, builtin_types[type], code, name, attr);
1275 : : #undef DEF_GOACC_BUILTIN_ONLY
1276 : : #define DEF_GOACC_BUILTIN_ONLY(code, name, type, attr) \
1277 : : gfc_define_builtin ("__builtin_" name, builtin_types[type], code, NULL, \
1278 : : attr);
1279 : : #undef DEF_GOMP_BUILTIN
1280 : : #define DEF_GOMP_BUILTIN(code, name, type, attr) /* ignore */
1281 : : #undef DEF_GOMP_BUILTIN_COMPILER
1282 : : #define DEF_GOMP_BUILTIN_COMPILER(code, name, type, attr) /* ignore */
1283 : : #include "../omp-builtins.def"
1284 : : #undef DEF_GOACC_BUILTIN
1285 : : #undef DEF_GOACC_BUILTIN_COMPILER
1286 : : #undef DEF_GOMP_BUILTIN
1287 : : #undef DEF_GOMP_BUILTIN_COMPILER
1288 : : }
1289 : :
1290 : 30575 : if (flag_openmp || flag_openmp_simd || flag_tree_parallelize_loops)
1291 : : {
1292 : : #undef DEF_GOACC_BUILTIN
1293 : : #define DEF_GOACC_BUILTIN(code, name, type, attr) /* ignore */
1294 : : #undef DEF_GOACC_BUILTIN_COMPILER
1295 : : #define DEF_GOACC_BUILTIN_COMPILER(code, name, type, attr) /* ignore */
1296 : : #undef DEF_GOMP_BUILTIN
1297 : : #define DEF_GOMP_BUILTIN(code, name, type, attr) \
1298 : : gfc_define_builtin ("__builtin_" name, builtin_types[type], \
1299 : : code, name, attr);
1300 : : #undef DEF_GOMP_BUILTIN_COMPILER
1301 : : #define DEF_GOMP_BUILTIN_COMPILER(code, name, type, attr) \
1302 : : if (flag_openmp) \
1303 : : gfc_define_builtin ("__builtin_" name, builtin_types[type], \
1304 : : code, name, attr);
1305 : : #include "../omp-builtins.def"
1306 : : #undef DEF_GOACC_BUILTIN
1307 : : #undef DEF_GOACC_BUILTIN_COMPILER
1308 : : #undef DEF_GOMP_BUILTIN
1309 : : #undef DEF_GOMP_BUILTIN_COMPILER
1310 : 30575 : tree gomp_alloc = builtin_decl_explicit (BUILT_IN_GOMP_ALLOC);
1311 : 30575 : tree two = build_int_cst (integer_type_node, 2);
1312 : 30575 : DECL_ATTRIBUTES (gomp_alloc)
1313 : 61150 : = tree_cons (get_identifier ("warn_unused_result"), NULL_TREE,
1314 : : tree_cons (get_identifier ("alloc_size"),
1315 : : build_tree_list (NULL_TREE, two),
1316 : 30575 : DECL_ATTRIBUTES (gomp_alloc)));
1317 : : }
1318 : :
1319 : 30575 : gfc_define_builtin ("__builtin_trap", builtin_types[BT_FN_VOID],
1320 : : BUILT_IN_TRAP, NULL, ATTR_NOTHROW_LEAF_LIST);
1321 : 30575 : TREE_THIS_VOLATILE (builtin_decl_explicit (BUILT_IN_TRAP)) = 1;
1322 : :
1323 : 30575 : ftype = build_varargs_function_type_list (ptr_type_node, const_ptr_type_node,
1324 : : size_type_node, NULL_TREE);
1325 : 30575 : gfc_define_builtin ("__builtin_assume_aligned", ftype,
1326 : : BUILT_IN_ASSUME_ALIGNED,
1327 : : "__builtin_assume_aligned",
1328 : : ATTR_CONST_NOTHROW_LEAF_LIST);
1329 : :
1330 : 30575 : ftype = build_function_type_list (long_double_type_node, long_double_type_node,
1331 : : long_double_type_node, long_double_type_node,
1332 : : NULL_TREE);
1333 : 30575 : gfc_define_builtin ("__builtin_fmal", ftype, BUILT_IN_FMAL,
1334 : : "fmal", ATTR_CONST_NOTHROW_LEAF_LIST);
1335 : 30575 : ftype = build_function_type_list (double_type_node, double_type_node,
1336 : : double_type_node, double_type_node,
1337 : : NULL_TREE);
1338 : 30575 : gfc_define_builtin ("__builtin_fma", ftype, BUILT_IN_FMA,
1339 : : "fma", ATTR_CONST_NOTHROW_LEAF_LIST);
1340 : 30575 : ftype = build_function_type_list (float_type_node, float_type_node,
1341 : : float_type_node, float_type_node,
1342 : : NULL_TREE);
1343 : 30575 : gfc_define_builtin ("__builtin_fmaf", ftype, BUILT_IN_FMAF,
1344 : : "fmaf", ATTR_CONST_NOTHROW_LEAF_LIST);
1345 : :
1346 : 30575 : gfc_define_builtin ("__emutls_get_address",
1347 : : builtin_types[BT_FN_PTR_PTR],
1348 : : BUILT_IN_EMUTLS_GET_ADDRESS,
1349 : : "__emutls_get_address", ATTR_CONST_NOTHROW_LEAF_LIST);
1350 : 30575 : gfc_define_builtin ("__emutls_register_common",
1351 : : builtin_types[BT_FN_VOID_PTR_WORD_WORD_PTR],
1352 : : BUILT_IN_EMUTLS_REGISTER_COMMON,
1353 : : "__emutls_register_common", ATTR_NOTHROW_LEAF_LIST);
1354 : :
1355 : 30575 : build_common_builtin_nodes ();
1356 : 30575 : targetm.init_builtins ();
1357 : 30575 : }
1358 : :
1359 : : #undef DEFINE_MATH_BUILTIN_C
1360 : : #undef DEFINE_MATH_BUILTIN
1361 : :
1362 : : static void
1363 : 30592 : gfc_init_ts (void)
1364 : : {
1365 : 30592 : tree_contains_struct[NAMESPACE_DECL][TS_DECL_NON_COMMON] = 1;
1366 : 30592 : tree_contains_struct[NAMESPACE_DECL][TS_DECL_WITH_VIS] = 1;
1367 : 30592 : tree_contains_struct[NAMESPACE_DECL][TS_DECL_WRTL] = 1;
1368 : 30592 : tree_contains_struct[NAMESPACE_DECL][TS_DECL_COMMON] = 1;
1369 : 30592 : tree_contains_struct[NAMESPACE_DECL][TS_DECL_MINIMAL] = 1;
1370 : 30592 : }
1371 : :
1372 : : void
1373 : 18263 : gfc_maybe_initialize_eh (void)
1374 : : {
1375 : 18263 : if (!flag_exceptions || gfc_eh_initialized_p)
1376 : : return;
1377 : :
1378 : 9 : gfc_eh_initialized_p = true;
1379 : 9 : using_eh_for_cleanups ();
1380 : : }
1381 : :
1382 : :
1383 : : #include "gt-fortran-f95-lang.h"
1384 : : #include "gtype-fortran.h"
|