1 /* Header file for libgcc2.c. */
2 /* Copyright (C) 2000, 2001
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2, or (at your option) any later
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
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING. If not, write to the Free
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 /* As a special exception, if you link this library with other files,
23 some of which are compiled with GCC, to produce an executable,
24 this library does not by itself cause the resulting executable
25 to be covered by the GNU General Public License.
26 This exception does not however invalidate any other reasons why
27 the executable file might be covered by the GNU General Public License. */
33 #pragma GCC visibility push(default)
35 extern int __gcc_bcmp (const unsigned char *, const unsigned char *, size_t);
36 extern void __clear_cache (char *, char *);
37 extern void __eprintf (const char *, const char *, unsigned int, const char *)
38 __attribute__ ((__noreturn__
));
40 struct exception_descriptor
;
41 extern short int __get_eh_table_language (struct exception_descriptor
*);
42 extern short int __get_eh_table_version (struct exception_descriptor
*);
44 /* Permit the tm.h file to select the endianness to use just for this
45 file. This is used when the endianness is determined when the
48 #ifndef LIBGCC2_WORDS_BIG_ENDIAN
49 #define LIBGCC2_WORDS_BIG_ENDIAN WORDS_BIG_ENDIAN
52 #ifndef LIBGCC2_LONG_DOUBLE_TYPE_SIZE
53 #define LIBGCC2_LONG_DOUBLE_TYPE_SIZE LONG_DOUBLE_TYPE_SIZE
56 #ifndef MIN_UNITS_PER_WORD
57 #define MIN_UNITS_PER_WORD UNITS_PER_WORD
60 /* In the first part of this file, we are interfacing to calls generated
61 by the compiler itself. These calls pass values into these routines
62 which have very specific modes (rather than very specific types), and
63 these compiler-generated calls also expect any return values to have
64 very specific modes (rather than very specific types). Thus, we need
65 to avoid using regular C language type names in this part of the file
66 because the sizes for those types can be configured to be anything.
67 Instead we use the following special type names. */
69 typedef int QItype
__attribute__ ((mode (QI
)));
70 typedef unsigned int UQItype
__attribute__ ((mode (QI
)));
71 typedef int HItype
__attribute__ ((mode (HI
)));
72 typedef unsigned int UHItype
__attribute__ ((mode (HI
)));
73 #if MIN_UNITS_PER_WORD > 1
74 /* These typedefs are usually forbidden on dsp's with UNITS_PER_WORD 1. */
75 typedef int SItype
__attribute__ ((mode (SI
)));
76 typedef unsigned int USItype
__attribute__ ((mode (SI
)));
77 #if LONG_LONG_TYPE_SIZE > 32
78 /* These typedefs are usually forbidden on archs with UNITS_PER_WORD 2. */
79 typedef int DItype
__attribute__ ((mode (DI
)));
80 typedef unsigned int UDItype
__attribute__ ((mode (DI
)));
81 #if MIN_UNITS_PER_WORD > 4
82 /* These typedefs are usually forbidden on archs with UNITS_PER_WORD 4. */
83 typedef int TItype
__attribute__ ((mode (TI
)));
84 typedef unsigned int UTItype
__attribute__ ((mode (TI
)));
89 #if BITS_PER_UNIT == 8
91 typedef float SFtype
__attribute__ ((mode (SF
)));
92 typedef float DFtype
__attribute__ ((mode (DF
)));
94 #if LIBGCC2_LONG_DOUBLE_TYPE_SIZE == 80
95 typedef float XFtype
__attribute__ ((mode (XF
)));
97 #if LIBGCC2_LONG_DOUBLE_TYPE_SIZE == 128
98 typedef float TFtype
__attribute__ ((mode (TF
)));
101 #else /* BITS_PER_UNIT != 8 */
103 /* On dsp's there are usually qf/hf/tqf modes used instead of the above.
104 For now we don't support them in libgcc2.c. */
122 #endif /* BITS_PER_UNIT != 8 */
124 typedef int word_type
__attribute__ ((mode (__word__
)));
126 /* Make sure that we don't accidentally use any normal C language built-in
127 type names in the first part of this file. Instead we want to use *only*
128 the type names defined above. The following macro definitions insure
129 that if we *do* accidentally use some normal C language built-in type name,
130 we will get a syntax error. */
132 #define char bogus_type
133 #define short bogus_type
134 #define int bogus_type
135 #define long bogus_type
136 #define unsigned bogus_type
137 #define float bogus_type
138 #define double bogus_type
140 #if MIN_UNITS_PER_WORD > 4
141 #define W_TYPE_SIZE (8 * BITS_PER_UNIT)
143 #define UWtype UDItype
144 #define HWtype DItype
145 #define UHWtype UDItype
146 #define DWtype TItype
147 #define UDWtype UTItype
148 #define __NW(a,b) __ ## a ## di ## b
149 #define __NDW(a,b) __ ## a ## ti ## b
150 #elif MIN_UNITS_PER_WORD > 2 \
151 || (MIN_UNITS_PER_WORD > 1 && LONG_LONG_TYPE_SIZE > 32)
152 #define W_TYPE_SIZE (4 * BITS_PER_UNIT)
154 #define UWtype USItype
155 #define HWtype SItype
156 #define UHWtype USItype
157 #define DWtype DItype
158 #define UDWtype UDItype
159 #define __NW(a,b) __ ## a ## si ## b
160 #define __NDW(a,b) __ ## a ## di ## b
161 #elif MIN_UNITS_PER_WORD > 1
162 #define W_TYPE_SIZE (2 * BITS_PER_UNIT)
164 #define UWtype UHItype
165 #define HWtype HItype
166 #define UHWtype UHItype
167 #define DWtype SItype
168 #define UDWtype USItype
169 #define __NW(a,b) __ ## a ## hi ## b
170 #define __NDW(a,b) __ ## a ## si ## b
172 #define W_TYPE_SIZE BITS_PER_UNIT
174 #define UWtype UQItype
175 #define HWtype QItype
176 #define UHWtype UQItype
177 #define DWtype HItype
178 #define UDWtype UHItype
179 #define __NW(a,b) __ ## a ## qi ## b
180 #define __NDW(a,b) __ ## a ## hi ## b
183 #define Wtype_MAX ((Wtype)(((UWtype)1 << (W_TYPE_SIZE - 1)) - 1))
184 #define Wtype_MIN (- Wtype_MAX - 1)
186 #define __muldi3 __NDW(mul,3)
187 #define __divdi3 __NDW(div,3)
188 #define __udivdi3 __NDW(udiv,3)
189 #define __moddi3 __NDW(mod,3)
190 #define __umoddi3 __NDW(umod,3)
191 #define __negdi2 __NDW(neg,2)
192 #define __lshrdi3 __NDW(lshr,3)
193 #define __ashldi3 __NDW(ashl,3)
194 #define __ashrdi3 __NDW(ashr,3)
195 #define __cmpdi2 __NDW(cmp,2)
196 #define __ucmpdi2 __NDW(ucmp,2)
197 #define __udivmoddi4 __NDW(udivmod,4)
198 #define __fixunstfDI __NDW(fixunstf,)
199 #define __fixtfdi __NDW(fixtf,)
200 #define __fixunsxfDI __NDW(fixunsxf,)
201 #define __fixxfdi __NDW(fixxf,)
202 #define __fixunsdfDI __NDW(fixunsdf,)
203 #define __fixdfdi __NDW(fixdf,)
204 #define __fixunssfDI __NDW(fixunssf,)
205 #define __fixsfdi __NDW(fixsf,)
206 #define __floatdixf __NDW(float,xf)
207 #define __floatditf __NDW(float,tf)
208 #define __floatdidf __NDW(float,df)
209 #define __floatdisf __NDW(float,sf)
210 #define __fixunsxfSI __NW(fixunsxf,)
211 #define __fixunstfSI __NW(fixunstf,)
212 #define __fixunsdfSI __NW(fixunsdf,)
213 #define __fixunssfSI __NW(fixunssf,)
215 #define __ffsSI2 __NW(ffs,2)
216 #define __clzSI2 __NW(clz,2)
217 #define __ctzSI2 __NW(ctz,2)
218 #define __popcountSI2 __NW(popcount,2)
219 #define __paritySI2 __NW(parity,2)
220 #define __ffsDI2 __NDW(ffs,2)
221 #define __clzDI2 __NDW(clz,2)
222 #define __ctzDI2 __NDW(ctz,2)
223 #define __popcountDI2 __NDW(popcount,2)
224 #define __parityDI2 __NDW(parity,2)
226 extern DWtype
__muldi3 (DWtype
, DWtype
);
227 extern DWtype
__divdi3 (DWtype
, DWtype
);
228 extern UDWtype
__udivdi3 (UDWtype
, UDWtype
);
229 extern UDWtype
__umoddi3 (UDWtype
, UDWtype
);
230 extern DWtype
__moddi3 (DWtype
, DWtype
);
232 /* __udivmoddi4 is static inline when building other libgcc2 portions. */
233 #if (!defined (L_udivdi3) && !defined (L_divdi3) && \
234 !defined (L_umoddi3) && !defined (L_moddi3))
235 extern UDWtype
__udivmoddi4 (UDWtype
, UDWtype
, UDWtype
*);
238 /* __negdi2 is static inline when building other libgcc2 portions. */
239 #if !defined(L_divdi3) && !defined(L_moddi3)
240 extern DWtype
__negdi2 (DWtype
);
243 extern DWtype
__lshrdi3 (DWtype
, word_type
);
244 extern DWtype
__ashldi3 (DWtype
, word_type
);
245 extern DWtype
__ashrdi3 (DWtype
, word_type
);
247 /* __udiv_w_sdiv is static inline when building other libgcc2 portions. */
248 #if (!defined(L_udivdi3) && !defined(L_divdi3) && \
249 !defined(L_umoddi3) && !defined(L_moddi3))
250 extern UWtype
__udiv_w_sdiv (UWtype
*, UWtype
, UWtype
, UWtype
);
253 extern word_type
__cmpdi2 (DWtype
, DWtype
);
254 extern word_type
__ucmpdi2 (DWtype
, DWtype
);
256 extern Wtype
__absvsi2 (Wtype
);
257 extern DWtype
__absvdi2 (DWtype
);
258 extern Wtype
__addvsi3 (Wtype
, Wtype
);
259 extern DWtype
__addvdi3 (DWtype
, DWtype
);
260 extern Wtype
__subvsi3 (Wtype
, Wtype
);
261 extern DWtype
__subvdi3 (DWtype
, DWtype
);
262 extern Wtype
__mulvsi3 (Wtype
, Wtype
);
263 extern DWtype
__mulvdi3 (DWtype
, DWtype
);
264 extern Wtype
__negvsi2 (Wtype
);
265 extern DWtype
__negvdi2 (DWtype
);
267 #if BITS_PER_UNIT == 8
268 extern DWtype
__fixdfdi (DFtype
);
269 extern DWtype
__fixsfdi (SFtype
);
270 extern DFtype
__floatdidf (DWtype
);
271 extern SFtype
__floatdisf (DWtype
);
272 extern UWtype
__fixunsdfSI (DFtype
);
273 extern UWtype
__fixunssfSI (SFtype
);
274 extern DWtype
__fixunsdfDI (DFtype
);
275 extern DWtype
__fixunssfDI (SFtype
);
277 #if LIBGCC2_LONG_DOUBLE_TYPE_SIZE == 80
278 extern DWtype
__fixxfdi (XFtype
);
279 extern DWtype
__fixunsxfDI (XFtype
);
280 extern XFtype
__floatdixf (DWtype
);
281 extern UWtype
__fixunsxfSI (XFtype
);
284 #if LIBGCC2_LONG_DOUBLE_TYPE_SIZE == 128
285 extern DWtype
__fixunstfDI (TFtype
);
286 extern DWtype
__fixtfdi (TFtype
);
287 extern TFtype
__floatditf (DWtype
);
289 #endif /* BITS_PER_UNIT == 8 */
291 /* DWstructs are pairs of Wtype values in the order determined by
292 LIBGCC2_WORDS_BIG_ENDIAN. */
294 #if LIBGCC2_WORDS_BIG_ENDIAN
295 struct DWstruct
{Wtype high
, low
;};
297 struct DWstruct
{Wtype low
, high
;};
300 /* We need this union to unpack/pack DImode values, since we don't have
301 any arithmetic yet. Incoming DImode parameters are stored into the
302 `ll' field, and the unpacked result is read from the struct `s'. */
310 #include "longlong.h"
313 extern int __clzDI2 (UDWtype
);
314 extern int __clzSI2 (UWtype
);
315 extern int __ctzSI2 (UWtype
);
316 extern int __ffsSI2 (UWtype
);
317 extern int __ffsDI2 (DWtype
);
318 extern int __ctzDI2 (UDWtype
);
319 extern int __popcountSI2 (UWtype
);
320 extern int __popcountDI2 (UDWtype
);
321 extern int __paritySI2 (UWtype
);
322 extern int __parityDI2 (UDWtype
);
323 #define int bogus_type
325 extern void __enable_execute_stack (void *);
327 #pragma GCC visibility pop
329 #endif /* ! GCC_LIBGCC2_H */