1627f7eb2Smrg /* GNU D Compiler bindings for built-in functions and types. 2*4c3eb207Smrg Copyright (C) 2006-2020 Free Software Foundation, Inc. 3627f7eb2Smrg 4627f7eb2Smrg GCC is free software; you can redistribute it and/or modify it under 5627f7eb2Smrg the terms of the GNU General Public License as published by the Free 6627f7eb2Smrg Software Foundation; either version 3, or (at your option) any later 7627f7eb2Smrg version. 8627f7eb2Smrg 9627f7eb2Smrg GCC is distributed in the hope that it will be useful, but WITHOUT ANY 10627f7eb2Smrg WARRANTY; without even the implied warranty of MERCHANTABILITY or 11627f7eb2Smrg FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 12627f7eb2Smrg for more details. 13627f7eb2Smrg 14627f7eb2Smrg Under Section 7 of GPL version 3, you are granted additional 15627f7eb2Smrg permissions described in the GCC Runtime Library Exception, version 16627f7eb2Smrg 3.1, as published by the Free Software Foundation. 17627f7eb2Smrg 18627f7eb2Smrg You should have received a copy of the GNU General Public License and 19627f7eb2Smrg a copy of the GCC Runtime Library Exception along with this program; 20627f7eb2Smrg see the files COPYING3 and COPYING.RUNTIME respectively. If not, see 21627f7eb2Smrg <http://www.gnu.org/licenses/>. */ 22627f7eb2Smrg 23627f7eb2Smrg /** 24627f7eb2Smrg Declarations are automatically created by the compiler. All 25627f7eb2Smrg declarations start with "__builtin_". Refer to _builtins.def in the 26627f7eb2Smrg GCC source for a list of functions. Not all of the functions are 27627f7eb2Smrg supported. 28627f7eb2Smrg 29627f7eb2Smrg In addition to built-in functions, the following types are defined. 30627f7eb2Smrg 31627f7eb2Smrg $(TABLE 32627f7eb2Smrg $(TR $(TD ___builtin_va_list) $(TD The target's va_list type )) 33627f7eb2Smrg $(TR $(TD ___builtin_clong ) $(TD The D equivalent of the target's 34627f7eb2Smrg C "long" type )) 35627f7eb2Smrg $(TR $(TD ___builtin_culong ) $(TD The D equivalent of the target's 36627f7eb2Smrg C "unsigned long" type )) 37627f7eb2Smrg $(TR $(TD ___builtin_machine_int ) $(TD Signed word-sized integer )) 38627f7eb2Smrg $(TR $(TD ___builtin_machine_uint) $(TD Unsigned word-sized integer )) 39627f7eb2Smrg $(TR $(TD ___builtin_pointer_int ) $(TD Signed pointer-sized integer )) 40627f7eb2Smrg $(TR $(TD ___builtin_pointer_uint) $(TD Unsigned pointer-sized integer )) 41627f7eb2Smrg ) 42627f7eb2Smrg */ 43627f7eb2Smrg 44627f7eb2Smrg module gcc.builtins; 45