1 /* More subroutines needed by GCC output code on some machines. */
2 /* Compile this one with gcc. */
3 /* Copyright (C) 1989, 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 2, or (at your option) any later
13 In addition to the permissions in the GNU General Public License, the
14 Free Software Foundation gives you unlimited permission to link the
15 compiled version of this file into combinations with other programs,
16 and to distribute those combinations without any restriction coming
17 from the use of this file. (The General Public License restrictions
18 do apply in other respects; for example, they cover modification of
19 the file, and distribution when not linked into a combine
22 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
23 WARRANTY; without even the implied warranty of MERCHANTABILITY or
24 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
27 You should have received a copy of the GNU General Public License
28 along with GCC; see the file COPYING. If not, write to the Free
29 Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
34 #include "coretypes.h"
37 #ifdef HAVE_GAS_HIDDEN
38 #define ATTRIBUTE_HIDDEN __attribute__ ((__visibility__ ("hidden")))
40 #define ATTRIBUTE_HIDDEN
43 #ifndef MIN_UNITS_PER_WORD
44 #define MIN_UNITS_PER_WORD UNITS_PER_WORD
47 /* Work out the largest "word" size that we can deal with on this target. */
48 #if MIN_UNITS_PER_WORD > 4
49 # define LIBGCC2_MAX_UNITS_PER_WORD 8
50 #elif (MIN_UNITS_PER_WORD > 2 \
51 || (MIN_UNITS_PER_WORD > 1 && LONG_LONG_TYPE_SIZE > 32))
52 # define LIBGCC2_MAX_UNITS_PER_WORD 4
54 # define LIBGCC2_MAX_UNITS_PER_WORD MIN_UNITS_PER_WORD
57 /* Work out what word size we are using for this compilation.
58 The value can be set on the command line. */
59 #ifndef LIBGCC2_UNITS_PER_WORD
60 #define LIBGCC2_UNITS_PER_WORD LIBGCC2_MAX_UNITS_PER_WORD
63 #if LIBGCC2_UNITS_PER_WORD <= LIBGCC2_MAX_UNITS_PER_WORD
67 #ifdef DECLARE_LIBRARY_RENAMES
68 DECLARE_LIBRARY_RENAMES
71 #if defined (L_negdi2)
75 const DWunion uu
= {.ll
= u
};
76 const DWunion w
= { {.low
= -uu
.s
.low
,
77 .high
= -uu
.s
.high
- ((UWtype
) -uu
.s
.low
> 0) } };
85 __addvSI3 (Wtype a
, Wtype b
)
87 const Wtype w
= a
+ b
;
89 if (b
>= 0 ? w
< a
: w
> a
)
94 #ifdef COMPAT_SIMODE_TRAPPING_ARITHMETIC
96 __addvsi3 (SItype a
, SItype b
)
98 const SItype w
= a
+ b
;
100 if (b
>= 0 ? w
< a
: w
> a
)
105 #endif /* COMPAT_SIMODE_TRAPPING_ARITHMETIC */
110 __addvDI3 (DWtype a
, DWtype b
)
112 const DWtype w
= a
+ b
;
114 if (b
>= 0 ? w
< a
: w
> a
)
123 __subvSI3 (Wtype a
, Wtype b
)
125 const Wtype w
= a
- b
;
127 if (b
>= 0 ? w
> a
: w
< a
)
132 #ifdef COMPAT_SIMODE_TRAPPING_ARITHMETIC
134 __subvsi3 (SItype a
, SItype b
)
136 const SItype w
= a
- b
;
138 if (b
>= 0 ? w
> a
: w
< a
)
143 #endif /* COMPAT_SIMODE_TRAPPING_ARITHMETIC */
148 __subvDI3 (DWtype a
, DWtype b
)
150 const DWtype w
= a
- b
;
152 if (b
>= 0 ? w
> a
: w
< a
)
161 __mulvSI3 (Wtype a
, Wtype b
)
163 const DWtype w
= (DWtype
) a
* (DWtype
) b
;
165 if ((Wtype
) (w
>> W_TYPE_SIZE
) != (Wtype
) w
>> (W_TYPE_SIZE
- 1))
170 #ifdef COMPAT_SIMODE_TRAPPING_ARITHMETIC
172 #define WORD_SIZE (sizeof (SItype) * BITS_PER_UNIT)
174 __mulvsi3 (SItype a
, SItype b
)
176 const DItype w
= (DItype
) a
* (DItype
) b
;
178 if ((SItype
) (w
>> WORD_SIZE
) != (SItype
) w
>> (WORD_SIZE
-1))
183 #endif /* COMPAT_SIMODE_TRAPPING_ARITHMETIC */
192 if (a
>= 0 ? w
> 0 : w
< 0)
197 #ifdef COMPAT_SIMODE_TRAPPING_ARITHMETIC
203 if (a
>= 0 ? w
> 0 : w
< 0)
208 #endif /* COMPAT_SIMODE_TRAPPING_ARITHMETIC */
217 if (a
>= 0 ? w
> 0 : w
< 0)
242 #ifdef COMPAT_SIMODE_TRAPPING_ARITHMETIC
260 #endif /* COMPAT_SIMODE_TRAPPING_ARITHMETIC */
285 __mulvDI3 (DWtype u
, DWtype v
)
287 /* The unchecked multiplication needs 3 Wtype x Wtype multiplications,
288 but the checked multiplication needs only two. */
289 const DWunion uu
= {.ll
= u
};
290 const DWunion vv
= {.ll
= v
};
292 if (__builtin_expect (uu
.s
.high
== uu
.s
.low
>> (W_TYPE_SIZE
- 1), 1))
294 /* u fits in a single Wtype. */
295 if (__builtin_expect (vv
.s
.high
== vv
.s
.low
>> (W_TYPE_SIZE
- 1), 1))
297 /* v fits in a single Wtype as well. */
298 /* A single multiplication. No overflow risk. */
299 return (DWtype
) uu
.s
.low
* (DWtype
) vv
.s
.low
;
303 /* Two multiplications. */
304 DWunion w0
= {.ll
= (UDWtype
) (UWtype
) uu
.s
.low
305 * (UDWtype
) (UWtype
) vv
.s
.low
};
306 DWunion w1
= {.ll
= (UDWtype
) (UWtype
) uu
.s
.low
307 * (UDWtype
) (UWtype
) vv
.s
.high
};
310 w1
.s
.high
-= uu
.s
.low
;
313 w1
.ll
+= (UWtype
) w0
.s
.high
;
314 if (__builtin_expect (w1
.s
.high
== w1
.s
.low
>> (W_TYPE_SIZE
- 1), 1))
316 w0
.s
.high
= w1
.s
.low
;
323 if (__builtin_expect (vv
.s
.high
== vv
.s
.low
>> (W_TYPE_SIZE
- 1), 1))
325 /* v fits into a single Wtype. */
326 /* Two multiplications. */
327 DWunion w0
= {.ll
= (UDWtype
) (UWtype
) uu
.s
.low
328 * (UDWtype
) (UWtype
) vv
.s
.low
};
329 DWunion w1
= {.ll
= (UDWtype
) (UWtype
) uu
.s
.high
330 * (UDWtype
) (UWtype
) vv
.s
.low
};
333 w1
.s
.high
-= vv
.s
.low
;
336 w1
.ll
+= (UWtype
) w0
.s
.high
;
337 if (__builtin_expect (w1
.s
.high
== w1
.s
.low
>> (W_TYPE_SIZE
- 1), 1))
339 w0
.s
.high
= w1
.s
.low
;
345 /* A few sign checks and a single multiplication. */
350 if (uu
.s
.high
== 0 && vv
.s
.high
== 0)
352 const DWtype w
= (UDWtype
) (UWtype
) uu
.s
.low
353 * (UDWtype
) (UWtype
) vv
.s
.low
;
354 if (__builtin_expect (w
>= 0, 1))
360 if (uu
.s
.high
== 0 && vv
.s
.high
== (Wtype
) -1)
362 DWunion ww
= {.ll
= (UDWtype
) (UWtype
) uu
.s
.low
363 * (UDWtype
) (UWtype
) vv
.s
.low
};
365 ww
.s
.high
-= uu
.s
.low
;
366 if (__builtin_expect (ww
.s
.high
< 0, 1))
375 if (uu
.s
.high
== (Wtype
) -1 && vv
.s
.high
== 0)
377 DWunion ww
= {.ll
= (UDWtype
) (UWtype
) uu
.s
.low
378 * (UDWtype
) (UWtype
) vv
.s
.low
};
380 ww
.s
.high
-= vv
.s
.low
;
381 if (__builtin_expect (ww
.s
.high
< 0, 1))
387 if (uu
.s
.high
== (Wtype
) -1 && vv
.s
.high
== (Wtype
) - 1)
389 DWunion ww
= {.ll
= (UDWtype
) (UWtype
) uu
.s
.low
390 * (UDWtype
) (UWtype
) vv
.s
.low
};
392 ww
.s
.high
-= uu
.s
.low
;
393 ww
.s
.high
-= vv
.s
.low
;
394 if (__builtin_expect (ww
.s
.high
>= 0, 1))
408 /* Unless shift functions are defined with full ANSI prototypes,
409 parameter b will be promoted to int if word_type is smaller than an int. */
412 __lshrdi3 (DWtype u
, word_type b
)
417 const DWunion uu
= {.ll
= u
};
418 const word_type bm
= (sizeof (Wtype
) * BITS_PER_UNIT
) - b
;
424 w
.s
.low
= (UWtype
) uu
.s
.high
>> -bm
;
428 const UWtype carries
= (UWtype
) uu
.s
.high
<< bm
;
430 w
.s
.high
= (UWtype
) uu
.s
.high
>> b
;
431 w
.s
.low
= ((UWtype
) uu
.s
.low
>> b
) | carries
;
440 __ashldi3 (DWtype u
, word_type b
)
445 const DWunion uu
= {.ll
= u
};
446 const word_type bm
= (sizeof (Wtype
) * BITS_PER_UNIT
) - b
;
452 w
.s
.high
= (UWtype
) uu
.s
.low
<< -bm
;
456 const UWtype carries
= (UWtype
) uu
.s
.low
>> bm
;
458 w
.s
.low
= (UWtype
) uu
.s
.low
<< b
;
459 w
.s
.high
= ((UWtype
) uu
.s
.high
<< b
) | carries
;
468 __ashrdi3 (DWtype u
, word_type b
)
473 const DWunion uu
= {.ll
= u
};
474 const word_type bm
= (sizeof (Wtype
) * BITS_PER_UNIT
) - b
;
479 /* w.s.high = 1..1 or 0..0 */
480 w
.s
.high
= uu
.s
.high
>> (sizeof (Wtype
) * BITS_PER_UNIT
- 1);
481 w
.s
.low
= uu
.s
.high
>> -bm
;
485 const UWtype carries
= (UWtype
) uu
.s
.high
<< bm
;
487 w
.s
.high
= uu
.s
.high
>> b
;
488 w
.s
.low
= ((UWtype
) uu
.s
.low
>> b
) | carries
;
505 count_trailing_zeros (count
, u
);
515 const DWunion uu
= {.ll
= u
};
516 UWtype word
, count
, add
;
519 word
= uu
.s
.low
, add
= 0;
520 else if (uu
.s
.high
!= 0)
521 word
= uu
.s
.high
, add
= BITS_PER_UNIT
* sizeof (Wtype
);
525 count_trailing_zeros (count
, word
);
526 return count
+ add
+ 1;
532 __muldi3 (DWtype u
, DWtype v
)
534 const DWunion uu
= {.ll
= u
};
535 const DWunion vv
= {.ll
= v
};
536 DWunion w
= {.ll
= __umulsidi3 (uu
.s
.low
, vv
.s
.low
)};
538 w
.s
.high
+= ((UWtype
) uu
.s
.low
* (UWtype
) vv
.s
.high
539 + (UWtype
) uu
.s
.high
* (UWtype
) vv
.s
.low
);
545 #if (defined (L_udivdi3) || defined (L_divdi3) || \
546 defined (L_umoddi3) || defined (L_moddi3))
547 #if defined (sdiv_qrnnd)
548 #define L_udiv_w_sdiv
553 #if defined (sdiv_qrnnd)
554 #if (defined (L_udivdi3) || defined (L_divdi3) || \
555 defined (L_umoddi3) || defined (L_moddi3))
556 static inline __attribute__ ((__always_inline__
))
559 __udiv_w_sdiv (UWtype
*rp
, UWtype a1
, UWtype a0
, UWtype d
)
566 if (a1
< d
- a1
- (a0
>> (W_TYPE_SIZE
- 1)))
568 /* Dividend, divisor, and quotient are nonnegative. */
569 sdiv_qrnnd (q
, r
, a1
, a0
, d
);
573 /* Compute c1*2^32 + c0 = a1*2^32 + a0 - 2^31*d. */
574 sub_ddmmss (c1
, c0
, a1
, a0
, d
>> 1, d
<< (W_TYPE_SIZE
- 1));
575 /* Divide (c1*2^32 + c0) by d. */
576 sdiv_qrnnd (q
, r
, c1
, c0
, d
);
577 /* Add 2^31 to quotient. */
578 q
+= (UWtype
) 1 << (W_TYPE_SIZE
- 1);
583 b1
= d
>> 1; /* d/2, between 2^30 and 2^31 - 1 */
584 c1
= a1
>> 1; /* A/2 */
585 c0
= (a1
<< (W_TYPE_SIZE
- 1)) + (a0
>> 1);
587 if (a1
< b1
) /* A < 2^32*b1, so A/2 < 2^31*b1 */
589 sdiv_qrnnd (q
, r
, c1
, c0
, b1
); /* (A/2) / (d/2) */
591 r
= 2*r
+ (a0
& 1); /* Remainder from A/(2*b1) */
608 else if (c1
< b1
) /* So 2^31 <= (A/2)/b1 < 2^32 */
611 c0
= ~c0
; /* logical NOT */
613 sdiv_qrnnd (q
, r
, c1
, c0
, b1
); /* (A/2) / (d/2) */
615 q
= ~q
; /* (A/2)/b1 */
618 r
= 2*r
+ (a0
& 1); /* A/(2*b1) */
636 else /* Implies c1 = b1 */
637 { /* Hence a1 = d - 1 = 2*b1 - 1 */
655 /* If sdiv_qrnnd doesn't exist, define dummy __udiv_w_sdiv. */
657 __udiv_w_sdiv (UWtype
*rp
__attribute__ ((__unused__
)),
658 UWtype a1
__attribute__ ((__unused__
)),
659 UWtype a0
__attribute__ ((__unused__
)),
660 UWtype d
__attribute__ ((__unused__
)))
667 #if (defined (L_udivdi3) || defined (L_divdi3) || \
668 defined (L_umoddi3) || defined (L_moddi3))
673 const UQItype __clz_tab
[256] =
675 0,1,2,2,3,3,3,3,4,4,4,4,4,4,4,4,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,5,
676 6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,6,
677 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
678 7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,7,
679 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
680 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
681 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,
682 8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8,8
693 count_leading_zeros (ret
, x
);
704 const DWunion uu
= {.ll
= x
};
709 word
= uu
.s
.high
, add
= 0;
711 word
= uu
.s
.low
, add
= W_TYPE_SIZE
;
713 count_leading_zeros (ret
, word
);
725 count_trailing_zeros (ret
, x
);
736 const DWunion uu
= {.ll
= x
};
741 word
= uu
.s
.low
, add
= 0;
743 word
= uu
.s
.high
, add
= W_TYPE_SIZE
;
745 count_trailing_zeros (ret
, word
);
750 #ifdef L_popcount_tab
751 const UQItype __popcount_tab
[256] =
753 0,1,1,2,1,2,2,3,1,2,2,3,2,3,3,4,1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,
754 1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
755 1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
756 2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,
757 1,2,2,3,2,3,3,4,2,3,3,4,3,4,4,5,2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,
758 2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,
759 2,3,3,4,3,4,4,5,3,4,4,5,4,5,5,6,3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,
760 3,4,4,5,4,5,5,6,4,5,5,6,5,6,6,7,4,5,5,6,5,6,6,7,5,6,6,7,6,7,7,8
767 __popcountSI2 (UWtype x
)
771 for (i
= 0; i
< W_TYPE_SIZE
; i
+= 8)
772 ret
+= __popcount_tab
[(x
>> i
) & 0xff];
781 __popcountDI2 (UDWtype x
)
785 for (i
= 0; i
< 2*W_TYPE_SIZE
; i
+= 8)
786 ret
+= __popcount_tab
[(x
>> i
) & 0xff];
795 __paritySI2 (UWtype x
)
798 # error "fill out the table"
809 return (0x6996 >> x
) & 1;
816 __parityDI2 (UDWtype x
)
818 const DWunion uu
= {.ll
= x
};
819 UWtype nx
= uu
.s
.low
^ uu
.s
.high
;
822 # error "fill out the table"
833 return (0x6996 >> nx
) & 1;
839 #if (defined (L_udivdi3) || defined (L_divdi3) || \
840 defined (L_umoddi3) || defined (L_moddi3))
841 static inline __attribute__ ((__always_inline__
))
844 __udivmoddi4 (UDWtype n
, UDWtype d
, UDWtype
*rp
)
846 const DWunion nn
= {.ll
= n
};
847 const DWunion dd
= {.ll
= d
};
849 UWtype d0
, d1
, n0
, n1
, n2
;
858 #if !UDIV_NEEDS_NORMALIZATION
865 udiv_qrnnd (q0
, n0
, n1
, n0
, d0
);
868 /* Remainder in n0. */
875 d0
= 1 / d0
; /* Divide intentionally by zero. */
877 udiv_qrnnd (q1
, n1
, 0, n1
, d0
);
878 udiv_qrnnd (q0
, n0
, n1
, n0
, d0
);
880 /* Remainder in n0. */
891 #else /* UDIV_NEEDS_NORMALIZATION */
899 count_leading_zeros (bm
, d0
);
903 /* Normalize, i.e. make the most significant bit of the
907 n1
= (n1
<< bm
) | (n0
>> (W_TYPE_SIZE
- bm
));
911 udiv_qrnnd (q0
, n0
, n1
, n0
, d0
);
914 /* Remainder in n0 >> bm. */
921 d0
= 1 / d0
; /* Divide intentionally by zero. */
923 count_leading_zeros (bm
, d0
);
927 /* From (n1 >= d0) /\ (the most significant bit of d0 is set),
928 conclude (the most significant bit of n1 is set) /\ (the
929 leading quotient digit q1 = 1).
931 This special case is necessary, not an optimization.
932 (Shifts counts of W_TYPE_SIZE are undefined.) */
941 b
= W_TYPE_SIZE
- bm
;
945 n1
= (n1
<< bm
) | (n0
>> b
);
948 udiv_qrnnd (q1
, n1
, n2
, n1
, d0
);
953 udiv_qrnnd (q0
, n0
, n1
, n0
, d0
);
955 /* Remainder in n0 >> bm. */
965 #endif /* UDIV_NEEDS_NORMALIZATION */
976 /* Remainder in n1n0. */
988 count_leading_zeros (bm
, d1
);
991 /* From (n1 >= d1) /\ (the most significant bit of d1 is set),
992 conclude (the most significant bit of n1 is set) /\ (the
993 quotient digit q0 = 0 or 1).
995 This special case is necessary, not an optimization. */
997 /* The condition on the next line takes advantage of that
998 n1 >= d1 (true due to program flow). */
999 if (n1
> d1
|| n0
>= d0
)
1002 sub_ddmmss (n1
, n0
, n1
, n0
, d1
, d0
);
1021 b
= W_TYPE_SIZE
- bm
;
1023 d1
= (d1
<< bm
) | (d0
>> b
);
1026 n1
= (n1
<< bm
) | (n0
>> b
);
1029 udiv_qrnnd (q0
, n1
, n2
, n1
, d1
);
1030 umul_ppmm (m1
, m0
, q0
, d0
);
1032 if (m1
> n1
|| (m1
== n1
&& m0
> n0
))
1035 sub_ddmmss (m1
, m0
, m1
, m0
, d1
, d0
);
1040 /* Remainder in (n1n0 - m1m0) >> bm. */
1043 sub_ddmmss (n1
, n0
, n1
, n0
, m1
, m0
);
1044 rr
.s
.low
= (n1
<< b
) | (n0
>> bm
);
1045 rr
.s
.high
= n1
>> bm
;
1052 const DWunion ww
= {{.low
= q0
, .high
= q1
}};
1059 __divdi3 (DWtype u
, DWtype v
)
1062 DWunion uu
= {.ll
= u
};
1063 DWunion vv
= {.ll
= v
};
1073 w
= __udivmoddi4 (uu
.ll
, vv
.ll
, (UDWtype
*) 0);
1083 __moddi3 (DWtype u
, DWtype v
)
1086 DWunion uu
= {.ll
= u
};
1087 DWunion vv
= {.ll
= v
};
1096 (void) __udivmoddi4 (uu
.ll
, vv
.ll
, (UDWtype
*)&w
);
1106 __umoddi3 (UDWtype u
, UDWtype v
)
1110 (void) __udivmoddi4 (u
, v
, &w
);
1118 __udivdi3 (UDWtype n
, UDWtype d
)
1120 return __udivmoddi4 (n
, d
, (UDWtype
*) 0);
1126 __cmpdi2 (DWtype a
, DWtype b
)
1128 const DWunion au
= {.ll
= a
};
1129 const DWunion bu
= {.ll
= b
};
1131 if (au
.s
.high
< bu
.s
.high
)
1133 else if (au
.s
.high
> bu
.s
.high
)
1135 if ((UWtype
) au
.s
.low
< (UWtype
) bu
.s
.low
)
1137 else if ((UWtype
) au
.s
.low
> (UWtype
) bu
.s
.low
)
1145 __ucmpdi2 (DWtype a
, DWtype b
)
1147 const DWunion au
= {.ll
= a
};
1148 const DWunion bu
= {.ll
= b
};
1150 if ((UWtype
) au
.s
.high
< (UWtype
) bu
.s
.high
)
1152 else if ((UWtype
) au
.s
.high
> (UWtype
) bu
.s
.high
)
1154 if ((UWtype
) au
.s
.low
< (UWtype
) bu
.s
.low
)
1156 else if ((UWtype
) au
.s
.low
> (UWtype
) bu
.s
.low
)
1162 #if defined(L_fixunstfdi) && LIBGCC2_HAS_TF_MODE
1164 __fixunstfDI (TFtype a
)
1169 /* Compute high word of result, as a flonum. */
1170 const TFtype b
= (a
/ Wtype_MAXp1_F
);
1171 /* Convert that to fixed (but not to DWtype!),
1172 and shift it into the high word. */
1173 UDWtype v
= (UWtype
) b
;
1175 /* Remove high part from the TFtype, leaving the low part as flonum. */
1177 /* Convert that to fixed (but not to DWtype!) and add it in.
1178 Sometimes A comes out negative. This is significant, since
1179 A has more bits than a long int does. */
1181 v
-= (UWtype
) (- a
);
1188 #if defined(L_fixtfdi) && LIBGCC2_HAS_TF_MODE
1190 __fixtfdi (TFtype a
)
1193 return - __fixunstfDI (-a
);
1194 return __fixunstfDI (a
);
1198 #if defined(L_fixunsxfdi) && LIBGCC2_HAS_XF_MODE
1200 __fixunsxfDI (XFtype a
)
1205 /* Compute high word of result, as a flonum. */
1206 const XFtype b
= (a
/ Wtype_MAXp1_F
);
1207 /* Convert that to fixed (but not to DWtype!),
1208 and shift it into the high word. */
1209 UDWtype v
= (UWtype
) b
;
1211 /* Remove high part from the XFtype, leaving the low part as flonum. */
1213 /* Convert that to fixed (but not to DWtype!) and add it in.
1214 Sometimes A comes out negative. This is significant, since
1215 A has more bits than a long int does. */
1217 v
-= (UWtype
) (- a
);
1224 #if defined(L_fixxfdi) && LIBGCC2_HAS_XF_MODE
1226 __fixxfdi (XFtype a
)
1229 return - __fixunsxfDI (-a
);
1230 return __fixunsxfDI (a
);
1234 #if defined(L_fixunsdfdi) && LIBGCC2_HAS_DF_MODE
1236 __fixunsdfDI (DFtype a
)
1238 /* Get high part of result. The division here will just moves the radix
1239 point and will not cause any rounding. Then the conversion to integral
1240 type chops result as desired. */
1241 const UWtype hi
= a
/ Wtype_MAXp1_F
;
1243 /* Get low part of result. Convert `hi' to floating type and scale it back,
1244 then subtract this from the number being converted. This leaves the low
1245 part. Convert that to integral type. */
1246 const UWtype lo
= a
- (DFtype
) hi
* Wtype_MAXp1_F
;
1248 /* Assemble result from the two parts. */
1249 return ((UDWtype
) hi
<< W_TYPE_SIZE
) | lo
;
1253 #if defined(L_fixdfdi) && LIBGCC2_HAS_DF_MODE
1255 __fixdfdi (DFtype a
)
1258 return - __fixunsdfDI (-a
);
1259 return __fixunsdfDI (a
);
1263 #if defined(L_fixunssfdi) && LIBGCC2_HAS_SF_MODE
1265 __fixunssfDI (SFtype a
)
1267 #if LIBGCC2_HAS_DF_MODE
1268 /* Convert the SFtype to a DFtype, because that is surely not going
1269 to lose any bits. Some day someone else can write a faster version
1270 that avoids converting to DFtype, and verify it really works right. */
1271 const DFtype dfa
= a
;
1273 /* Get high part of result. The division here will just moves the radix
1274 point and will not cause any rounding. Then the conversion to integral
1275 type chops result as desired. */
1276 const UWtype hi
= dfa
/ Wtype_MAXp1_F
;
1278 /* Get low part of result. Convert `hi' to floating type and scale it back,
1279 then subtract this from the number being converted. This leaves the low
1280 part. Convert that to integral type. */
1281 const UWtype lo
= dfa
- (DFtype
) hi
* Wtype_MAXp1_F
;
1283 /* Assemble result from the two parts. */
1284 return ((UDWtype
) hi
<< W_TYPE_SIZE
) | lo
;
1285 #elif FLT_MANT_DIG < W_TYPE_SIZE
1288 if (a
< Wtype_MAXp1_F
)
1290 if (a
< Wtype_MAXp1_F
* Wtype_MAXp1_F
)
1292 /* Since we know that there are fewer significant bits in the SFmode
1293 quantity than in a word, we know that we can convert out all the
1294 significant bits in one step, and thus avoid losing bits. */
1296 /* ??? This following loop essentially performs frexpf. If we could
1297 use the real libm function, or poke at the actual bits of the fp
1298 format, it would be significantly faster. */
1300 UWtype shift
= 0, counter
;
1304 for (counter
= W_TYPE_SIZE
/ 2; counter
!= 0; counter
>>= 1)
1306 SFtype counterf
= (UWtype
)1 << counter
;
1314 /* Rescale into the range of one word, extract the bits of that
1315 one word, and shift the result into position. */
1318 return (DWtype
)counter
<< shift
;
1327 #if defined(L_fixsfdi) && LIBGCC2_HAS_SF_MODE
1329 __fixsfdi (SFtype a
)
1332 return - __fixunssfDI (-a
);
1333 return __fixunssfDI (a
);
1337 #if defined(L_floatdixf) && LIBGCC2_HAS_XF_MODE
1339 __floatdixf (DWtype u
)
1341 #if W_TYPE_SIZE > XF_SIZE
1344 XFtype d
= (Wtype
) (u
>> W_TYPE_SIZE
);
1351 #if defined(L_floatundixf) && LIBGCC2_HAS_XF_MODE
1353 __floatundixf (UDWtype u
)
1355 #if W_TYPE_SIZE > XF_SIZE
1358 XFtype d
= (UWtype
) (u
>> W_TYPE_SIZE
);
1365 #if defined(L_floatditf) && LIBGCC2_HAS_TF_MODE
1367 __floatditf (DWtype u
)
1369 #if W_TYPE_SIZE > TF_SIZE
1372 TFtype d
= (Wtype
) (u
>> W_TYPE_SIZE
);
1379 #if defined(L_floatunditf) && LIBGCC2_HAS_TF_MODE
1381 __floatunditf (UDWtype u
)
1383 #if W_TYPE_SIZE > TF_SIZE
1386 TFtype d
= (UWtype
) (u
>> W_TYPE_SIZE
);
1393 #if (defined(L_floatdisf) && LIBGCC2_HAS_SF_MODE) \
1394 || (defined(L_floatdidf) && LIBGCC2_HAS_DF_MODE)
1395 #define DI_SIZE (W_TYPE_SIZE * 2)
1396 #define F_MODE_OK(SIZE) \
1398 && SIZE > (DI_SIZE - SIZE + FSSIZE) \
1399 /* Don't use IBM Extended Double TFmode for TI->SF calculations. \
1400 The conversion from long double to float suffers from double \
1401 rounding, because we convert via double. In any case, the \
1402 fallback code is faster. */ \
1403 && !IS_IBM_EXTENDED (SIZE))
1404 #if defined(L_floatdisf)
1405 #define FUNC __floatdisf
1406 #define FSTYPE SFtype
1407 #define FSSIZE SF_SIZE
1409 #define FUNC __floatdidf
1410 #define FSTYPE DFtype
1411 #define FSSIZE DF_SIZE
1417 #if FSSIZE >= W_TYPE_SIZE
1418 /* When the word size is small, we never get any rounding error. */
1419 FSTYPE f
= (Wtype
) (u
>> W_TYPE_SIZE
);
1423 #elif (LIBGCC2_HAS_DF_MODE && F_MODE_OK (DF_SIZE)) \
1424 || (LIBGCC2_HAS_XF_MODE && F_MODE_OK (XF_SIZE)) \
1425 || (LIBGCC2_HAS_TF_MODE && F_MODE_OK (TF_SIZE))
1427 #if (LIBGCC2_HAS_DF_MODE && F_MODE_OK (DF_SIZE))
1428 # define FSIZE DF_SIZE
1429 # define FTYPE DFtype
1430 #elif (LIBGCC2_HAS_XF_MODE && F_MODE_OK (XF_SIZE))
1431 # define FSIZE XF_SIZE
1432 # define FTYPE XFtype
1433 #elif (LIBGCC2_HAS_TF_MODE && F_MODE_OK (TF_SIZE))
1434 # define FSIZE TF_SIZE
1435 # define FTYPE TFtype
1440 #define REP_BIT ((UDWtype) 1 << (DI_SIZE - FSIZE))
1442 /* Protect against double-rounding error.
1443 Represent any low-order bits, that might be truncated by a bit that
1444 won't be lost. The bit can go in anywhere below the rounding position
1445 of the FSTYPE. A fixed mask and bit position handles all usual
1447 if (! (- ((DWtype
) 1 << FSIZE
) < u
1448 && u
< ((DWtype
) 1 << FSIZE
)))
1450 if ((UDWtype
) u
& (REP_BIT
- 1))
1452 u
&= ~ (REP_BIT
- 1);
1457 /* Do the calculation in a wider type so that we don't lose any of
1458 the precision of the high word while multiplying it. */
1459 FTYPE f
= (Wtype
) (u
>> W_TYPE_SIZE
);
1464 #if FSSIZE >= W_TYPE_SIZE - 2
1467 /* Finally, the word size is larger than the number of bits in the
1468 required FSTYPE, and we've got no suitable wider type. The only
1469 way to avoid double rounding is to special case the
1472 /* If there are no high bits set, fall back to one conversion. */
1474 return (FSTYPE
)(Wtype
)u
;
1476 /* Otherwise, find the power of two. */
1477 Wtype hi
= u
>> W_TYPE_SIZE
;
1481 UWtype count
, shift
;
1482 count_leading_zeros (count
, hi
);
1484 /* No leading bits means u == minimum. */
1486 return -(Wtype_MAXp1_F
* (Wtype_MAXp1_F
/ 2));
1488 shift
= 1 + W_TYPE_SIZE
- count
;
1490 /* Shift down the most significant bits. */
1493 /* If we lost any nonzero bits, set the lsb to ensure correct rounding. */
1494 if (u
& (((DWtype
)1 << shift
) - 1))
1497 /* Convert the one word of data, and rescale. */
1499 f
*= (UDWtype
)1 << shift
;
1505 #if (defined(L_floatundisf) && LIBGCC2_HAS_SF_MODE) \
1506 || (defined(L_floatundidf) && LIBGCC2_HAS_DF_MODE)
1507 #define DI_SIZE (W_TYPE_SIZE * 2)
1508 #define F_MODE_OK(SIZE) \
1510 && SIZE > (DI_SIZE - SIZE + FSSIZE) \
1511 /* Don't use IBM Extended Double TFmode for TI->SF calculations. \
1512 The conversion from long double to float suffers from double \
1513 rounding, because we convert via double. In any case, the \
1514 fallback code is faster. */ \
1515 && !IS_IBM_EXTENDED (SIZE))
1516 #if defined(L_floatundisf)
1517 #define FUNC __floatundisf
1518 #define FSTYPE SFtype
1519 #define FSSIZE SF_SIZE
1521 #define FUNC __floatundidf
1522 #define FSTYPE DFtype
1523 #define FSSIZE DF_SIZE
1529 #if FSSIZE >= W_TYPE_SIZE
1530 /* When the word size is small, we never get any rounding error. */
1531 FSTYPE f
= (UWtype
) (u
>> W_TYPE_SIZE
);
1535 #elif (LIBGCC2_HAS_DF_MODE && F_MODE_OK (DF_SIZE)) \
1536 || (LIBGCC2_HAS_XF_MODE && F_MODE_OK (XF_SIZE)) \
1537 || (LIBGCC2_HAS_TF_MODE && F_MODE_OK (TF_SIZE))
1539 #if (LIBGCC2_HAS_DF_MODE && F_MODE_OK (DF_SIZE))
1540 # define FSIZE DF_SIZE
1541 # define FTYPE DFtype
1542 #elif (LIBGCC2_HAS_XF_MODE && F_MODE_OK (XF_SIZE))
1543 # define FSIZE XF_SIZE
1544 # define FTYPE XFtype
1545 #elif (LIBGCC2_HAS_TF_MODE && F_MODE_OK (TF_SIZE))
1546 # define FSIZE TF_SIZE
1547 # define FTYPE TFtype
1552 #define REP_BIT ((UDWtype) 1 << (DI_SIZE - FSIZE))
1554 /* Protect against double-rounding error.
1555 Represent any low-order bits, that might be truncated by a bit that
1556 won't be lost. The bit can go in anywhere below the rounding position
1557 of the FSTYPE. A fixed mask and bit position handles all usual
1559 if (u
>= ((UDWtype
) 1 << FSIZE
))
1561 if ((UDWtype
) u
& (REP_BIT
- 1))
1563 u
&= ~ (REP_BIT
- 1);
1568 /* Do the calculation in a wider type so that we don't lose any of
1569 the precision of the high word while multiplying it. */
1570 FTYPE f
= (UWtype
) (u
>> W_TYPE_SIZE
);
1575 #if FSSIZE == W_TYPE_SIZE - 1
1578 /* Finally, the word size is larger than the number of bits in the
1579 required FSTYPE, and we've got no suitable wider type. The only
1580 way to avoid double rounding is to special case the
1583 /* If there are no high bits set, fall back to one conversion. */
1585 return (FSTYPE
)(UWtype
)u
;
1587 /* Otherwise, find the power of two. */
1588 UWtype hi
= u
>> W_TYPE_SIZE
;
1590 UWtype count
, shift
;
1591 count_leading_zeros (count
, hi
);
1593 shift
= W_TYPE_SIZE
- count
;
1595 /* Shift down the most significant bits. */
1598 /* If we lost any nonzero bits, set the lsb to ensure correct rounding. */
1599 if (u
& (((UDWtype
)1 << shift
) - 1))
1602 /* Convert the one word of data, and rescale. */
1604 f
*= (UDWtype
)1 << shift
;
1610 #if defined(L_fixunsxfsi) && LIBGCC2_HAS_XF_MODE
1611 /* Reenable the normal types, in case limits.h needs them. */
1624 __fixunsxfSI (XFtype a
)
1626 if (a
>= - (DFtype
) Wtype_MIN
)
1627 return (Wtype
) (a
+ Wtype_MIN
) - Wtype_MIN
;
1632 #if defined(L_fixunsdfsi) && LIBGCC2_HAS_DF_MODE
1633 /* Reenable the normal types, in case limits.h needs them. */
1646 __fixunsdfSI (DFtype a
)
1648 if (a
>= - (DFtype
) Wtype_MIN
)
1649 return (Wtype
) (a
+ Wtype_MIN
) - Wtype_MIN
;
1654 #if defined(L_fixunssfsi) && LIBGCC2_HAS_SF_MODE
1655 /* Reenable the normal types, in case limits.h needs them. */
1668 __fixunssfSI (SFtype a
)
1670 if (a
>= - (SFtype
) Wtype_MIN
)
1671 return (Wtype
) (a
+ Wtype_MIN
) - Wtype_MIN
;
1676 /* Integer power helper used from __builtin_powi for non-constant
1679 #if (defined(L_powisf2) && LIBGCC2_HAS_SF_MODE) \
1680 || (defined(L_powidf2) && LIBGCC2_HAS_DF_MODE) \
1681 || (defined(L_powixf2) && LIBGCC2_HAS_XF_MODE) \
1682 || (defined(L_powitf2) && LIBGCC2_HAS_TF_MODE)
1683 # if defined(L_powisf2)
1684 # define TYPE SFtype
1685 # define NAME __powisf2
1686 # elif defined(L_powidf2)
1687 # define TYPE DFtype
1688 # define NAME __powidf2
1689 # elif defined(L_powixf2)
1690 # define TYPE XFtype
1691 # define NAME __powixf2
1692 # elif defined(L_powitf2)
1693 # define TYPE TFtype
1694 # define NAME __powitf2
1700 NAME (TYPE x
, int m
)
1702 unsigned int n
= m
< 0 ? -m
: m
;
1703 TYPE y
= n
% 2 ? x
: 1;
1710 return m
< 0 ? 1/y
: y
;
1715 #if ((defined(L_mulsc3) || defined(L_divsc3)) && LIBGCC2_HAS_SF_MODE) \
1716 || ((defined(L_muldc3) || defined(L_divdc3)) && LIBGCC2_HAS_DF_MODE) \
1717 || ((defined(L_mulxc3) || defined(L_divxc3)) && LIBGCC2_HAS_XF_MODE) \
1718 || ((defined(L_multc3) || defined(L_divtc3)) && LIBGCC2_HAS_TF_MODE)
1724 #if defined(L_mulsc3) || defined(L_divsc3)
1725 # define MTYPE SFtype
1726 # define CTYPE SCtype
1729 # define NOTRUNC __FLT_EVAL_METHOD__ == 0
1730 #elif defined(L_muldc3) || defined(L_divdc3)
1731 # define MTYPE DFtype
1732 # define CTYPE DCtype
1734 # if LIBGCC2_LONG_DOUBLE_TYPE_SIZE == 64
1739 # define NOTRUNC __FLT_EVAL_METHOD__ == 0 || __FLT_EVAL_METHOD__ == 1
1741 #elif defined(L_mulxc3) || defined(L_divxc3)
1742 # define MTYPE XFtype
1743 # define CTYPE XCtype
1747 #elif defined(L_multc3) || defined(L_divtc3)
1748 # define MTYPE TFtype
1749 # define CTYPE TCtype
1757 #define CONCAT3(A,B,C) _CONCAT3(A,B,C)
1758 #define _CONCAT3(A,B,C) A##B##C
1760 #define CONCAT2(A,B) _CONCAT2(A,B)
1761 #define _CONCAT2(A,B) A##B
1763 /* All of these would be present in a full C99 implementation of <math.h>
1764 and <complex.h>. Our problem is that only a few systems have such full
1765 implementations. Further, libgcc_s.so isn't currently linked against
1766 libm.so, and even for systems that do provide full C99, the extra overhead
1767 of all programs using libgcc having to link against libm. So avoid it. */
1769 #define isnan(x) __builtin_expect ((x) != (x), 0)
1770 #define isfinite(x) __builtin_expect (!isnan((x) - (x)), 1)
1771 #define isinf(x) __builtin_expect (!isnan(x) & !isfinite(x), 0)
1773 #define INFINITY CONCAT2(__builtin_inf, CEXT) ()
1776 /* Helpers to make the following code slightly less gross. */
1777 #define COPYSIGN CONCAT2(__builtin_copysign, CEXT)
1778 #define FABS CONCAT2(__builtin_fabs, CEXT)
1780 /* Verify that MTYPE matches up with CEXT. */
1781 extern void *compile_type_assert
[sizeof(INFINITY
) == sizeof(MTYPE
) ? 1 : -1];
1783 /* Ensure that we've lost any extra precision. */
1787 # define TRUNC(x) __asm__ ("" : "=m"(x) : "m"(x))
1790 #if defined(L_mulsc3) || defined(L_muldc3) \
1791 || defined(L_mulxc3) || defined(L_multc3)
1794 CONCAT3(__mul
,MODE
,3) (MTYPE a
, MTYPE b
, MTYPE c
, MTYPE d
)
1796 MTYPE ac
, bd
, ad
, bc
, x
, y
;
1811 if (isnan (x
) && isnan (y
))
1813 /* Recover infinities that computed as NaN + iNaN. */
1815 if (isinf (a
) || isinf (b
))
1817 /* z is infinite. "Box" the infinity and change NaNs in
1818 the other factor to 0. */
1819 a
= COPYSIGN (isinf (a
) ? 1 : 0, a
);
1820 b
= COPYSIGN (isinf (b
) ? 1 : 0, b
);
1821 if (isnan (c
)) c
= COPYSIGN (0, c
);
1822 if (isnan (d
)) d
= COPYSIGN (0, d
);
1825 if (isinf (c
) || isinf (d
))
1827 /* w is infinite. "Box" the infinity and change NaNs in
1828 the other factor to 0. */
1829 c
= COPYSIGN (isinf (c
) ? 1 : 0, c
);
1830 d
= COPYSIGN (isinf (d
) ? 1 : 0, d
);
1831 if (isnan (a
)) a
= COPYSIGN (0, a
);
1832 if (isnan (b
)) b
= COPYSIGN (0, b
);
1836 && (isinf (ac
) || isinf (bd
)
1837 || isinf (ad
) || isinf (bc
)))
1839 /* Recover infinities from overflow by changing NaNs to 0. */
1840 if (isnan (a
)) a
= COPYSIGN (0, a
);
1841 if (isnan (b
)) b
= COPYSIGN (0, b
);
1842 if (isnan (c
)) c
= COPYSIGN (0, c
);
1843 if (isnan (d
)) d
= COPYSIGN (0, d
);
1848 x
= INFINITY
* (a
* c
- b
* d
);
1849 y
= INFINITY
* (a
* d
+ b
* c
);
1855 #endif /* complex multiply */
1857 #if defined(L_divsc3) || defined(L_divdc3) \
1858 || defined(L_divxc3) || defined(L_divtc3)
1861 CONCAT3(__div
,MODE
,3) (MTYPE a
, MTYPE b
, MTYPE c
, MTYPE d
)
1863 MTYPE denom
, ratio
, x
, y
;
1865 /* ??? We can get better behavior from logarithmic scaling instead of
1866 the division. But that would mean starting to link libgcc against
1867 libm. We could implement something akin to ldexp/frexp as gcc builtins
1869 if (FABS (c
) < FABS (d
))
1872 denom
= (c
* ratio
) + d
;
1873 x
= ((a
* ratio
) + b
) / denom
;
1874 y
= ((b
* ratio
) - a
) / denom
;
1879 denom
= (d
* ratio
) + c
;
1880 x
= ((b
* ratio
) + a
) / denom
;
1881 y
= (b
- (a
* ratio
)) / denom
;
1884 /* Recover infinities and zeros that computed as NaN+iNaN; the only cases
1885 are nonzero/zero, infinite/finite, and finite/infinite. */
1886 if (isnan (x
) && isnan (y
))
1888 if (denom
== 0.0 && (!isnan (a
) || !isnan (b
)))
1890 x
= COPYSIGN (INFINITY
, c
) * a
;
1891 y
= COPYSIGN (INFINITY
, c
) * b
;
1893 else if ((isinf (a
) || isinf (b
)) && isfinite (c
) && isfinite (d
))
1895 a
= COPYSIGN (isinf (a
) ? 1 : 0, a
);
1896 b
= COPYSIGN (isinf (b
) ? 1 : 0, b
);
1897 x
= INFINITY
* (a
* c
+ b
* d
);
1898 y
= INFINITY
* (b
* c
- a
* d
);
1900 else if ((isinf (c
) || isinf (d
)) && isfinite (a
) && isfinite (b
))
1902 c
= COPYSIGN (isinf (c
) ? 1 : 0, c
);
1903 d
= COPYSIGN (isinf (d
) ? 1 : 0, d
);
1904 x
= 0.0 * (a
* c
+ b
* d
);
1905 y
= 0.0 * (b
* c
- a
* d
);
1911 #endif /* complex divide */
1913 #endif /* all complex float routines */
1915 /* From here on down, the routines use normal data types. */
1917 #define SItype bogus_type
1918 #define USItype bogus_type
1919 #define DItype bogus_type
1920 #define UDItype bogus_type
1921 #define SFtype bogus_type
1922 #define DFtype bogus_type
1940 /* Like bcmp except the sign is meaningful.
1941 Result is negative if S1 is less than S2,
1942 positive if S1 is greater, 0 if S1 and S2 are equal. */
1945 __gcc_bcmp (const unsigned char *s1
, const unsigned char *s2
, size_t size
)
1949 const unsigned char c1
= *s1
++, c2
= *s2
++;
1959 /* __eprintf used to be used by GCC's private version of <assert.h>.
1960 We no longer provide that header, but this routine remains in libgcc.a
1961 for binary backward compatibility. Note that it is not included in
1962 the shared version of libgcc. */
1964 #ifndef inhibit_libc
1966 #undef NULL /* Avoid errors if stdio.h and our stddef.h mismatch. */
1970 __eprintf (const char *string
, const char *expression
,
1971 unsigned int line
, const char *filename
)
1973 fprintf (stderr
, string
, expression
, line
, filename
);
1982 #ifdef L_clear_cache
1983 /* Clear part of an instruction cache. */
1986 __clear_cache (char *beg
__attribute__((__unused__
)),
1987 char *end
__attribute__((__unused__
)))
1989 #ifdef CLEAR_INSN_CACHE
1990 CLEAR_INSN_CACHE (beg
, end
);
1991 #endif /* CLEAR_INSN_CACHE */
1994 #endif /* L_clear_cache */
1996 #ifdef L_enable_execute_stack
1997 /* Attempt to turn on execute permission for the stack. */
1999 #ifdef ENABLE_EXECUTE_STACK
2000 ENABLE_EXECUTE_STACK
2003 __enable_execute_stack (void *addr
__attribute__((__unused__
)))
2005 #endif /* ENABLE_EXECUTE_STACK */
2007 #endif /* L_enable_execute_stack */
2011 /* Jump to a trampoline, loading the static chain address. */
2013 #if defined(WINNT) && ! defined(__CYGWIN__) && ! defined (_UWIN)
2026 extern int VirtualProtect (char *, int, int, int *) __attribute__((stdcall));
2030 mprotect (char *addr
, int len
, int prot
)
2047 if (VirtualProtect (addr
, len
, np
, &op
))
2053 #endif /* WINNT && ! __CYGWIN__ && ! _UWIN */
2055 #ifdef TRANSFER_FROM_TRAMPOLINE
2056 TRANSFER_FROM_TRAMPOLINE
2058 #endif /* L_trampoline */
2063 #include "gbl-ctors.h"
2065 /* Some systems use __main in a way incompatible with its use in gcc, in these
2066 cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
2067 give the same symbol without quotes for an alternative entry point. You
2068 must define both, or neither. */
2070 #define NAME__MAIN "__main"
2071 #define SYMBOL__MAIN __main
2074 #if defined (INIT_SECTION_ASM_OP) || defined (INIT_ARRAY_SECTION_ASM_OP)
2075 #undef HAS_INIT_SECTION
2076 #define HAS_INIT_SECTION
2079 #if !defined (HAS_INIT_SECTION) || !defined (OBJECT_FORMAT_ELF)
2081 /* Some ELF crosses use crtstuff.c to provide __CTOR_LIST__, but use this
2082 code to run constructors. In that case, we need to handle EH here, too. */
2084 #ifdef EH_FRAME_SECTION_NAME
2085 #include "unwind-dw2-fde.h"
2086 extern unsigned char __EH_FRAME_BEGIN__
[];
2089 /* Run all the global destructors on exit from the program. */
2092 __do_global_dtors (void)
2094 #ifdef DO_GLOBAL_DTORS_BODY
2095 DO_GLOBAL_DTORS_BODY
;
2097 static func_ptr
*p
= __DTOR_LIST__
+ 1;
2104 #if defined (EH_FRAME_SECTION_NAME) && !defined (HAS_INIT_SECTION)
2106 static int completed
= 0;
2110 __deregister_frame_info (__EH_FRAME_BEGIN__
);
2117 #ifndef HAS_INIT_SECTION
2118 /* Run all the global constructors on entry to the program. */
2121 __do_global_ctors (void)
2123 #ifdef EH_FRAME_SECTION_NAME
2125 static struct object object
;
2126 __register_frame_info (__EH_FRAME_BEGIN__
, &object
);
2129 DO_GLOBAL_CTORS_BODY
;
2130 atexit (__do_global_dtors
);
2132 #endif /* no HAS_INIT_SECTION */
2134 #if !defined (HAS_INIT_SECTION) || defined (INVOKE__main)
2135 /* Subroutine called automatically by `main'.
2136 Compiling a global function named `main'
2137 produces an automatic call to this function at the beginning.
2139 For many systems, this routine calls __do_global_ctors.
2140 For systems which support a .init section we use the .init section
2141 to run __do_global_ctors, so we need not do anything here. */
2143 extern void SYMBOL__MAIN (void);
2147 /* Support recursive calls to `main': run initializers just once. */
2148 static int initialized
;
2152 __do_global_ctors ();
2155 #endif /* no HAS_INIT_SECTION or INVOKE__main */
2157 #endif /* L__main */
2158 #endif /* __CYGWIN__ */
2162 #include "gbl-ctors.h"
2164 /* Provide default definitions for the lists of constructors and
2165 destructors, so that we don't get linker errors. These symbols are
2166 intentionally bss symbols, so that gld and/or collect will provide
2167 the right values. */
2169 /* We declare the lists here with two elements each,
2170 so that they are valid empty lists if no other definition is loaded.
2172 If we are using the old "set" extensions to have the gnu linker
2173 collect ctors and dtors, then we __CTOR_LIST__ and __DTOR_LIST__
2174 must be in the bss/common section.
2176 Long term no port should use those extensions. But many still do. */
2177 #if !defined(INIT_SECTION_ASM_OP) && !defined(CTOR_LISTS_DEFINED_EXTERNALLY)
2178 #if defined (TARGET_ASM_CONSTRUCTOR) || defined (USE_COLLECT2)
2179 func_ptr __CTOR_LIST__
[2] = {0, 0};
2180 func_ptr __DTOR_LIST__
[2] = {0, 0};
2182 func_ptr __CTOR_LIST__
[2];
2183 func_ptr __DTOR_LIST__
[2];
2185 #endif /* no INIT_SECTION_ASM_OP and not CTOR_LISTS_DEFINED_EXTERNALLY */
2186 #endif /* L_ctors */
2187 #endif /* LIBGCC2_UNITS_PER_WORD <= MIN_UNITS_PER_WORD */