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 Free Software Foundation, Inc.
6 This file is part of GNU CC.
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
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 GNU CC is distributed in the hope that it will be useful,
23 but WITHOUT ANY WARRANTY; without even the implied warranty of
24 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 GNU General Public License for more details.
27 You should have received a copy of the GNU General Public License
28 along with GNU CC; see the file COPYING. If not, write to
29 the Free Software Foundation, 59 Temple Place - Suite 330,
30 Boston, MA 02111-1307, USA. */
32 /* It is incorrect to include config.h here, because this file is being
33 compiled for the target, and hence definitions concerning only the host
41 /* Don't use `fancy_abort' here even if config.h says to use it. */
48 #if defined (L_negdi2) || defined (L_divdi3) || defined (L_moddi3)
49 #if defined (L_divdi3) || defined (L_moddi3)
61 w
.s
.high
= -uu
.s
.high
- ((UWtype
) w
.s
.low
> 0);
69 __addvsi3 (Wtype a
, Wtype b
)
75 if (b
>= 0 ? w
< a
: w
> a
)
84 __addvdi3 (DWtype a
, DWtype b
)
90 if (b
>= 0 ? w
< a
: w
> a
)
99 __subvsi3 (Wtype a
, Wtype b
)
102 return __addvsi3 (a
, (-b
));
108 if (b
>= 0 ? w
> a
: w
< a
)
118 __subvdi3 (DWtype a
, DWtype b
)
127 if (b
>= 0 ? w
> a
: w
< a
)
137 __mulvsi3 (Wtype a
, Wtype b
)
143 if (((a
>= 0) == (b
>= 0)) ? w
< 0 : w
> 0)
158 if (a
>= 0 ? w
> 0 : w
< 0)
173 if (a
>= 0 ? w
> 0 : w
< 0)
222 __mulvdi3 (DWtype u
, DWtype v
)
228 if (((u
>= 0) == (v
>= 0)) ? w
< 0 : w
> 0)
236 /* Unless shift functions are defined whith full ANSI prototypes,
237 parameter b will be promoted to int if word_type is smaller than an int. */
240 __lshrdi3 (DWtype u
, word_type b
)
251 bm
= (sizeof (Wtype
) * BITS_PER_UNIT
) - b
;
255 w
.s
.low
= (UWtype
) uu
.s
.high
>> -bm
;
259 UWtype carries
= (UWtype
) uu
.s
.high
<< bm
;
261 w
.s
.high
= (UWtype
) uu
.s
.high
>> b
;
262 w
.s
.low
= ((UWtype
) uu
.s
.low
>> b
) | carries
;
271 __ashldi3 (DWtype u
, word_type b
)
282 bm
= (sizeof (Wtype
) * BITS_PER_UNIT
) - b
;
286 w
.s
.high
= (UWtype
) uu
.s
.low
<< -bm
;
290 UWtype carries
= (UWtype
) uu
.s
.low
>> bm
;
292 w
.s
.low
= (UWtype
) uu
.s
.low
<< b
;
293 w
.s
.high
= ((UWtype
) uu
.s
.high
<< b
) | carries
;
302 __ashrdi3 (DWtype u
, word_type b
)
313 bm
= (sizeof (Wtype
) * BITS_PER_UNIT
) - b
;
316 /* w.s.high = 1..1 or 0..0 */
317 w
.s
.high
= uu
.s
.high
>> (sizeof (Wtype
) * BITS_PER_UNIT
- 1);
318 w
.s
.low
= uu
.s
.high
>> -bm
;
322 UWtype carries
= (UWtype
) uu
.s
.high
<< bm
;
324 w
.s
.high
= uu
.s
.high
>> b
;
325 w
.s
.low
= ((UWtype
) uu
.s
.low
>> b
) | carries
;
337 UWtype word
, count
, add
;
341 word
= uu
.s
.low
, add
= 0;
342 else if (uu
.s
.high
!= 0)
343 word
= uu
.s
.high
, add
= BITS_PER_UNIT
* sizeof (Wtype
);
347 count_trailing_zeros (count
, word
);
348 return count
+ add
+ 1;
354 __muldi3 (DWtype u
, DWtype v
)
362 w
.ll
= __umulsidi3 (uu
.s
.low
, vv
.s
.low
);
363 w
.s
.high
+= ((UWtype
) uu
.s
.low
* (UWtype
) vv
.s
.high
364 + (UWtype
) uu
.s
.high
* (UWtype
) vv
.s
.low
);
371 #if defined (sdiv_qrnnd)
373 __udiv_w_sdiv (UWtype
*rp
, UWtype a1
, UWtype a0
, UWtype d
)
380 if (a1
< d
- a1
- (a0
>> (W_TYPE_SIZE
- 1)))
382 /* dividend, divisor, and quotient are nonnegative */
383 sdiv_qrnnd (q
, r
, a1
, a0
, d
);
387 /* Compute c1*2^32 + c0 = a1*2^32 + a0 - 2^31*d */
388 sub_ddmmss (c1
, c0
, a1
, a0
, d
>> 1, d
<< (W_TYPE_SIZE
- 1));
389 /* Divide (c1*2^32 + c0) by d */
390 sdiv_qrnnd (q
, r
, c1
, c0
, d
);
391 /* Add 2^31 to quotient */
392 q
+= (UWtype
) 1 << (W_TYPE_SIZE
- 1);
397 b1
= d
>> 1; /* d/2, between 2^30 and 2^31 - 1 */
398 c1
= a1
>> 1; /* A/2 */
399 c0
= (a1
<< (W_TYPE_SIZE
- 1)) + (a0
>> 1);
401 if (a1
< b1
) /* A < 2^32*b1, so A/2 < 2^31*b1 */
403 sdiv_qrnnd (q
, r
, c1
, c0
, b1
); /* (A/2) / (d/2) */
405 r
= 2*r
+ (a0
& 1); /* Remainder from A/(2*b1) */
422 else if (c1
< b1
) /* So 2^31 <= (A/2)/b1 < 2^32 */
425 c0
= ~c0
; /* logical NOT */
427 sdiv_qrnnd (q
, r
, c1
, c0
, b1
); /* (A/2) / (d/2) */
429 q
= ~q
; /* (A/2)/b1 */
432 r
= 2*r
+ (a0
& 1); /* A/(2*b1) */
450 else /* Implies c1 = b1 */
451 { /* Hence a1 = d - 1 = 2*b1 - 1 */
469 /* If sdiv_qrnnd doesn't exist, define dummy __udiv_w_sdiv. */
471 __udiv_w_sdiv (UWtype
*rp
__attribute__ ((__unused__
)),
472 UWtype a1
__attribute__ ((__unused__
)),
473 UWtype a0
__attribute__ ((__unused__
)),
474 UWtype d
__attribute__ ((__unused__
)))
481 #if (defined (L_udivdi3) || defined (L_divdi3) || \
482 defined (L_umoddi3) || defined (L_moddi3))
487 const UQItype __clz_tab
[] =
489 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,
490 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,
491 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,
492 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,
493 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,
494 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,
495 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,
496 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,
502 #if (defined (L_udivdi3) || defined (L_divdi3) || \
503 defined (L_umoddi3) || defined (L_moddi3))
507 __udivmoddi4 (UDWtype n
, UDWtype d
, UDWtype
*rp
)
512 UWtype d0
, d1
, n0
, n1
, n2
;
524 #if !UDIV_NEEDS_NORMALIZATION
531 udiv_qrnnd (q0
, n0
, n1
, n0
, d0
);
534 /* Remainder in n0. */
541 d0
= 1 / d0
; /* Divide intentionally by zero. */
543 udiv_qrnnd (q1
, n1
, 0, n1
, d0
);
544 udiv_qrnnd (q0
, n0
, n1
, n0
, d0
);
546 /* Remainder in n0. */
557 #else /* UDIV_NEEDS_NORMALIZATION */
565 count_leading_zeros (bm
, d0
);
569 /* Normalize, i.e. make the most significant bit of the
573 n1
= (n1
<< bm
) | (n0
>> (W_TYPE_SIZE
- bm
));
577 udiv_qrnnd (q0
, n0
, n1
, n0
, d0
);
580 /* Remainder in n0 >> bm. */
587 d0
= 1 / d0
; /* Divide intentionally by zero. */
589 count_leading_zeros (bm
, d0
);
593 /* From (n1 >= d0) /\ (the most significant bit of d0 is set),
594 conclude (the most significant bit of n1 is set) /\ (the
595 leading quotient digit q1 = 1).
597 This special case is necessary, not an optimization.
598 (Shifts counts of W_TYPE_SIZE are undefined.) */
607 b
= W_TYPE_SIZE
- bm
;
611 n1
= (n1
<< bm
) | (n0
>> b
);
614 udiv_qrnnd (q1
, n1
, n2
, n1
, d0
);
619 udiv_qrnnd (q0
, n0
, n1
, n0
, d0
);
621 /* Remainder in n0 >> bm. */
631 #endif /* UDIV_NEEDS_NORMALIZATION */
642 /* Remainder in n1n0. */
654 count_leading_zeros (bm
, d1
);
657 /* From (n1 >= d1) /\ (the most significant bit of d1 is set),
658 conclude (the most significant bit of n1 is set) /\ (the
659 quotient digit q0 = 0 or 1).
661 This special case is necessary, not an optimization. */
663 /* The condition on the next line takes advantage of that
664 n1 >= d1 (true due to program flow). */
665 if (n1
> d1
|| n0
>= d0
)
668 sub_ddmmss (n1
, n0
, n1
, n0
, d1
, d0
);
687 b
= W_TYPE_SIZE
- bm
;
689 d1
= (d1
<< bm
) | (d0
>> b
);
692 n1
= (n1
<< bm
) | (n0
>> b
);
695 udiv_qrnnd (q0
, n1
, n2
, n1
, d1
);
696 umul_ppmm (m1
, m0
, q0
, d0
);
698 if (m1
> n1
|| (m1
== n1
&& m0
> n0
))
701 sub_ddmmss (m1
, m0
, m1
, m0
, d1
, d0
);
706 /* Remainder in (n1n0 - m1m0) >> bm. */
709 sub_ddmmss (n1
, n0
, n1
, n0
, m1
, m0
);
710 rr
.s
.low
= (n1
<< b
) | (n0
>> bm
);
711 rr
.s
.high
= n1
>> bm
;
726 __divdi3 (DWtype u
, DWtype v
)
737 uu
.ll
= __negdi2 (uu
.ll
);
740 vv
.ll
= __negdi2 (vv
.ll
);
742 w
= __udivmoddi4 (uu
.ll
, vv
.ll
, (UDWtype
*) 0);
752 __moddi3 (DWtype u
, DWtype v
)
763 uu
.ll
= __negdi2 (uu
.ll
);
765 vv
.ll
= __negdi2 (vv
.ll
);
767 (void) __udivmoddi4 (uu
.ll
, vv
.ll
, &w
);
777 __umoddi3 (UDWtype u
, UDWtype v
)
781 (void) __udivmoddi4 (u
, v
, &w
);
789 __udivdi3 (UDWtype n
, UDWtype d
)
791 return __udivmoddi4 (n
, d
, (UDWtype
*) 0);
797 __cmpdi2 (DWtype a
, DWtype b
)
801 au
.ll
= a
, bu
.ll
= b
;
803 if (au
.s
.high
< bu
.s
.high
)
805 else if (au
.s
.high
> bu
.s
.high
)
807 if ((UWtype
) au
.s
.low
< (UWtype
) bu
.s
.low
)
809 else if ((UWtype
) au
.s
.low
> (UWtype
) bu
.s
.low
)
817 __ucmpdi2 (DWtype a
, DWtype b
)
821 au
.ll
= a
, bu
.ll
= b
;
823 if ((UWtype
) au
.s
.high
< (UWtype
) bu
.s
.high
)
825 else if ((UWtype
) au
.s
.high
> (UWtype
) bu
.s
.high
)
827 if ((UWtype
) au
.s
.low
< (UWtype
) bu
.s
.low
)
829 else if ((UWtype
) au
.s
.low
> (UWtype
) bu
.s
.low
)
835 #if defined(L_fixunstfdi) && (LIBGCC2_LONG_DOUBLE_TYPE_SIZE == 128)
836 #define WORD_SIZE (sizeof (Wtype) * BITS_PER_UNIT)
837 #define HIGH_WORD_COEFF (((UDWtype) 1) << WORD_SIZE)
840 __fixunstfDI (TFtype a
)
848 /* Compute high word of result, as a flonum. */
849 b
= (a
/ HIGH_WORD_COEFF
);
850 /* Convert that to fixed (but not to DWtype!),
851 and shift it into the high word. */
854 /* Remove high part from the TFtype, leaving the low part as flonum. */
856 /* Convert that to fixed (but not to DWtype!) and add it in.
857 Sometimes A comes out negative. This is significant, since
858 A has more bits than a long int does. */
867 #if defined(L_fixtfdi) && (LIBGCC2_LONG_DOUBLE_TYPE_SIZE == 128)
872 return - __fixunstfDI (-a
);
873 return __fixunstfDI (a
);
877 #if defined(L_fixunsxfdi) && (LIBGCC2_LONG_DOUBLE_TYPE_SIZE == 96)
878 #define WORD_SIZE (sizeof (Wtype) * BITS_PER_UNIT)
879 #define HIGH_WORD_COEFF (((UDWtype) 1) << WORD_SIZE)
882 __fixunsxfDI (XFtype a
)
890 /* Compute high word of result, as a flonum. */
891 b
= (a
/ HIGH_WORD_COEFF
);
892 /* Convert that to fixed (but not to DWtype!),
893 and shift it into the high word. */
896 /* Remove high part from the XFtype, leaving the low part as flonum. */
898 /* Convert that to fixed (but not to DWtype!) and add it in.
899 Sometimes A comes out negative. This is significant, since
900 A has more bits than a long int does. */
909 #if defined(L_fixxfdi) && (LIBGCC2_LONG_DOUBLE_TYPE_SIZE == 96)
914 return - __fixunsxfDI (-a
);
915 return __fixunsxfDI (a
);
920 #define WORD_SIZE (sizeof (Wtype) * BITS_PER_UNIT)
921 #define HIGH_WORD_COEFF (((UDWtype) 1) << WORD_SIZE)
924 __fixunsdfDI (DFtype a
)
932 /* Compute high word of result, as a flonum. */
933 b
= (a
/ HIGH_WORD_COEFF
);
934 /* Convert that to fixed (but not to DWtype!),
935 and shift it into the high word. */
938 /* Remove high part from the DFtype, leaving the low part as flonum. */
940 /* Convert that to fixed (but not to DWtype!) and add it in.
941 Sometimes A comes out negative. This is significant, since
942 A has more bits than a long int does. */
956 return - __fixunsdfDI (-a
);
957 return __fixunsdfDI (a
);
962 #define WORD_SIZE (sizeof (Wtype) * BITS_PER_UNIT)
963 #define HIGH_WORD_COEFF (((UDWtype) 1) << WORD_SIZE)
966 __fixunssfDI (SFtype original_a
)
968 /* Convert the SFtype to a DFtype, because that is surely not going
969 to lose any bits. Some day someone else can write a faster version
970 that avoids converting to DFtype, and verify it really works right. */
971 DFtype a
= original_a
;
978 /* Compute high word of result, as a flonum. */
979 b
= (a
/ HIGH_WORD_COEFF
);
980 /* Convert that to fixed (but not to DWtype!),
981 and shift it into the high word. */
984 /* Remove high part from the DFtype, leaving the low part as flonum. */
986 /* Convert that to fixed (but not to DWtype!) and add it in.
987 Sometimes A comes out negative. This is significant, since
988 A has more bits than a long int does. */
1002 return - __fixunssfDI (-a
);
1003 return __fixunssfDI (a
);
1007 #if defined(L_floatdixf) && (LIBGCC2_LONG_DOUBLE_TYPE_SIZE == 96)
1008 #define WORD_SIZE (sizeof (Wtype) * BITS_PER_UNIT)
1009 #define HIGH_HALFWORD_COEFF (((UDWtype) 1) << (WORD_SIZE / 2))
1010 #define HIGH_WORD_COEFF (((UDWtype) 1) << WORD_SIZE)
1013 __floatdixf (DWtype u
)
1017 d
= (Wtype
) (u
>> WORD_SIZE
);
1018 d
*= HIGH_HALFWORD_COEFF
;
1019 d
*= HIGH_HALFWORD_COEFF
;
1020 d
+= (UWtype
) (u
& (HIGH_WORD_COEFF
- 1));
1026 #if defined(L_floatditf) && (LIBGCC2_LONG_DOUBLE_TYPE_SIZE == 128)
1027 #define WORD_SIZE (sizeof (Wtype) * BITS_PER_UNIT)
1028 #define HIGH_HALFWORD_COEFF (((UDWtype) 1) << (WORD_SIZE / 2))
1029 #define HIGH_WORD_COEFF (((UDWtype) 1) << WORD_SIZE)
1032 __floatditf (DWtype u
)
1036 d
= (Wtype
) (u
>> WORD_SIZE
);
1037 d
*= HIGH_HALFWORD_COEFF
;
1038 d
*= HIGH_HALFWORD_COEFF
;
1039 d
+= (UWtype
) (u
& (HIGH_WORD_COEFF
- 1));
1046 #define WORD_SIZE (sizeof (Wtype) * BITS_PER_UNIT)
1047 #define HIGH_HALFWORD_COEFF (((UDWtype) 1) << (WORD_SIZE / 2))
1048 #define HIGH_WORD_COEFF (((UDWtype) 1) << WORD_SIZE)
1051 __floatdidf (DWtype u
)
1055 d
= (Wtype
) (u
>> WORD_SIZE
);
1056 d
*= HIGH_HALFWORD_COEFF
;
1057 d
*= HIGH_HALFWORD_COEFF
;
1058 d
+= (UWtype
) (u
& (HIGH_WORD_COEFF
- 1));
1065 #define WORD_SIZE (sizeof (Wtype) * BITS_PER_UNIT)
1066 #define HIGH_HALFWORD_COEFF (((UDWtype) 1) << (WORD_SIZE / 2))
1067 #define HIGH_WORD_COEFF (((UDWtype) 1) << WORD_SIZE)
1068 #define DI_SIZE (sizeof (DWtype) * BITS_PER_UNIT)
1070 /* Define codes for all the float formats that we know of. Note
1071 that this is copied from real.h. */
1073 #define UNKNOWN_FLOAT_FORMAT 0
1074 #define IEEE_FLOAT_FORMAT 1
1075 #define VAX_FLOAT_FORMAT 2
1076 #define IBM_FLOAT_FORMAT 3
1078 /* Default to IEEE float if not specified. Nearly all machines use it. */
1079 #ifndef HOST_FLOAT_FORMAT
1080 #define HOST_FLOAT_FORMAT IEEE_FLOAT_FORMAT
1083 #if HOST_FLOAT_FORMAT == IEEE_FLOAT_FORMAT
1088 #if HOST_FLOAT_FORMAT == IBM_FLOAT_FORMAT
1093 #if HOST_FLOAT_FORMAT == VAX_FLOAT_FORMAT
1099 __floatdisf (DWtype u
)
1101 /* Do the calculation in DFmode
1102 so that we don't lose any of the precision of the high word
1103 while multiplying it. */
1106 /* Protect against double-rounding error.
1107 Represent any low-order bits, that might be truncated in DFmode,
1108 by a bit that won't be lost. The bit can go in anywhere below the
1109 rounding position of the SFmode. A fixed mask and bit position
1110 handles all usual configurations. It doesn't handle the case
1111 of 128-bit DImode, however. */
1112 if (DF_SIZE
< DI_SIZE
1113 && DF_SIZE
> (DI_SIZE
- DF_SIZE
+ SF_SIZE
))
1115 #define REP_BIT ((UDWtype) 1 << (DI_SIZE - DF_SIZE))
1116 if (! (- ((DWtype
) 1 << DF_SIZE
) < u
1117 && u
< ((DWtype
) 1 << DF_SIZE
)))
1119 if ((UDWtype
) u
& (REP_BIT
- 1))
1123 f
= (Wtype
) (u
>> WORD_SIZE
);
1124 f
*= HIGH_HALFWORD_COEFF
;
1125 f
*= HIGH_HALFWORD_COEFF
;
1126 f
+= (UWtype
) (u
& (HIGH_WORD_COEFF
- 1));
1132 #if defined(L_fixunsxfsi) && LIBGCC2_LONG_DOUBLE_TYPE_SIZE == 96
1133 /* Reenable the normal types, in case limits.h needs them. */
1146 __fixunsxfSI (XFtype a
)
1148 if (a
>= - (DFtype
) Wtype_MIN
)
1149 return (Wtype
) (a
+ Wtype_MIN
) - Wtype_MIN
;
1155 /* Reenable the normal types, in case limits.h needs them. */
1168 __fixunsdfSI (DFtype a
)
1170 if (a
>= - (DFtype
) Wtype_MIN
)
1171 return (Wtype
) (a
+ Wtype_MIN
) - Wtype_MIN
;
1177 /* Reenable the normal types, in case limits.h needs them. */
1190 __fixunssfSI (SFtype a
)
1192 if (a
>= - (SFtype
) Wtype_MIN
)
1193 return (Wtype
) (a
+ Wtype_MIN
) - Wtype_MIN
;
1198 /* From here on down, the routines use normal data types. */
1200 #define SItype bogus_type
1201 #define USItype bogus_type
1202 #define DItype bogus_type
1203 #define UDItype bogus_type
1204 #define SFtype bogus_type
1205 #define DFtype bogus_type
1223 /* Like bcmp except the sign is meaningful.
1224 Result is negative if S1 is less than S2,
1225 positive if S1 is greater, 0 if S1 and S2 are equal. */
1228 __gcc_bcmp (const unsigned char *s1
, const unsigned char *s2
, size_t size
)
1232 unsigned char c1
= *s1
++, c2
= *s2
++;
1242 /* __eprintf used to be used by GCC's private version of <assert.h>.
1243 We no longer provide that header, but this routine remains in libgcc.a
1244 for binary backward compatibility. Note that it is not included in
1245 the shared version of libgcc. */
1247 #ifndef inhibit_libc
1249 #undef NULL /* Avoid errors if stdio.h and our stddef.h mismatch. */
1253 __eprintf (const char *string
, const char *expression
,
1254 unsigned int line
, const char *filename
)
1256 fprintf (stderr
, string
, expression
, line
, filename
);
1266 /* Structure emitted by -a */
1270 const char *filename
;
1274 const unsigned long *addresses
;
1276 /* Older GCC's did not emit these fields. */
1278 const char **functions
;
1279 const long *line_nums
;
1280 const char **filenames
;
1284 #ifdef BLOCK_PROFILER_CODE
1287 #ifndef inhibit_libc
1289 /* Simple minded basic block profiling output dumper for
1290 systems that don't provide tcov support. At present,
1291 it requires atexit and stdio. */
1293 #undef NULL /* Avoid errors if stdio.h and our stddef.h mismatch. */
1295 char *ctime
PARAMS ((const time_t *));
1297 #include "gbl-ctors.h"
1298 #include "gcov-io.h"
1300 #ifdef TARGET_HAS_F_SETLKW
1305 static struct bb
*bb_head
;
1307 static int num_digits (long value
, int base
) __attribute__ ((const));
1309 /* Return the number of digits needed to print a value */
1310 /* __inline__ */ static int num_digits (long value
, int base
)
1312 int minus
= (value
< 0 && base
!= 16);
1313 unsigned long v
= (minus
) ? -value
: value
;
1327 __bb_exit_func (void)
1329 FILE *da_file
, *file
;
1336 i
= strlen (bb_head
->filename
) - 3;
1338 if (!strcmp (bb_head
->filename
+i
, ".da"))
1340 /* Must be -fprofile-arcs not -a.
1341 Dump data in a form that gcov expects. */
1345 for (ptr
= bb_head
; ptr
!= (struct bb
*) 0; ptr
= ptr
->next
)
1349 /* Make sure the output file exists -
1350 but don't clobber exiting data. */
1351 if ((da_file
= fopen (ptr
->filename
, "a")) != 0)
1354 /* Need to re-open in order to be able to write from the start. */
1355 da_file
= fopen (ptr
->filename
, "r+b");
1356 /* Some old systems might not allow the 'b' mode modifier.
1357 Therefore, try to open without it. This can lead to a race
1358 condition so that when you delete and re-create the file, the
1359 file might be opened in text mode, but then, you shouldn't
1360 delete the file in the first place. */
1362 da_file
= fopen (ptr
->filename
, "r+");
1365 fprintf (stderr
, "arc profiling: Can't open output file %s.\n",
1370 /* After a fork, another process might try to read and/or write
1371 the same file simultanously. So if we can, lock the file to
1372 avoid race conditions. */
1373 #if defined (TARGET_HAS_F_SETLKW)
1375 struct flock s_flock
;
1377 s_flock
.l_type
= F_WRLCK
;
1378 s_flock
.l_whence
= SEEK_SET
;
1379 s_flock
.l_start
= 0;
1381 s_flock
.l_pid
= getpid ();
1383 while (fcntl (fileno (da_file
), F_SETLKW
, &s_flock
)
1388 /* If the file is not empty, and the number of counts in it is the
1389 same, then merge them in. */
1390 firstchar
= fgetc (da_file
);
1391 if (firstchar
== EOF
)
1393 if (ferror (da_file
))
1395 fprintf (stderr
, "arc profiling: Can't read output file ");
1396 perror (ptr
->filename
);
1403 if (ungetc (firstchar
, da_file
) == EOF
)
1405 if (__read_long (&n_counts
, da_file
, 8) != 0)
1407 fprintf (stderr
, "arc profiling: Can't read output file %s.\n",
1412 if (n_counts
== ptr
->ncounts
)
1416 for (i
= 0; i
< n_counts
; i
++)
1420 if (__read_long (&v
, da_file
, 8) != 0)
1422 fprintf (stderr
, "arc profiling: Can't read output file %s.\n",
1426 ptr
->counts
[i
] += v
;
1434 /* ??? Should first write a header to the file. Preferably, a 4 byte
1435 magic number, 4 bytes containing the time the program was
1436 compiled, 4 bytes containing the last modification time of the
1437 source file, and 4 bytes indicating the compiler options used.
1439 That way we can easily verify that the proper source/executable/
1440 data file combination is being used from gcov. */
1442 if (__write_long (ptr
->ncounts
, da_file
, 8) != 0)
1445 fprintf (stderr
, "arc profiling: Error writing output file %s.\n",
1451 long *count_ptr
= ptr
->counts
;
1453 for (j
= ptr
->ncounts
; j
> 0; j
--)
1455 if (__write_long (*count_ptr
, da_file
, 8) != 0)
1463 fprintf (stderr
, "arc profiling: Error writing output file %s.\n",
1467 if (fclose (da_file
) == EOF
)
1468 fprintf (stderr
, "arc profiling: Error closing output file %s.\n",
1475 /* Must be basic block profiling. Emit a human readable output file. */
1477 file
= fopen ("bb.out", "a");
1486 /* This is somewhat type incorrect, but it avoids worrying about
1487 exactly where time.h is included from. It should be ok unless
1488 a void * differs from other pointer formats, or if sizeof (long)
1489 is < sizeof (time_t). It would be nice if we could assume the
1490 use of rationale standards here. */
1492 time ((void *) &time_value
);
1493 fprintf (file
, "Basic block profiling finished on %s\n", ctime ((void *) &time_value
));
1495 /* We check the length field explicitly in order to allow compatibility
1496 with older GCC's which did not provide it. */
1498 for (ptr
= bb_head
; ptr
!= (struct bb
*) 0; ptr
= ptr
->next
)
1501 int func_p
= (ptr
->nwords
>= (long) sizeof (struct bb
)
1502 && ptr
->nwords
<= 1000
1504 int line_p
= (func_p
&& ptr
->line_nums
);
1505 int file_p
= (func_p
&& ptr
->filenames
);
1506 int addr_p
= (ptr
->addresses
!= 0);
1507 long ncounts
= ptr
->ncounts
;
1513 int blk_len
= num_digits (ncounts
, 10);
1518 fprintf (file
, "File %s, %ld basic blocks \n\n",
1519 ptr
->filename
, ncounts
);
1521 /* Get max values for each field. */
1522 for (i
= 0; i
< ncounts
; i
++)
1527 if (cnt_max
< ptr
->counts
[i
])
1528 cnt_max
= ptr
->counts
[i
];
1530 if (addr_p
&& (unsigned long) addr_max
< ptr
->addresses
[i
])
1531 addr_max
= ptr
->addresses
[i
];
1533 if (line_p
&& line_max
< ptr
->line_nums
[i
])
1534 line_max
= ptr
->line_nums
[i
];
1538 p
= (ptr
->functions
[i
]) ? (ptr
->functions
[i
]) : "<none>";
1546 p
= (ptr
->filenames
[i
]) ? (ptr
->filenames
[i
]) : "<none>";
1553 addr_len
= num_digits (addr_max
, 16);
1554 cnt_len
= num_digits (cnt_max
, 10);
1555 line_len
= num_digits (line_max
, 10);
1557 /* Now print out the basic block information. */
1558 for (i
= 0; i
< ncounts
; i
++)
1561 " Block #%*d: executed %*ld time(s)",
1563 cnt_len
, ptr
->counts
[i
]);
1566 fprintf (file
, " address= 0x%.*lx", addr_len
,
1570 fprintf (file
, " function= %-*s", func_len
,
1571 (ptr
->functions
[i
]) ? ptr
->functions
[i
] : "<none>");
1574 fprintf (file
, " line= %*ld", line_len
, ptr
->line_nums
[i
]);
1577 fprintf (file
, " file= %s",
1578 (ptr
->filenames
[i
]) ? ptr
->filenames
[i
] : "<none>");
1580 fprintf (file
, "\n");
1583 fprintf (file
, "\n");
1587 fprintf (file
, "\n\n");
1593 __bb_init_func (struct bb
*blocks
)
1595 /* User is supposed to check whether the first word is non-0,
1596 but just in case.... */
1598 if (blocks
->zero_word
)
1601 /* Initialize destructor. */
1603 atexit (__bb_exit_func
);
1605 /* Set up linked list. */
1606 blocks
->zero_word
= 1;
1607 blocks
->next
= bb_head
;
1611 /* Called before fork or exec - write out profile information gathered so
1612 far and reset it to zero. This avoids duplication or loss of the
1613 profile information gathered so far. */
1615 __bb_fork_func (void)
1620 for (ptr
= bb_head
; ptr
!= (struct bb
*) 0; ptr
= ptr
->next
)
1623 for (i
= ptr
->ncounts
- 1; i
>= 0; i
--)
1628 #ifndef MACHINE_STATE_SAVE
1629 #define MACHINE_STATE_SAVE(ID)
1631 #ifndef MACHINE_STATE_RESTORE
1632 #define MACHINE_STATE_RESTORE(ID)
1635 /* Number of buckets in hashtable of basic block addresses. */
1637 #define BB_BUCKETS 311
1639 /* Maximum length of string in file bb.in. */
1641 #define BBINBUFSIZE 500
1645 struct bb_edge
*next
;
1646 unsigned long src_addr
;
1647 unsigned long dst_addr
;
1648 unsigned long count
;
1653 TRACE_KEEP
= 0, TRACE_ON
= 1, TRACE_OFF
= 2
1658 struct bb_func
*next
;
1661 enum bb_func_mode mode
;
1664 /* This is the connection to the outside world.
1665 The BLOCK_PROFILER macro must set __bb.blocks
1666 and __bb.blockno. */
1669 unsigned long blockno
;
1673 /* Vars to store addrs of source and destination basic blocks
1676 static unsigned long bb_src
= 0;
1677 static unsigned long bb_dst
= 0;
1679 static FILE *bb_tracefile
= (FILE *) 0;
1680 static struct bb_edge
**bb_hashbuckets
= (struct bb_edge
**) 0;
1681 static struct bb_func
*bb_func_head
= (struct bb_func
*) 0;
1682 static unsigned long bb_callcount
= 0;
1683 static int bb_mode
= 0;
1685 static unsigned long *bb_stack
= (unsigned long *) 0;
1686 static size_t bb_stacksize
= 0;
1688 static int reported
= 0;
1691 Always : Print execution frequencies of basic blocks
1693 bb_mode & 1 != 0 : Dump trace of basic blocks to file bbtrace[.gz]
1694 bb_mode & 2 != 0 : Print jump frequencies to file bb.out.
1695 bb_mode & 4 != 0 : Cut call instructions from basic block flow.
1696 bb_mode & 8 != 0 : Insert return instructions in basic block flow.
1701 /*#include <sys/types.h>*/
1702 #include <sys/stat.h>
1703 /*#include <malloc.h>*/
1705 /* Commands executed by gopen. */
1707 #define GOPENDECOMPRESS "gzip -cd "
1708 #define GOPENCOMPRESS "gzip -c >"
1710 /* Like fopen but pipes through gzip. mode may only be "r" or "w".
1711 If it does not compile, simply replace gopen by fopen and delete
1712 '.gz' from any first parameter to gopen. */
1715 gopen (char *fn
, char *mode
)
1723 if (mode
[0] != 'r' && mode
[0] != 'w')
1726 p
= fn
+ strlen (fn
)-1;
1727 use_gzip
= ((p
[-1] == '.' && (p
[0] == 'Z' || p
[0] == 'z'))
1728 || (p
[-2] == '.' && p
[-1] == 'g' && p
[0] == 'z'));
1735 char *s
= (char *) malloc (sizeof (char) * strlen (fn
)
1736 + sizeof (GOPENDECOMPRESS
));
1737 strcpy (s
, GOPENDECOMPRESS
);
1738 strcpy (s
+ (sizeof (GOPENDECOMPRESS
)-1), fn
);
1739 f
= popen (s
, mode
);
1747 char *s
= (char *) malloc (sizeof (char) * strlen (fn
)
1748 + sizeof (GOPENCOMPRESS
));
1749 strcpy (s
, GOPENCOMPRESS
);
1750 strcpy (s
+ (sizeof (GOPENCOMPRESS
)-1), fn
);
1751 if (!(f
= popen (s
, mode
)))
1752 f
= fopen (s
, mode
);
1759 return fopen (fn
, mode
);
1769 if (!fstat (fileno (f
), &buf
) && S_ISFIFO (buf
.st_mode
))
1777 #endif /* HAVE_POPEN */
1779 /* Called once per program. */
1782 __bb_exit_trace_func (void)
1784 FILE *file
= fopen ("bb.out", "a");
1797 gclose (bb_tracefile
);
1799 fclose (bb_tracefile
);
1800 #endif /* HAVE_POPEN */
1803 /* Check functions in `bb.in'. */
1808 const struct bb_func
*p
;
1809 int printed_something
= 0;
1813 /* This is somewhat type incorrect. */
1814 time ((void *) &time_value
);
1816 for (p
= bb_func_head
; p
!= (struct bb_func
*) 0; p
= p
->next
)
1818 for (ptr
= bb_head
; ptr
!= (struct bb
*) 0; ptr
= ptr
->next
)
1820 if (!ptr
->filename
|| (p
->filename
!= (char *) 0 && strcmp (p
->filename
, ptr
->filename
)))
1822 for (blk
= 0; blk
< ptr
->ncounts
; blk
++)
1824 if (!strcmp (p
->funcname
, ptr
->functions
[blk
]))
1829 if (!printed_something
)
1831 fprintf (file
, "Functions in `bb.in' not executed during basic block profiling on %s\n", ctime ((void *) &time_value
));
1832 printed_something
= 1;
1835 fprintf (file
, "\tFunction %s", p
->funcname
);
1837 fprintf (file
, " of file %s", p
->filename
);
1838 fprintf (file
, "\n" );
1843 if (printed_something
)
1844 fprintf (file
, "\n");
1850 if (!bb_hashbuckets
)
1854 fprintf (stderr
, "Profiler: out of memory\n");
1864 unsigned long addr_max
= 0;
1865 unsigned long cnt_max
= 0;
1869 /* This is somewhat type incorrect, but it avoids worrying about
1870 exactly where time.h is included from. It should be ok unless
1871 a void * differs from other pointer formats, or if sizeof (long)
1872 is < sizeof (time_t). It would be nice if we could assume the
1873 use of rationale standards here. */
1875 time ((void *) &time_value
);
1876 fprintf (file
, "Basic block jump tracing");
1878 switch (bb_mode
& 12)
1881 fprintf (file
, " (with call)");
1885 /* Print nothing. */
1889 fprintf (file
, " (with call & ret)");
1893 fprintf (file
, " (with ret)");
1897 fprintf (file
, " finished on %s\n", ctime ((void *) &time_value
));
1899 for (i
= 0; i
< BB_BUCKETS
; i
++)
1901 struct bb_edge
*bucket
= bb_hashbuckets
[i
];
1902 for ( ; bucket
; bucket
= bucket
->next
)
1904 if (addr_max
< bucket
->src_addr
)
1905 addr_max
= bucket
->src_addr
;
1906 if (addr_max
< bucket
->dst_addr
)
1907 addr_max
= bucket
->dst_addr
;
1908 if (cnt_max
< bucket
->count
)
1909 cnt_max
= bucket
->count
;
1912 addr_len
= num_digits (addr_max
, 16);
1913 cnt_len
= num_digits (cnt_max
, 10);
1915 for ( i
= 0; i
< BB_BUCKETS
; i
++)
1917 struct bb_edge
*bucket
= bb_hashbuckets
[i
];
1918 for ( ; bucket
; bucket
= bucket
->next
)
1921 "Jump from block 0x%.*lx to block 0x%.*lx executed %*lu time(s)\n",
1922 addr_len
, bucket
->src_addr
,
1923 addr_len
, bucket
->dst_addr
,
1924 cnt_len
, bucket
->count
);
1928 fprintf (file
, "\n");
1936 /* Free allocated memory. */
1941 struct bb_func
*old
= f
;
1944 if (old
->funcname
) free (old
->funcname
);
1945 if (old
->filename
) free (old
->filename
);
1956 for (i
= 0; i
< BB_BUCKETS
; i
++)
1958 struct bb_edge
*old
, *bucket
= bb_hashbuckets
[i
];
1963 bucket
= bucket
->next
;
1967 free (bb_hashbuckets
);
1970 for (b
= bb_head
; b
; b
= b
->next
)
1971 if (b
->flags
) free (b
->flags
);
1974 /* Called once per program. */
1977 __bb_init_prg (void)
1980 char buf
[BBINBUFSIZE
];
1983 enum bb_func_mode m
;
1986 /* Initialize destructor. */
1987 atexit (__bb_exit_func
);
1989 if (!(file
= fopen ("bb.in", "r")))
1992 while(fgets (buf
, BBINBUFSIZE
, file
) != 0)
2008 if (!strcmp (p
, "__bb_trace__"))
2010 else if (!strcmp (p
, "__bb_jumps__"))
2012 else if (!strcmp (p
, "__bb_hidecall__"))
2014 else if (!strcmp (p
, "__bb_showret__"))
2018 struct bb_func
*f
= (struct bb_func
*) malloc (sizeof (struct bb_func
));
2022 f
->next
= bb_func_head
;
2023 if ((pos
= strchr (p
, ':')))
2025 if (!(f
->funcname
= (char *) malloc (strlen (pos
+1)+1)))
2027 strcpy (f
->funcname
, pos
+1);
2029 if ((f
->filename
= (char *) malloc (l
+1)))
2031 strncpy (f
->filename
, p
, l
);
2032 f
->filename
[l
] = '\0';
2035 f
->filename
= (char *) 0;
2039 if (!(f
->funcname
= (char *) malloc (strlen (p
)+1)))
2041 strcpy (f
->funcname
, p
);
2042 f
->filename
= (char *) 0;
2054 bb_tracefile
= gopen ("bbtrace.gz", "w");
2059 bb_tracefile
= fopen ("bbtrace", "w");
2061 #endif /* HAVE_POPEN */
2065 bb_hashbuckets
= (struct bb_edge
**)
2066 malloc (BB_BUCKETS
* sizeof (struct bb_edge
*));
2068 /* Use a loop here rather than calling bzero to avoid having to
2069 conditionalize its existance. */
2070 for (i
= 0; i
< BB_BUCKETS
; i
++)
2071 bb_hashbuckets
[i
] = 0;
2077 bb_stack
= (unsigned long *) malloc (bb_stacksize
* sizeof (*bb_stack
));
2080 /* Initialize destructor. */
2081 atexit (__bb_exit_trace_func
);
2084 /* Called upon entering a basic block. */
2087 __bb_trace_func (void)
2089 struct bb_edge
*bucket
;
2091 MACHINE_STATE_SAVE("1")
2093 if (!bb_callcount
|| (__bb
.blocks
->flags
&& (__bb
.blocks
->flags
[__bb
.blockno
] & TRACE_OFF
)))
2096 bb_dst
= __bb
.blocks
->addresses
[__bb
.blockno
];
2097 __bb
.blocks
->counts
[__bb
.blockno
]++;
2101 fwrite (&bb_dst
, sizeof (unsigned long), 1, bb_tracefile
);
2106 struct bb_edge
**startbucket
, **oldnext
;
2108 oldnext
= startbucket
2109 = & bb_hashbuckets
[ (((int) bb_src
*8) ^ (int) bb_dst
) % BB_BUCKETS
];
2110 bucket
= *startbucket
;
2112 for (bucket
= *startbucket
; bucket
;
2113 oldnext
= &(bucket
->next
), bucket
= *oldnext
)
2115 if (bucket
->src_addr
== bb_src
2116 && bucket
->dst_addr
== bb_dst
)
2119 *oldnext
= bucket
->next
;
2120 bucket
->next
= *startbucket
;
2121 *startbucket
= bucket
;
2126 bucket
= (struct bb_edge
*) malloc (sizeof (struct bb_edge
));
2132 fprintf (stderr
, "Profiler: out of memory\n");
2139 bucket
->src_addr
= bb_src
;
2140 bucket
->dst_addr
= bb_dst
;
2141 bucket
->next
= *startbucket
;
2142 *startbucket
= bucket
;
2153 MACHINE_STATE_RESTORE("1")
2157 /* Called when returning from a function and `__bb_showret__' is set. */
2160 __bb_trace_func_ret (void)
2162 struct bb_edge
*bucket
;
2164 if (!bb_callcount
|| (__bb
.blocks
->flags
&& (__bb
.blocks
->flags
[__bb
.blockno
] & TRACE_OFF
)))
2169 struct bb_edge
**startbucket
, **oldnext
;
2171 oldnext
= startbucket
2172 = & bb_hashbuckets
[ (((int) bb_dst
* 8) ^ (int) bb_src
) % BB_BUCKETS
];
2173 bucket
= *startbucket
;
2175 for (bucket
= *startbucket
; bucket
;
2176 oldnext
= &(bucket
->next
), bucket
= *oldnext
)
2178 if (bucket
->src_addr
== bb_dst
2179 && bucket
->dst_addr
== bb_src
)
2182 *oldnext
= bucket
->next
;
2183 bucket
->next
= *startbucket
;
2184 *startbucket
= bucket
;
2189 bucket
= (struct bb_edge
*) malloc (sizeof (struct bb_edge
));
2195 fprintf (stderr
, "Profiler: out of memory\n");
2202 bucket
->src_addr
= bb_dst
;
2203 bucket
->dst_addr
= bb_src
;
2204 bucket
->next
= *startbucket
;
2205 *startbucket
= bucket
;
2218 /* Called upon entering the first function of a file. */
2221 __bb_init_file (struct bb
*blocks
)
2224 const struct bb_func
*p
;
2225 long blk
, ncounts
= blocks
->ncounts
;
2226 const char **functions
= blocks
->functions
;
2228 /* Set up linked list. */
2229 blocks
->zero_word
= 1;
2230 blocks
->next
= bb_head
;
2235 || !(blocks
->flags
= (char *) malloc (sizeof (char) * blocks
->ncounts
)))
2238 for (blk
= 0; blk
< ncounts
; blk
++)
2239 blocks
->flags
[blk
] = 0;
2241 for (blk
= 0; blk
< ncounts
; blk
++)
2243 for (p
= bb_func_head
; p
; p
= p
->next
)
2245 if (!strcmp (p
->funcname
, functions
[blk
])
2246 && (!p
->filename
|| !strcmp (p
->filename
, blocks
->filename
)))
2248 blocks
->flags
[blk
] |= p
->mode
;
2255 /* Called when exiting from a function. */
2258 __bb_trace_ret (void)
2261 MACHINE_STATE_SAVE("2")
2265 if ((bb_mode
& 12) && bb_stacksize
> bb_callcount
)
2267 bb_src
= bb_stack
[bb_callcount
];
2269 __bb_trace_func_ret ();
2275 MACHINE_STATE_RESTORE("2")
2279 /* Called when entering a function. */
2282 __bb_init_trace_func (struct bb
*blocks
, unsigned long blockno
)
2284 static int trace_init
= 0;
2286 MACHINE_STATE_SAVE("3")
2288 if (!blocks
->zero_word
)
2295 __bb_init_file (blocks
);
2305 if (bb_callcount
>= bb_stacksize
)
2307 size_t newsize
= bb_callcount
+ 100;
2309 bb_stack
= (unsigned long *) realloc (bb_stack
, newsize
);
2314 fprintf (stderr
, "Profiler: out of memory\n");
2318 goto stack_overflow
;
2320 bb_stacksize
= newsize
;
2322 bb_stack
[bb_callcount
] = bb_src
;
2333 else if (blocks
->flags
&& (blocks
->flags
[blockno
] & TRACE_ON
))
2339 bb_stack
[bb_callcount
] = bb_src
;
2342 MACHINE_STATE_RESTORE("3")
2345 #endif /* not inhibit_libc */
2346 #endif /* not BLOCK_PROFILER_CODE */
2349 #ifdef L_clear_cache
2350 /* Clear part of an instruction cache. */
2352 #define INSN_CACHE_PLANE_SIZE (INSN_CACHE_SIZE / INSN_CACHE_DEPTH)
2355 __clear_cache (char *beg
__attribute__((__unused__
)),
2356 char *end
__attribute__((__unused__
)))
2358 #ifdef CLEAR_INSN_CACHE
2359 CLEAR_INSN_CACHE (beg
, end
);
2361 #ifdef INSN_CACHE_SIZE
2362 static char array
[INSN_CACHE_SIZE
+ INSN_CACHE_PLANE_SIZE
+ INSN_CACHE_LINE_WIDTH
];
2363 static int initialized
;
2367 typedef (*function_ptr
) (void);
2369 #if (INSN_CACHE_SIZE / INSN_CACHE_LINE_WIDTH) < 16
2370 /* It's cheaper to clear the whole cache.
2371 Put in a series of jump instructions so that calling the beginning
2372 of the cache will clear the whole thing. */
2376 int ptr
= (((int) array
+ INSN_CACHE_LINE_WIDTH
- 1)
2377 & -INSN_CACHE_LINE_WIDTH
);
2378 int end_ptr
= ptr
+ INSN_CACHE_SIZE
;
2380 while (ptr
< end_ptr
)
2382 *(INSTRUCTION_TYPE
*)ptr
2383 = JUMP_AHEAD_INSTRUCTION
+ INSN_CACHE_LINE_WIDTH
;
2384 ptr
+= INSN_CACHE_LINE_WIDTH
;
2386 *(INSTRUCTION_TYPE
*) (ptr
- INSN_CACHE_LINE_WIDTH
) = RETURN_INSTRUCTION
;
2391 /* Call the beginning of the sequence. */
2392 (((function_ptr
) (((int) array
+ INSN_CACHE_LINE_WIDTH
- 1)
2393 & -INSN_CACHE_LINE_WIDTH
))
2396 #else /* Cache is large. */
2400 int ptr
= (((int) array
+ INSN_CACHE_LINE_WIDTH
- 1)
2401 & -INSN_CACHE_LINE_WIDTH
);
2403 while (ptr
< (int) array
+ sizeof array
)
2405 *(INSTRUCTION_TYPE
*)ptr
= RETURN_INSTRUCTION
;
2406 ptr
+= INSN_CACHE_LINE_WIDTH
;
2412 /* Find the location in array that occupies the same cache line as BEG. */
2414 offset
= ((int) beg
& -INSN_CACHE_LINE_WIDTH
) & (INSN_CACHE_PLANE_SIZE
- 1);
2415 start_addr
= (((int) (array
+ INSN_CACHE_PLANE_SIZE
- 1)
2416 & -INSN_CACHE_PLANE_SIZE
)
2419 /* Compute the cache alignment of the place to stop clearing. */
2420 #if 0 /* This is not needed for gcc's purposes. */
2421 /* If the block to clear is bigger than a cache plane,
2422 we clear the entire cache, and OFFSET is already correct. */
2423 if (end
< beg
+ INSN_CACHE_PLANE_SIZE
)
2425 offset
= (((int) (end
+ INSN_CACHE_LINE_WIDTH
- 1)
2426 & -INSN_CACHE_LINE_WIDTH
)
2427 & (INSN_CACHE_PLANE_SIZE
- 1));
2429 #if INSN_CACHE_DEPTH > 1
2430 end_addr
= (start_addr
& -INSN_CACHE_PLANE_SIZE
) + offset
;
2431 if (end_addr
<= start_addr
)
2432 end_addr
+= INSN_CACHE_PLANE_SIZE
;
2434 for (plane
= 0; plane
< INSN_CACHE_DEPTH
; plane
++)
2436 int addr
= start_addr
+ plane
* INSN_CACHE_PLANE_SIZE
;
2437 int stop
= end_addr
+ plane
* INSN_CACHE_PLANE_SIZE
;
2439 while (addr
!= stop
)
2441 /* Call the return instruction at ADDR. */
2442 ((function_ptr
) addr
) ();
2444 addr
+= INSN_CACHE_LINE_WIDTH
;
2447 #else /* just one plane */
2450 /* Call the return instruction at START_ADDR. */
2451 ((function_ptr
) start_addr
) ();
2453 start_addr
+= INSN_CACHE_LINE_WIDTH
;
2455 while ((start_addr
% INSN_CACHE_SIZE
) != offset
);
2456 #endif /* just one plane */
2457 #endif /* Cache is large */
2458 #endif /* Cache exists */
2459 #endif /* CLEAR_INSN_CACHE */
2462 #endif /* L_clear_cache */
2466 /* Jump to a trampoline, loading the static chain address. */
2468 #if defined(WINNT) && ! defined(__CYGWIN__) && ! defined (_UWIN)
2481 extern int VirtualProtect (char *, int, int, int *) __attribute__((stdcall));
2485 mprotect (char *addr
, int len
, int prot
)
2502 if (VirtualProtect (addr
, len
, np
, &op
))
2508 #endif /* WINNT && ! __CYGWIN__ && ! _UWIN */
2510 #ifdef TRANSFER_FROM_TRAMPOLINE
2511 TRANSFER_FROM_TRAMPOLINE
2514 #if defined (NeXT) && defined (__MACH__)
2516 /* Make stack executable so we can call trampolines on stack.
2517 This is called from INITIALIZE_TRAMPOLINE in next.h. */
2521 #include <mach/mach.h>
2525 __enable_execute_stack (char *addr
)
2528 char *eaddr
= addr
+ TRAMPOLINE_SIZE
;
2529 vm_address_t a
= (vm_address_t
) addr
;
2531 /* turn on execute access on stack */
2532 r
= vm_protect (task_self (), a
, TRAMPOLINE_SIZE
, FALSE
, VM_PROT_ALL
);
2533 if (r
!= KERN_SUCCESS
)
2535 mach_error("vm_protect VM_PROT_ALL", r
);
2539 /* We inline the i-cache invalidation for speed */
2541 #ifdef CLEAR_INSN_CACHE
2542 CLEAR_INSN_CACHE (addr
, eaddr
);
2544 __clear_cache ((int) addr
, (int) eaddr
);
2548 #endif /* defined (NeXT) && defined (__MACH__) */
2552 /* Make stack executable so we can call trampolines on stack.
2553 This is called from INITIALIZE_TRAMPOLINE in convex.h. */
2555 #include <sys/mman.h>
2556 #include <sys/vmparam.h>
2557 #include <machine/machparam.h>
2560 __enable_execute_stack (void)
2563 static unsigned lowest
= USRSTACK
;
2564 unsigned current
= (unsigned) &fp
& -NBPG
;
2566 if (lowest
> current
)
2568 unsigned len
= lowest
- current
;
2569 mremap (current
, &len
, PROT_READ
| PROT_WRITE
| PROT_EXEC
, MAP_PRIVATE
);
2573 /* Clear instruction cache in case an old trampoline is in it. */
2576 #endif /* __convex__ */
2580 /* Modified from the convex -code above. */
2582 #include <sys/param.h>
2584 #include <sys/m88kbcs.h>
2587 __enable_execute_stack (void)
2590 static unsigned long lowest
= USRSTACK
;
2591 unsigned long current
= (unsigned long) &save_errno
& -NBPC
;
2593 /* Ignore errno being set. memctl sets errno to EINVAL whenever the
2594 address is seen as 'negative'. That is the case with the stack. */
2597 if (lowest
> current
)
2599 unsigned len
=lowest
-current
;
2600 memctl(current
,len
,MCT_TEXT
);
2604 memctl(current
,NBPC
,MCT_TEXT
);
2608 #endif /* __sysV88__ */
2612 #include <sys/signal.h>
2615 /* Motorola forgot to put memctl.o in the libp version of libc881.a,
2616 so define it here, because we need it in __clear_insn_cache below */
2617 /* On older versions of this OS, no memctl or MCT_TEXT are defined;
2618 hence we enable this stuff only if MCT_TEXT is #define'd. */
2633 /* Clear instruction cache so we can call trampolines on stack.
2634 This is called from FINALIZE_TRAMPOLINE in mot3300.h. */
2637 __clear_insn_cache (void)
2642 /* Preserve errno, because users would be surprised to have
2643 errno changing without explicitly calling any system-call. */
2646 /* Keep it simple : memctl (MCT_TEXT) always fully clears the insn cache.
2647 No need to use an address derived from _start or %sp, as 0 works also. */
2648 memctl(0, 4096, MCT_TEXT
);
2653 #endif /* __sysV68__ */
2657 #undef NULL /* Avoid errors if stdio.h and our stddef.h mismatch. */
2659 #include <sys/mman.h>
2660 #include <sys/types.h>
2661 #include <sys/param.h>
2662 #include <sys/vmmac.h>
2664 /* Modified from the convex -code above.
2665 mremap promises to clear the i-cache. */
2668 __enable_execute_stack (void)
2671 if (mprotect (((unsigned int)&fp
/PAGSIZ
)*PAGSIZ
, PAGSIZ
,
2672 PROT_READ
|PROT_WRITE
|PROT_EXEC
))
2674 perror ("mprotect in __enable_execute_stack");
2679 #endif /* __pyr__ */
2681 #if defined (sony_news) && defined (SYSTYPE_BSD)
2684 #include <sys/types.h>
2685 #include <sys/param.h>
2686 #include <syscall.h>
2687 #include <machine/sysnews.h>
2689 /* cacheflush function for NEWS-OS 4.2.
2690 This function is called from trampoline-initialize code
2691 defined in config/mips/mips.h. */
2694 cacheflush (char *beg
, int size
, int flag
)
2696 if (syscall (SYS_sysnews
, NEWS_CACHEFLUSH
, beg
, size
, FLUSH_BCACHE
))
2698 perror ("cache_flush");
2704 #endif /* sony_news */
2705 #endif /* L_trampoline */
2710 #include "gbl-ctors.h"
2711 /* Some systems use __main in a way incompatible with its use in gcc, in these
2712 cases use the macros NAME__MAIN to give a quoted symbol and SYMBOL__MAIN to
2713 give the same symbol without quotes for an alternative entry point. You
2714 must define both, or neither. */
2716 #define NAME__MAIN "__main"
2717 #define SYMBOL__MAIN __main
2720 #ifdef INIT_SECTION_ASM_OP
2721 #undef HAS_INIT_SECTION
2722 #define HAS_INIT_SECTION
2725 #if !defined (HAS_INIT_SECTION) || !defined (OBJECT_FORMAT_ELF)
2727 /* Some ELF crosses use crtstuff.c to provide __CTOR_LIST__, but use this
2728 code to run constructors. In that case, we need to handle EH here, too. */
2730 #ifdef EH_FRAME_SECTION
2731 #include "unwind-dw2-fde.h"
2732 extern unsigned char __EH_FRAME_BEGIN__
[];
2735 /* Run all the global destructors on exit from the program. */
2738 __do_global_dtors (void)
2740 #ifdef DO_GLOBAL_DTORS_BODY
2741 DO_GLOBAL_DTORS_BODY
;
2743 static func_ptr
*p
= __DTOR_LIST__
+ 1;
2750 #if defined (EH_FRAME_SECTION) && !defined (HAS_INIT_SECTION)
2752 static int completed
= 0;
2756 __deregister_frame_info (__EH_FRAME_BEGIN__
);
2763 #ifndef HAS_INIT_SECTION
2764 /* Run all the global constructors on entry to the program. */
2767 __do_global_ctors (void)
2769 #ifdef EH_FRAME_SECTION
2771 static struct object object
;
2772 __register_frame_info (__EH_FRAME_BEGIN__
, &object
);
2775 DO_GLOBAL_CTORS_BODY
;
2776 atexit (__do_global_dtors
);
2778 #endif /* no HAS_INIT_SECTION */
2780 #if !defined (HAS_INIT_SECTION) || defined (INVOKE__main)
2781 /* Subroutine called automatically by `main'.
2782 Compiling a global function named `main'
2783 produces an automatic call to this function at the beginning.
2785 For many systems, this routine calls __do_global_ctors.
2786 For systems which support a .init section we use the .init section
2787 to run __do_global_ctors, so we need not do anything here. */
2792 /* Support recursive calls to `main': run initializers just once. */
2793 static int initialized
;
2797 __do_global_ctors ();
2800 #endif /* no HAS_INIT_SECTION or INVOKE__main */
2802 #endif /* L__main */
2803 #endif /* __CYGWIN__ */
2807 #include "gbl-ctors.h"
2809 /* Provide default definitions for the lists of constructors and
2810 destructors, so that we don't get linker errors. These symbols are
2811 intentionally bss symbols, so that gld and/or collect will provide
2812 the right values. */
2814 /* We declare the lists here with two elements each,
2815 so that they are valid empty lists if no other definition is loaded.
2817 If we are using the old "set" extensions to have the gnu linker
2818 collect ctors and dtors, then we __CTOR_LIST__ and __DTOR_LIST__
2819 must be in the bss/common section.
2821 Long term no port should use those extensions. But many still do. */
2822 #if !defined(INIT_SECTION_ASM_OP) && !defined(CTOR_LISTS_DEFINED_EXTERNALLY)
2823 #if defined (ASM_OUTPUT_CONSTRUCTOR) || defined (USE_COLLECT2)
2824 func_ptr __CTOR_LIST__
[2] = {0, 0};
2825 func_ptr __DTOR_LIST__
[2] = {0, 0};
2827 func_ptr __CTOR_LIST__
[2];
2828 func_ptr __DTOR_LIST__
[2];
2830 #endif /* no INIT_SECTION_ASM_OP and not CTOR_LISTS_DEFINED_EXTERNALLY */
2831 #endif /* L_ctors */
2835 #include "gbl-ctors.h"
2843 static func_ptr
*atexit_chain
= 0;
2844 static long atexit_chain_length
= 0;
2845 static volatile long last_atexit_chain_slot
= -1;
2848 atexit (func_ptr func
)
2850 if (++last_atexit_chain_slot
== atexit_chain_length
)
2852 atexit_chain_length
+= 32;
2854 atexit_chain
= (func_ptr
*) realloc (atexit_chain
, atexit_chain_length
2855 * sizeof (func_ptr
));
2857 atexit_chain
= (func_ptr
*) malloc (atexit_chain_length
2858 * sizeof (func_ptr
));
2861 atexit_chain_length
= 0;
2862 last_atexit_chain_slot
= -1;
2867 atexit_chain
[last_atexit_chain_slot
] = func
;
2871 extern void _cleanup (void);
2872 extern void _exit (int) __attribute__ ((__noreturn__
));
2879 for ( ; last_atexit_chain_slot
-- >= 0; )
2881 (*atexit_chain
[last_atexit_chain_slot
+ 1]) ();
2882 atexit_chain
[last_atexit_chain_slot
+ 1] = 0;
2884 free (atexit_chain
);
2897 /* Simple; we just need a wrapper for ON_EXIT. */
2899 atexit (func_ptr func
)
2901 return ON_EXIT (func
);
2904 #endif /* ON_EXIT */
2905 #endif /* NEED_ATEXIT */