]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/d/d-builtins.cc
Update copyright years.
[thirdparty/gcc.git] / gcc / d / d-builtins.cc
1 /* d-builtins.cc -- GCC builtins support for D.
2 Copyright (C) 2006-2019 Free Software Foundation, Inc.
3
4 GCC is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3, or (at your option)
7 any later version.
8
9 GCC is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
13
14 You should have received a copy of the GNU General Public License
15 along with GCC; see the file COPYING3. If not see
16 <http://www.gnu.org/licenses/>. */
17
18 #include "config.h"
19 #include "system.h"
20 #include "coretypes.h"
21
22 #include "dmd/attrib.h"
23 #include "dmd/aggregate.h"
24 #include "dmd/cond.h"
25 #include "dmd/declaration.h"
26 #include "dmd/expression.h"
27 #include "dmd/identifier.h"
28 #include "dmd/module.h"
29 #include "dmd/mtype.h"
30
31 #include "tree.h"
32 #include "fold-const.h"
33 #include "diagnostic.h"
34 #include "langhooks.h"
35 #include "target.h"
36 #include "common/common-target.h"
37 #include "stringpool.h"
38 #include "stor-layout.h"
39
40 #include "d-tree.h"
41 #include "d-target.h"
42
43
44 static GTY(()) vec<tree, va_gc> *gcc_builtins_functions = NULL;
45 static GTY(()) vec<tree, va_gc> *gcc_builtins_libfuncs = NULL;
46 static GTY(()) vec<tree, va_gc> *gcc_builtins_types = NULL;
47
48 /* Record built-in types and their associated decls for re-use when
49 generating the `gcc.builtins' module. */
50
51 struct builtin_data
52 {
53 Type *dtype;
54 tree ctype;
55 Dsymbol *dsym;
56
57 builtin_data (Type *t, tree c, Dsymbol *d = NULL)
58 : dtype(t), ctype(c), dsym(d)
59 { }
60 };
61
62 static vec<builtin_data> builtin_converted_decls;
63
64 /* Build D frontend type from tree TYPE type given. This will set the
65 back-end type symbol directly for complex types to save build_ctype()
66 the work. For other types, it is not useful or will cause errors, such
67 as casting from `C char' to `D char', which also means that `char *`
68 needs to be specially handled. */
69
70 static Type *
71 build_frontend_type (tree type)
72 {
73 Type *dtype;
74 MOD mod = 0;
75
76 if (TYPE_READONLY (type))
77 mod |= MODconst;
78 if (TYPE_VOLATILE (type))
79 mod |= MODshared;
80
81 /* If we've seen the type before, re-use the converted decl. */
82 for (size_t i = 0; i < builtin_converted_decls.length (); ++i)
83 {
84 tree t = builtin_converted_decls[i].ctype;
85 if (TYPE_MAIN_VARIANT (t) == TYPE_MAIN_VARIANT (type))
86 return builtin_converted_decls[i].dtype;
87 }
88
89 switch (TREE_CODE (type))
90 {
91 case POINTER_TYPE:
92 dtype = build_frontend_type (TREE_TYPE (type));
93 if (dtype)
94 {
95 /* Check for char * first. Needs to be done for chars/string. */
96 if (TYPE_MAIN_VARIANT (TREE_TYPE (type)) == char_type_node)
97 return Type::tchar->addMod (dtype->mod)->pointerTo ()->addMod (mod);
98
99 if (dtype->ty == Tfunction)
100 return (TypePointer::create (dtype))->addMod (mod);
101
102 return dtype->pointerTo ()->addMod (mod);
103 }
104 break;
105
106 case REFERENCE_TYPE:
107 dtype = build_frontend_type (TREE_TYPE (type));
108 if (dtype)
109 {
110 /* Want to assign ctype directly so that the REFERENCE_TYPE code
111 can be turned into as an `inout' argument. Can't use pointerTo(),
112 because the returned Type is shared. */
113 dtype = (TypePointer::create (dtype))->addMod (mod);
114 dtype->ctype = type;
115 builtin_converted_decls.safe_push (builtin_data (dtype, type));
116 return dtype;
117 }
118 break;
119
120 case BOOLEAN_TYPE:
121 /* Should be no need for size checking. */
122 return Type::tbool->addMod (mod);
123
124 case INTEGER_TYPE:
125 {
126 unsigned size = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (type));
127 bool unsignedp = TYPE_UNSIGNED (type);
128
129 /* For now, skip support for cent/ucent until the frontend
130 has better support for handling it. */
131 for (size_t i = Tint8; i <= Tuns64; i++)
132 {
133 dtype = Type::basic[i];
134
135 /* Search for type matching size and signedness. */
136 if (unsignedp != dtype->isunsigned ()
137 || size != dtype->size ())
138 continue;
139
140 return dtype->addMod (mod);
141 }
142 break;
143 }
144
145 case REAL_TYPE:
146 {
147 unsigned size = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (type));
148
149 for (size_t i = Tfloat32; i <= Tfloat80; i++)
150 {
151 dtype = Type::basic[i];
152
153 /* Search for type matching size. */
154 if (dtype->size () != size)
155 continue;
156
157 return dtype->addMod (mod);
158 }
159 break;
160 }
161
162 case COMPLEX_TYPE:
163 {
164 unsigned size = TREE_INT_CST_LOW (TYPE_SIZE_UNIT (type));
165 for (size_t i = Tcomplex32; i <= Tcomplex80; i++)
166 {
167 dtype = Type::basic[i];
168
169 /* Search for type matching size. */
170 if (dtype->size () != size)
171 continue;
172
173 return dtype->addMod (mod);
174 }
175 break;
176 }
177
178 case VOID_TYPE:
179 return Type::tvoid->addMod (mod);
180
181 case ARRAY_TYPE:
182 dtype = build_frontend_type (TREE_TYPE (type));
183 if (dtype)
184 {
185 tree index = TYPE_DOMAIN (type);
186 tree ub = TYPE_MAX_VALUE (index);
187 tree lb = TYPE_MIN_VALUE (index);
188
189 tree length = fold_build2 (MINUS_EXPR, TREE_TYPE (lb), ub, lb);
190 length = size_binop (PLUS_EXPR, size_one_node,
191 convert (sizetype, length));
192
193 dtype = dtype->sarrayOf (TREE_INT_CST_LOW (length))->addMod (mod);
194 builtin_converted_decls.safe_push (builtin_data (dtype, type));
195 return dtype;
196 }
197 break;
198
199 case VECTOR_TYPE:
200 dtype = build_frontend_type (TREE_TYPE (type));
201 if (dtype)
202 {
203 poly_uint64 nunits = TYPE_VECTOR_SUBPARTS (type);
204 dtype = dtype->sarrayOf (nunits.to_constant ())->addMod (mod);
205
206 if (dtype->nextOf ()->isTypeBasic () == NULL)
207 break;
208
209 dtype = (TypeVector::create (Loc (), dtype))->addMod (mod);
210 builtin_converted_decls.safe_push (builtin_data (dtype, type));
211 return dtype;
212 }
213 break;
214
215 case RECORD_TYPE:
216 if (TYPE_NAME (type))
217 {
218 tree structname = DECL_NAME (TYPE_NAME (type));
219 Identifier *ident
220 = Identifier::idPool (IDENTIFIER_POINTER (structname));
221
222 /* Neither the `object' and `gcc.builtins' modules will not exist when
223 this is called. Use a stub 'object' module parent in the meantime.
224 If `gcc.builtins' is later imported, the parent will be overridden
225 with the correct module symbol. */
226 static Identifier *object = Identifier::idPool ("object");
227 static Module *stubmod = Module::create ("object.d", object, 0, 0);
228
229 StructDeclaration *sdecl = StructDeclaration::create (Loc (), ident,
230 false);
231 sdecl->parent = stubmod;
232 sdecl->structsize = int_size_in_bytes (type);
233 sdecl->alignsize = TYPE_ALIGN_UNIT (type);
234 sdecl->alignment = STRUCTALIGN_DEFAULT;
235 sdecl->sizeok = SIZEOKdone;
236 sdecl->type = (TypeStruct::create (sdecl))->addMod (mod);
237 sdecl->type->ctype = type;
238 sdecl->type->merge2 ();
239
240 /* Does not seem necessary to convert fields, but the members field
241 must be non-null for the above size setting to stick. */
242 sdecl->members = new Dsymbols;
243 dtype = sdecl->type;
244 builtin_converted_decls.safe_push (builtin_data (dtype, type, sdecl));
245 return dtype;
246 }
247 break;
248
249 case FUNCTION_TYPE:
250 dtype = build_frontend_type (TREE_TYPE (type));
251 if (dtype)
252 {
253 tree parms = TYPE_ARG_TYPES (type);
254 int varargs_p = 1;
255
256 Parameters *args = new Parameters;
257 args->reserve (list_length (parms));
258
259 /* Attempt to convert all parameter types. */
260 for (tree parm = parms; parm != NULL_TREE; parm = TREE_CHAIN (parm))
261 {
262 tree argtype = TREE_VALUE (parm);
263 if (argtype == void_type_node)
264 {
265 varargs_p = 0;
266 break;
267 }
268
269 StorageClass sc = STCundefined;
270 if (TREE_CODE (argtype) == REFERENCE_TYPE)
271 {
272 argtype = TREE_TYPE (argtype);
273 sc |= STCref;
274 }
275
276 Type *targ = build_frontend_type (argtype);
277 if (!targ)
278 {
279 delete args;
280 return NULL;
281 }
282
283 args->push (Parameter::create (sc, targ, NULL, NULL));
284 }
285
286 /* GCC generic and placeholder built-ins are marked as variadic, yet
287 have no named parameters, and so can't be represented in D. */
288 if (args->dim != 0 || !varargs_p)
289 {
290 dtype = TypeFunction::create (args, dtype, varargs_p, LINKc);
291 return dtype->addMod (mod);
292 }
293 }
294 break;
295
296 default:
297 break;
298 }
299
300 return NULL;
301 }
302
303 /* Attempt to convert GCC evaluated CST to a D Frontend Expression.
304 This is used for getting the CTFE value out of a const-folded builtin,
305 returns NULL if it cannot convert CST. */
306
307 Expression *
308 d_eval_constant_expression (tree cst)
309 {
310 STRIP_TYPE_NOPS (cst);
311 Type *type = build_frontend_type (TREE_TYPE (cst));
312
313 if (type)
314 {
315 /* Convert our GCC CST tree into a D Expression. This seems like we are
316 trying too hard, as these will only be converted back to a tree again
317 later in the codegen pass, but satisfies the need to have GCC built-ins
318 CTFE-able in the frontend. */
319 tree_code code = TREE_CODE (cst);
320 if (code == COMPLEX_CST)
321 {
322 real_value re = TREE_REAL_CST (TREE_REALPART (cst));
323 real_value im = TREE_REAL_CST (TREE_IMAGPART (cst));
324 complex_t value = complex_t (ldouble (re), ldouble (im));
325 return ComplexExp::create (Loc (), value, type);
326 }
327 else if (code == INTEGER_CST)
328 {
329 dinteger_t value = TREE_INT_CST_LOW (cst);
330 return IntegerExp::create (Loc (), value, type);
331 }
332 else if (code == REAL_CST)
333 {
334 real_value value = TREE_REAL_CST (cst);
335 return RealExp::create (Loc (), ldouble (value), type);
336 }
337 else if (code == STRING_CST)
338 {
339 const void *string = TREE_STRING_POINTER (cst);
340 size_t len = TREE_STRING_LENGTH (cst);
341 return StringExp::create (Loc (), CONST_CAST (void *, string), len);
342 }
343 else if (code == VECTOR_CST)
344 {
345 dinteger_t nunits = VECTOR_CST_NELTS (cst).to_constant ();
346 Expressions *elements = new Expressions;
347 elements->setDim (nunits);
348
349 for (size_t i = 0; i < nunits; i++)
350 {
351 Expression *elem
352 = d_eval_constant_expression (VECTOR_CST_ELT (cst, i));
353 if (elem == NULL)
354 return NULL;
355
356 (*elements)[i] = elem;
357 }
358
359 Expression *e = ArrayLiteralExp::create (Loc (), elements);
360 e->type = ((TypeVector *) type)->basetype;
361
362 return VectorExp::create (Loc (), e, type);
363 }
364 }
365
366 return NULL;
367 }
368
369 /* Callback for TARGET_D_CPU_VERSIONS and TARGET_D_OS_VERSIONS.
370 Adds IDENT to the list of predefined version identifiers. */
371
372 void
373 d_add_builtin_version (const char* ident)
374 {
375 /* For now, we need to tell the D frontend what platform is being targeted.
376 This should be removed once the frontend has been fixed. */
377 if (strcmp (ident, "linux") == 0)
378 global.params.isLinux = true;
379 else if (strcmp (ident, "OSX") == 0)
380 global.params.isOSX = true;
381 else if (strcmp (ident, "Windows") == 0)
382 global.params.isWindows = true;
383 else if (strcmp (ident, "FreeBSD") == 0)
384 global.params.isFreeBSD = true;
385 else if (strcmp (ident, "OpenBSD") == 0)
386 global.params.isOpenBSD = true;
387 else if (strcmp (ident, "Solaris") == 0)
388 global.params.isSolaris = true;
389 /* The is64bit field only refers to x86_64 target. */
390 else if (strcmp (ident, "X86_64") == 0)
391 global.params.is64bit = true;
392 /* No other fields are required to be set for the frontend. */
393
394 VersionCondition::addPredefinedGlobalIdent (ident);
395 }
396
397 /* Initialize the list of all the predefined version identifiers. */
398
399 void
400 d_init_versions (void)
401 {
402 VersionCondition::addPredefinedGlobalIdent ("GNU");
403 VersionCondition::addPredefinedGlobalIdent ("D_Version2");
404
405 if (BYTES_BIG_ENDIAN)
406 VersionCondition::addPredefinedGlobalIdent ("BigEndian");
407 else
408 VersionCondition::addPredefinedGlobalIdent ("LittleEndian");
409
410 if (targetm_common.except_unwind_info (&global_options) == UI_SJLJ)
411 VersionCondition::addPredefinedGlobalIdent ("GNU_SjLj_Exceptions");
412 else if (targetm_common.except_unwind_info (&global_options) == UI_SEH)
413 VersionCondition::addPredefinedGlobalIdent ("GNU_SEH_Exceptions");
414 else if (targetm_common.except_unwind_info (&global_options) == UI_DWARF2)
415 VersionCondition::addPredefinedGlobalIdent ("GNU_DWARF2_Exceptions");
416
417 if (!targetm.have_tls)
418 VersionCondition::addPredefinedGlobalIdent ("GNU_EMUTLS");
419
420 #ifdef STACK_GROWS_DOWNWARD
421 VersionCondition::addPredefinedGlobalIdent ("GNU_StackGrowsDown");
422 #endif
423
424 /* Should define this anyway to set us apart from the competition. */
425 VersionCondition::addPredefinedGlobalIdent ("GNU_InlineAsm");
426
427 /* LP64 only means 64bit pointers in D. */
428 if (global.params.isLP64)
429 VersionCondition::addPredefinedGlobalIdent ("D_LP64");
430
431 /* Setting `global.params.cov' forces module info generation which is
432 not needed for the GCC coverage implementation. Instead, just
433 test flag_test_coverage while leaving `global.params.cov' unset. */
434 if (flag_test_coverage)
435 VersionCondition::addPredefinedGlobalIdent ("D_Coverage");
436 if (flag_pic)
437 VersionCondition::addPredefinedGlobalIdent ("D_PIC");
438
439 if (global.params.doDocComments)
440 VersionCondition::addPredefinedGlobalIdent ("D_Ddoc");
441
442 if (global.params.useUnitTests)
443 VersionCondition::addPredefinedGlobalIdent ("unittest");
444
445 if (global.params.useAssert)
446 VersionCondition::addPredefinedGlobalIdent ("assert");
447
448 if (global.params.useArrayBounds == BOUNDSCHECKoff)
449 VersionCondition::addPredefinedGlobalIdent ("D_NoBoundsChecks");
450
451 VersionCondition::addPredefinedGlobalIdent ("all");
452
453 /* Emit all target-specific version identifiers. */
454 targetdm.d_cpu_versions ();
455 targetdm.d_os_versions ();
456 }
457
458 /* A helper for d_build_builtins_module. Return a new ALIAS for TYPE.
459 Analogous to `alias ALIAS = TYPE' in D code. */
460
461 static AliasDeclaration *
462 build_alias_declaration (const char *alias, Type *type)
463 {
464 return AliasDeclaration::create (Loc (), Identifier::idPool (alias), type);
465 }
466
467 /* A helper function for Target::loadModule. Generates all code for the
468 `gcc.builtins' module, whose frontend symbol should be M. */
469
470 void
471 d_build_builtins_module (Module *m)
472 {
473 Dsymbols *members = new Dsymbols;
474 tree decl;
475
476 for (size_t i = 0; vec_safe_iterate (gcc_builtins_functions, i, &decl); ++i)
477 {
478 const char *name = IDENTIFIER_POINTER (DECL_NAME (decl));
479 TypeFunction *tf
480 = (TypeFunction *) build_frontend_type (TREE_TYPE (decl));
481
482 /* Cannot create built-in function type for DECL. */
483 if (!tf)
484 continue;
485
486 /* A few notes on D2 attributes applied to builtin functions:
487 - It is assumed that built-ins solely provided by the compiler are
488 considered @safe and pure.
489 - Built-ins that correspond to `extern(C)' functions in the standard
490 library that have `__attribute__(nothrow)' are considered `@trusted'.
491 - The purity of a built-in can vary depending on compiler flags set
492 upon initialization, or by the `-foptions' passed, such as
493 flag_unsafe_math_optimizations.
494 - Built-ins never use the GC or raise a D exception, and so are always
495 marked as `nothrow' and `@nogc'. */
496 tf->purity = DECL_PURE_P (decl) ? PUREstrong
497 : TREE_READONLY (decl) ? PUREconst
498 : DECL_IS_NOVOPS (decl) ? PUREweak
499 : !DECL_ASSEMBLER_NAME_SET_P (decl) ? PUREweak
500 : PUREimpure;
501 tf->trust = !DECL_ASSEMBLER_NAME_SET_P (decl) ? TRUSTsafe
502 : TREE_NOTHROW (decl) ? TRUSTtrusted
503 : TRUSTsystem;
504 tf->isnothrow = true;
505 tf->isnogc = true;
506
507 FuncDeclaration *func
508 = FuncDeclaration::create (Loc (), Loc (),
509 Identifier::idPool (name),
510 STCextern, tf);
511 DECL_LANG_SPECIFIC (decl) = build_lang_decl (func);
512 func->csym = decl;
513 func->builtin = BUILTINyes;
514
515 members->push (func);
516 }
517
518 for (size_t i = 0; vec_safe_iterate (gcc_builtins_types, i, &decl); ++i)
519 {
520 const char *name = IDENTIFIER_POINTER (DECL_NAME (decl));
521 Type *t = build_frontend_type (TREE_TYPE (decl));
522
523 /* Cannot create built-in type for DECL. */
524 if (!t)
525 continue;
526
527 members->push (build_alias_declaration (name, t));
528 }
529
530 /* Iterate through the target-specific builtin types for va_list. */
531 if (targetm.enum_va_list_p)
532 {
533 const char *name;
534 tree type;
535
536 for (int i = 0; targetm.enum_va_list_p (i, &name, &type); ++i)
537 {
538 Type *t = build_frontend_type (type);
539 /* Cannot create built-in type. */
540 if (!t)
541 continue;
542
543 members->push (build_alias_declaration (name, t));
544 }
545 }
546
547 /* Push out declarations for any RECORD_TYPE types encountered when building
548 all builtin functions and types. */
549 for (size_t i = 0; i < builtin_converted_decls.length (); ++i)
550 {
551 /* Currently, there is no need to run semantic, but we do want to output
552 initializers, typeinfo, and others on demand. */
553 Dsymbol *dsym = builtin_converted_decls[i].dsym;
554 if (dsym != NULL)
555 {
556 dsym->parent = m;
557 members->push (dsym);
558 }
559 }
560
561 /* va_list should already be built, so no need to convert to D type again. */
562 members->push (build_alias_declaration ("__builtin_va_list", Type::tvalist));
563
564 /* Expose target-specific integer types to the builtins module. */
565 {
566 Type *t = build_frontend_type (long_integer_type_node);
567 members->push (build_alias_declaration ("__builtin_clong", t));
568
569 t = build_frontend_type (long_unsigned_type_node);
570 members->push (build_alias_declaration ("__builtin_culong", t));
571
572 t = build_frontend_type (long_long_integer_type_node);
573 members->push (build_alias_declaration ("__builtin_clonglong", t));
574
575 t = build_frontend_type (long_long_unsigned_type_node);
576 members->push (build_alias_declaration ("__builtin_culonglong", t));
577
578 t = build_frontend_type (lang_hooks.types.type_for_mode (byte_mode, 0));
579 members->push (build_alias_declaration ("__builtin_machine_byte", t));
580
581 t = build_frontend_type (lang_hooks.types.type_for_mode (byte_mode, 1));
582 members->push (build_alias_declaration ("__builtin_machine_ubyte", t));
583
584 t = build_frontend_type (lang_hooks.types.type_for_mode (word_mode, 0));
585 members->push (build_alias_declaration ("__builtin_machine_int", t));
586
587 t = build_frontend_type (lang_hooks.types.type_for_mode (word_mode, 1));
588 members->push (build_alias_declaration ("__builtin_machine_uint", t));
589
590 t = build_frontend_type (lang_hooks.types.type_for_mode (ptr_mode, 0));
591 members->push (build_alias_declaration ("__builtin_pointer_int", t));
592
593 t = build_frontend_type (lang_hooks.types.type_for_mode (ptr_mode, 1));
594 members->push (build_alias_declaration ("__builtin_pointer_uint", t));
595
596 /* _Unwind_Word has its own target specific mode. */
597 machine_mode mode = targetm.unwind_word_mode ();
598 t = build_frontend_type (lang_hooks.types.type_for_mode (mode, 0));
599 members->push (build_alias_declaration ("__builtin_unwind_int", t));
600
601 t = build_frontend_type (lang_hooks.types.type_for_mode (mode, 1));
602 members->push (build_alias_declaration ("__builtin_unwind_uint", t));
603 }
604
605 m->members->push (LinkDeclaration::create (LINKc, members));
606 }
607
608 /* Search for any `extern(C)' functions that match any known GCC library builtin
609 function in D and override its internal back-end symbol. */
610
611 static void
612 maybe_set_builtin_1 (Dsymbol *d)
613 {
614 AttribDeclaration *ad = d->isAttribDeclaration ();
615 FuncDeclaration *fd = d->isFuncDeclaration ();
616
617 if (ad != NULL)
618 {
619 /* Recursively search through attribute decls. */
620 Dsymbols *decls = ad->include (NULL, NULL);
621 if (decls && decls->dim)
622 {
623 for (size_t i = 0; i < decls->dim; i++)
624 {
625 Dsymbol *sym = (*decls)[i];
626 maybe_set_builtin_1 (sym);
627 }
628 }
629 }
630 else if (fd && !fd->fbody)
631 {
632 tree t;
633
634 for (size_t i = 0; vec_safe_iterate (gcc_builtins_libfuncs, i, &t); ++i)
635 {
636 gcc_assert (DECL_ASSEMBLER_NAME_SET_P (t));
637
638 const char *name = IDENTIFIER_POINTER (DECL_ASSEMBLER_NAME (t));
639 if (fd->ident != Identifier::idPool (name))
640 continue;
641
642 /* Found a match, tell the frontend this is a builtin. */
643 DECL_LANG_SPECIFIC (t) = build_lang_decl (fd);
644 fd->csym = t;
645 fd->builtin = BUILTINyes;
646 return;
647 }
648 }
649 }
650
651 /* A helper function for Target::loadModule. Traverse all members in module M
652 to search for any functions that can be mapped to any GCC builtin. */
653
654 void
655 d_maybe_set_builtin (Module *m)
656 {
657 if (!m || !m->members)
658 return;
659
660 for (size_t i = 0; i < m->members->dim; i++)
661 {
662 Dsymbol *sym = (*m->members)[i];
663 maybe_set_builtin_1 (sym);
664 }
665 }
666
667 /* Used to help initialize the builtin-types.def table. When a type of
668 the correct size doesn't exist, use error_mark_node instead of NULL.
669 The latter results in segfaults even when a decl using the type doesn't
670 get invoked. */
671
672 static tree
673 builtin_type_for_size (int size, bool unsignedp)
674 {
675 tree type = lang_hooks.types.type_for_size (size, unsignedp);
676 return type ? type : error_mark_node;
677 }
678
679 /* Support for DEF_BUILTIN. */
680
681 static void
682 do_build_builtin_fn (built_in_function fncode,
683 const char *name,
684 built_in_class fnclass,
685 tree fntype, bool both_p, bool fallback_p,
686 tree fnattrs, bool implicit_p)
687 {
688 tree decl;
689 const char *libname;
690
691 if (fntype == error_mark_node)
692 return;
693
694 gcc_assert ((!both_p && !fallback_p)
695 || !strncmp (name, "__builtin_",
696 strlen ("__builtin_")));
697
698 libname = name + strlen ("__builtin_");
699
700 decl = add_builtin_function (name, fntype, fncode, fnclass,
701 fallback_p ? libname : NULL, fnattrs);
702
703 set_builtin_decl (fncode, decl, implicit_p);
704 }
705
706 /* Standard data types to be used in builtin argument declarations. */
707
708 static GTY(()) tree string_type_node;
709 static GTY(()) tree const_string_type_node;
710 static GTY(()) tree wint_type_node;
711 static GTY(()) tree intmax_type_node;
712 static GTY(()) tree uintmax_type_node;
713 static GTY(()) tree signed_size_type_node;
714
715
716 /* Build nodes that would have been created by the C front-end; necessary
717 for including builtin-types.def and ultimately builtins.def. */
718
719 static void
720 d_build_c_type_nodes (void)
721 {
722 void_list_node = build_tree_list (NULL_TREE, void_type_node);
723 string_type_node = build_pointer_type (char_type_node);
724 const_string_type_node
725 = build_pointer_type (build_qualified_type (char_type_node,
726 TYPE_QUAL_CONST));
727
728 if (strcmp (SIZE_TYPE, "unsigned int") == 0)
729 {
730 intmax_type_node = integer_type_node;
731 uintmax_type_node = unsigned_type_node;
732 signed_size_type_node = integer_type_node;
733 }
734 else if (strcmp (SIZE_TYPE, "long unsigned int") == 0)
735 {
736 intmax_type_node = long_integer_type_node;
737 uintmax_type_node = long_unsigned_type_node;
738 signed_size_type_node = long_integer_type_node;
739 }
740 else if (strcmp (SIZE_TYPE, "long long unsigned int") == 0)
741 {
742 intmax_type_node = long_long_integer_type_node;
743 uintmax_type_node = long_long_unsigned_type_node;
744 signed_size_type_node = long_long_integer_type_node;
745 }
746 else
747 gcc_unreachable ();
748
749 wint_type_node = unsigned_type_node;
750 pid_type_node = integer_type_node;
751 }
752
753 /* Build nodes that are used by the D front-end.
754 These are distinct from C types. */
755
756 static void
757 d_build_d_type_nodes (void)
758 {
759 /* Integral types. */
760 d_byte_type = make_signed_type (8);
761 d_ubyte_type = make_unsigned_type (8);
762
763 d_short_type = make_signed_type (16);
764 d_ushort_type = make_unsigned_type (16);
765
766 d_int_type = make_signed_type (32);
767 d_uint_type = make_unsigned_type (32);
768
769 d_long_type = make_signed_type (64);
770 d_ulong_type = make_unsigned_type (64);
771
772 d_cent_type = make_signed_type (128);
773 d_ucent_type = make_unsigned_type (128);
774
775 {
776 /* Re-define size_t as a D type. */
777 machine_mode type_mode = TYPE_MODE (size_type_node);
778 size_type_node = lang_hooks.types.type_for_mode (type_mode, 1);
779 }
780
781 /* Bool and Character types. */
782 d_bool_type = make_unsigned_type (1);
783 TREE_SET_CODE (d_bool_type, BOOLEAN_TYPE);
784
785 char8_type_node = make_unsigned_type (8);
786 TYPE_STRING_FLAG (char8_type_node) = 1;
787
788 char16_type_node = make_unsigned_type (16);
789 TYPE_STRING_FLAG (char16_type_node) = 1;
790
791 char32_type_node = make_unsigned_type (32);
792 TYPE_STRING_FLAG (char32_type_node) = 1;
793
794 /* Imaginary types. */
795 ifloat_type_node = build_distinct_type_copy (float_type_node);
796 TYPE_IMAGINARY_FLOAT (ifloat_type_node) = 1;
797
798 idouble_type_node = build_distinct_type_copy (double_type_node);
799 TYPE_IMAGINARY_FLOAT (idouble_type_node) = 1;
800
801 ireal_type_node = build_distinct_type_copy (long_double_type_node);
802 TYPE_IMAGINARY_FLOAT (ireal_type_node) = 1;
803
804 /* Used for ModuleInfo, ClassInfo, and Interface decls. */
805 unknown_type_node = make_node (RECORD_TYPE);
806
807 /* Make sure we get a unique function type, so we can give
808 its pointer type a name. (This wins for gdb). */
809 {
810 tree vfunc_type = make_node (FUNCTION_TYPE);
811 TREE_TYPE (vfunc_type) = d_int_type;
812 TYPE_ARG_TYPES (vfunc_type) = NULL_TREE;
813 layout_type (vfunc_type);
814
815 vtable_entry_type = build_pointer_type (vfunc_type);
816 }
817
818 vtbl_ptr_type_node = build_pointer_type (vtable_entry_type);
819 layout_type (vtbl_ptr_type_node);
820
821 /* When an object is accessed via an interface, this type appears
822 as the first entry in its vtable. */
823 {
824 tree domain = build_index_type (size_int (3));
825 vtbl_interface_type_node = build_array_type (ptr_type_node, domain);
826 }
827
828 /* Use `void[]' as a generic dynamic array type. */
829 array_type_node = make_struct_type ("__builtin_void[]", 2,
830 get_identifier ("length"), size_type_node,
831 get_identifier ("ptr"), ptr_type_node);
832 TYPE_DYNAMIC_ARRAY (array_type_node) = 1;
833
834 null_array_node = d_array_value (array_type_node, size_zero_node,
835 null_pointer_node);
836 }
837
838 /* Handle default attributes. */
839
840 enum built_in_attribute
841 {
842 #define DEF_ATTR_NULL_TREE(ENUM) ENUM,
843 #define DEF_ATTR_INT(ENUM, VALUE) ENUM,
844 #define DEF_ATTR_STRING(ENUM, VALUE) ENUM,
845 #define DEF_ATTR_IDENT(ENUM, STRING) ENUM,
846 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) ENUM,
847 #include "builtin-attrs.def"
848 #undef DEF_ATTR_NULL_TREE
849 #undef DEF_ATTR_INT
850 #undef DEF_ATTR_STRING
851 #undef DEF_ATTR_IDENT
852 #undef DEF_ATTR_TREE_LIST
853 ATTR_LAST
854 };
855
856 static GTY(()) tree built_in_attributes[(int) ATTR_LAST];
857
858 /* Initialize the attribute table for all the supported builtins. */
859
860 static void
861 d_init_attributes (void)
862 {
863 /* Fill in the built_in_attributes array. */
864 #define DEF_ATTR_NULL_TREE(ENUM) \
865 built_in_attributes[(int) ENUM] = NULL_TREE;
866 # define DEF_ATTR_INT(ENUM, VALUE) \
867 built_in_attributes[(int) ENUM] = build_int_cst (NULL_TREE, VALUE);
868 #define DEF_ATTR_STRING(ENUM, VALUE) \
869 built_in_attributes[(int) ENUM] = build_string (strlen (VALUE), VALUE);
870 #define DEF_ATTR_IDENT(ENUM, STRING) \
871 built_in_attributes[(int) ENUM] = get_identifier (STRING);
872 #define DEF_ATTR_TREE_LIST(ENUM, PURPOSE, VALUE, CHAIN) \
873 built_in_attributes[(int) ENUM] \
874 = tree_cons (built_in_attributes[(int) PURPOSE], \
875 built_in_attributes[(int) VALUE], \
876 built_in_attributes[(int) CHAIN]);
877 #include "builtin-attrs.def"
878 #undef DEF_ATTR_NULL_TREE
879 #undef DEF_ATTR_INT
880 #undef DEF_ATTR_STRING
881 #undef DEF_ATTR_IDENT
882 #undef DEF_ATTR_TREE_LIST
883 }
884
885 /* Builtin types. */
886
887 enum d_builtin_type
888 {
889 #define DEF_PRIMITIVE_TYPE(NAME, VALUE) NAME,
890 #define DEF_FUNCTION_TYPE_0(NAME, RETURN) NAME,
891 #define DEF_FUNCTION_TYPE_1(NAME, RETURN, ARG1) NAME,
892 #define DEF_FUNCTION_TYPE_2(NAME, RETURN, ARG1, ARG2) NAME,
893 #define DEF_FUNCTION_TYPE_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
894 #define DEF_FUNCTION_TYPE_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
895 #define DEF_FUNCTION_TYPE_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) NAME,
896 #define DEF_FUNCTION_TYPE_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
897 ARG6) NAME,
898 #define DEF_FUNCTION_TYPE_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
899 ARG6, ARG7) NAME,
900 #define DEF_FUNCTION_TYPE_8(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
901 ARG6, ARG7, ARG8) NAME,
902 #define DEF_FUNCTION_TYPE_9(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
903 ARG6, ARG7, ARG8, ARG9) NAME,
904 #define DEF_FUNCTION_TYPE_10(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
905 ARG6, ARG7, ARG8, ARG9, ARG10) NAME,
906 #define DEF_FUNCTION_TYPE_11(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
907 ARG6, ARG7, ARG8, ARG9, ARG10, ARG11) NAME,
908 #define DEF_FUNCTION_TYPE_VAR_0(NAME, RETURN) NAME,
909 #define DEF_FUNCTION_TYPE_VAR_1(NAME, RETURN, ARG1) NAME,
910 #define DEF_FUNCTION_TYPE_VAR_2(NAME, RETURN, ARG1, ARG2) NAME,
911 #define DEF_FUNCTION_TYPE_VAR_3(NAME, RETURN, ARG1, ARG2, ARG3) NAME,
912 #define DEF_FUNCTION_TYPE_VAR_4(NAME, RETURN, ARG1, ARG2, ARG3, ARG4) NAME,
913 #define DEF_FUNCTION_TYPE_VAR_5(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
914 NAME,
915 #define DEF_FUNCTION_TYPE_VAR_6(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
916 ARG6) NAME,
917 #define DEF_FUNCTION_TYPE_VAR_7(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
918 ARG6, ARG7) NAME,
919 #define DEF_FUNCTION_TYPE_VAR_11(NAME, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
920 ARG6, ARG7, ARG8, ARG9, ARG10, ARG11) NAME,
921 #define DEF_POINTER_TYPE(NAME, TYPE) NAME,
922 #include "builtin-types.def"
923 #undef DEF_PRIMITIVE_TYPE
924 #undef DEF_FUNCTION_TYPE_0
925 #undef DEF_FUNCTION_TYPE_1
926 #undef DEF_FUNCTION_TYPE_2
927 #undef DEF_FUNCTION_TYPE_3
928 #undef DEF_FUNCTION_TYPE_4
929 #undef DEF_FUNCTION_TYPE_5
930 #undef DEF_FUNCTION_TYPE_6
931 #undef DEF_FUNCTION_TYPE_7
932 #undef DEF_FUNCTION_TYPE_8
933 #undef DEF_FUNCTION_TYPE_9
934 #undef DEF_FUNCTION_TYPE_10
935 #undef DEF_FUNCTION_TYPE_11
936 #undef DEF_FUNCTION_TYPE_VAR_0
937 #undef DEF_FUNCTION_TYPE_VAR_1
938 #undef DEF_FUNCTION_TYPE_VAR_2
939 #undef DEF_FUNCTION_TYPE_VAR_3
940 #undef DEF_FUNCTION_TYPE_VAR_4
941 #undef DEF_FUNCTION_TYPE_VAR_5
942 #undef DEF_FUNCTION_TYPE_VAR_6
943 #undef DEF_FUNCTION_TYPE_VAR_7
944 #undef DEF_FUNCTION_TYPE_VAR_11
945 #undef DEF_POINTER_TYPE
946 BT_LAST
947 };
948
949 typedef enum d_builtin_type builtin_type;
950
951 /* A temporary array used in communication with def_fn_type. */
952 static GTY(()) tree builtin_types[(int) BT_LAST + 1];
953
954 /* A helper function for d_init_builtins. Build function type for DEF with
955 return type RET and N arguments. If VAR is true, then the function should
956 be variadic after those N arguments.
957
958 Takes special care not to ICE if any of the types involved are
959 error_mark_node, which indicates that said type is not in fact available
960 (see builtin_type_for_size). In which case the function type as a whole
961 should be error_mark_node. */
962
963 static void
964 def_fn_type (builtin_type def, builtin_type ret, bool var, int n, ...)
965 {
966 tree t;
967 tree *args = XALLOCAVEC (tree, n);
968 va_list list;
969 int i;
970
971 va_start (list, n);
972 for (i = 0; i < n; ++i)
973 {
974 builtin_type a = (builtin_type) va_arg (list, int);
975 t = builtin_types[a];
976 if (t == error_mark_node)
977 goto egress;
978 args[i] = t;
979 }
980
981 t = builtin_types[ret];
982 if (t == error_mark_node)
983 goto egress;
984 if (var)
985 t = build_varargs_function_type_array (t, n, args);
986 else
987 t = build_function_type_array (t, n, args);
988
989 egress:
990 builtin_types[def] = t;
991 va_end (list);
992 }
993
994 /* Create builtin types and functions. VA_LIST_REF_TYPE_NODE and
995 VA_LIST_ARG_TYPE_NODE are used in builtin-types.def. */
996
997 static void
998 d_define_builtins (tree va_list_ref_type_node ATTRIBUTE_UNUSED,
999 tree va_list_arg_type_node ATTRIBUTE_UNUSED)
1000 {
1001 #define DEF_PRIMITIVE_TYPE(ENUM, VALUE) \
1002 builtin_types[(int) ENUM] = VALUE;
1003 #define DEF_FUNCTION_TYPE_0(ENUM, RETURN) \
1004 def_fn_type (ENUM, RETURN, 0, 0);
1005 #define DEF_FUNCTION_TYPE_1(ENUM, RETURN, ARG1) \
1006 def_fn_type (ENUM, RETURN, 0, 1, ARG1);
1007 #define DEF_FUNCTION_TYPE_2(ENUM, RETURN, ARG1, ARG2) \
1008 def_fn_type (ENUM, RETURN, 0, 2, ARG1, ARG2);
1009 #define DEF_FUNCTION_TYPE_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
1010 def_fn_type (ENUM, RETURN, 0, 3, ARG1, ARG2, ARG3);
1011 #define DEF_FUNCTION_TYPE_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
1012 def_fn_type (ENUM, RETURN, 0, 4, ARG1, ARG2, ARG3, ARG4);
1013 #define DEF_FUNCTION_TYPE_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
1014 def_fn_type (ENUM, RETURN, 0, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
1015 #define DEF_FUNCTION_TYPE_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1016 ARG6) \
1017 def_fn_type (ENUM, RETURN, 0, 6, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
1018 #define DEF_FUNCTION_TYPE_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1019 ARG6, ARG7) \
1020 def_fn_type (ENUM, RETURN, 0, 7, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7);
1021 #define DEF_FUNCTION_TYPE_8(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1022 ARG6, ARG7, ARG8) \
1023 def_fn_type (ENUM, RETURN, 0, 8, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
1024 ARG7, ARG8);
1025 #define DEF_FUNCTION_TYPE_9(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1026 ARG6, ARG7, ARG8, ARG9) \
1027 def_fn_type (ENUM, RETURN, 0, 9, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
1028 ARG7, ARG8, ARG9);
1029 #define DEF_FUNCTION_TYPE_10(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1030 ARG6, ARG7, ARG8, ARG9, ARG10) \
1031 def_fn_type (ENUM, RETURN, 0, 10, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
1032 ARG7, ARG8, ARG9, ARG10);
1033 #define DEF_FUNCTION_TYPE_11(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1034 ARG6, ARG7, ARG8, ARG9, ARG10, ARG11) \
1035 def_fn_type (ENUM, RETURN, 0, 11, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
1036 ARG7, ARG8, ARG9, ARG10, ARG11);
1037 #define DEF_FUNCTION_TYPE_VAR_0(ENUM, RETURN) \
1038 def_fn_type (ENUM, RETURN, 1, 0);
1039 #define DEF_FUNCTION_TYPE_VAR_1(ENUM, RETURN, ARG1) \
1040 def_fn_type (ENUM, RETURN, 1, 1, ARG1);
1041 #define DEF_FUNCTION_TYPE_VAR_2(ENUM, RETURN, ARG1, ARG2) \
1042 def_fn_type (ENUM, RETURN, 1, 2, ARG1, ARG2);
1043 #define DEF_FUNCTION_TYPE_VAR_3(ENUM, RETURN, ARG1, ARG2, ARG3) \
1044 def_fn_type (ENUM, RETURN, 1, 3, ARG1, ARG2, ARG3);
1045 #define DEF_FUNCTION_TYPE_VAR_4(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4) \
1046 def_fn_type (ENUM, RETURN, 1, 4, ARG1, ARG2, ARG3, ARG4);
1047 #define DEF_FUNCTION_TYPE_VAR_5(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5) \
1048 def_fn_type (ENUM, RETURN, 1, 5, ARG1, ARG2, ARG3, ARG4, ARG5);
1049 #define DEF_FUNCTION_TYPE_VAR_6(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1050 ARG6) \
1051 def_fn_type (ENUM, RETURN, 1, 6, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6);
1052 #define DEF_FUNCTION_TYPE_VAR_7(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1053 ARG6, ARG7) \
1054 def_fn_type (ENUM, RETURN, 1, 7, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7);
1055 #define DEF_FUNCTION_TYPE_VAR_11(ENUM, RETURN, ARG1, ARG2, ARG3, ARG4, ARG5, \
1056 ARG6, ARG7, ARG8, ARG9, ARG10, ARG11) \
1057 def_fn_type (ENUM, RETURN, 1, 11, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, \
1058 ARG7, ARG8, ARG9, ARG10, ARG11);
1059 #define DEF_POINTER_TYPE(ENUM, TYPE) \
1060 builtin_types[(int) ENUM] = build_pointer_type (builtin_types[(int) TYPE]);
1061
1062 #include "builtin-types.def"
1063
1064 #undef DEF_PRIMITIVE_TYPE
1065 #undef DEF_FUNCTION_TYPE_1
1066 #undef DEF_FUNCTION_TYPE_2
1067 #undef DEF_FUNCTION_TYPE_3
1068 #undef DEF_FUNCTION_TYPE_4
1069 #undef DEF_FUNCTION_TYPE_5
1070 #undef DEF_FUNCTION_TYPE_6
1071 #undef DEF_FUNCTION_TYPE_7
1072 #undef DEF_FUNCTION_TYPE_8
1073 #undef DEF_FUNCTION_TYPE_9
1074 #undef DEF_FUNCTION_TYPE_10
1075 #undef DEF_FUNCTION_TYPE_11
1076 #undef DEF_FUNCTION_TYPE_VAR_0
1077 #undef DEF_FUNCTION_TYPE_VAR_1
1078 #undef DEF_FUNCTION_TYPE_VAR_2
1079 #undef DEF_FUNCTION_TYPE_VAR_3
1080 #undef DEF_FUNCTION_TYPE_VAR_4
1081 #undef DEF_FUNCTION_TYPE_VAR_5
1082 #undef DEF_FUNCTION_TYPE_VAR_6
1083 #undef DEF_FUNCTION_TYPE_VAR_7
1084 #undef DEF_FUNCTION_TYPE_VAR_11
1085 #undef DEF_POINTER_TYPE
1086 builtin_types[(int) BT_LAST] = NULL_TREE;
1087
1088 d_init_attributes ();
1089
1090 #define DEF_BUILTIN(ENUM, NAME, CLASS, TYPE, LIBTYPE, BOTH_P, FALLBACK_P, \
1091 NONANSI_P, ATTRS, IMPLICIT, COND) \
1092 if (NAME && COND) \
1093 do_build_builtin_fn (ENUM, NAME, CLASS, \
1094 builtin_types[(int) TYPE], \
1095 BOTH_P, FALLBACK_P, \
1096 built_in_attributes[(int) ATTRS], IMPLICIT);
1097 #include "builtins.def"
1098 #undef DEF_BUILTIN
1099 }
1100
1101 /* Build builtin functions and types for the D language frontend. */
1102
1103 void
1104 d_init_builtins (void)
1105 {
1106 /* Build the "standard" abi va_list. */
1107 Type::tvalist = build_frontend_type (va_list_type_node);
1108 if (!Type::tvalist)
1109 {
1110 error ("cannot represent built-in va_list type in D");
1111 gcc_unreachable ();
1112 }
1113
1114 /* Map the va_list type to the D frontend Type. This is to prevent both
1115 errors in gimplification or an ICE in targetm.canonical_va_list_type. */
1116 Type::tvalist->ctype = va_list_type_node;
1117 TYPE_LANG_SPECIFIC (va_list_type_node) = build_lang_type (Type::tvalist);
1118
1119 d_build_c_type_nodes ();
1120 d_build_d_type_nodes ();
1121
1122 if (TREE_CODE (va_list_type_node) == ARRAY_TYPE)
1123 {
1124 /* It might seem natural to make the argument type a pointer, but there
1125 is no implicit casting from arrays to pointers in D. */
1126 d_define_builtins (va_list_type_node, va_list_type_node);
1127 }
1128 else
1129 {
1130 d_define_builtins (build_reference_type (va_list_type_node),
1131 va_list_type_node);
1132 }
1133
1134 targetm.init_builtins ();
1135 build_common_builtin_nodes ();
1136 }
1137
1138 /* Registration of machine- or os-specific builtin types.
1139 Add to builtin types list for maybe processing later
1140 if `gcc.builtins' was imported into the current module. */
1141
1142 void
1143 d_register_builtin_type (tree type, const char *name)
1144 {
1145 tree decl = build_decl (UNKNOWN_LOCATION, TYPE_DECL,
1146 get_identifier (name), type);
1147 DECL_ARTIFICIAL (decl) = 1;
1148
1149 if (!TYPE_NAME (type))
1150 TYPE_NAME (type) = decl;
1151
1152 vec_safe_push (gcc_builtins_types, decl);
1153 }
1154
1155 /* Add DECL to builtin functions list for maybe processing later
1156 if `gcc.builtins' was imported into the current module. */
1157
1158 tree
1159 d_builtin_function (tree decl)
1160 {
1161 if (!flag_no_builtin && DECL_ASSEMBLER_NAME_SET_P (decl))
1162 vec_safe_push (gcc_builtins_libfuncs, decl);
1163
1164 vec_safe_push (gcc_builtins_functions, decl);
1165 return decl;
1166 }
1167
1168
1169 #include "gt-d-d-builtins.h"