Searched refs:HOST_BITS_PER_WIDE_INT (Results 1 - 25 of 45) sorted by relevance

12

/freebsd-10.0-release/contrib/gcc/
H A Dhwint.h54 # define HOST_BITS_PER_WIDE_INT HOST_BITS_PER_LONG macro
58 # define HOST_BITS_PER_WIDE_INT HOST_BITS_PER_LONGLONG macro
62 # define HOST_BITS_PER_WIDE_INT HOST_BITS_PER___INT64 macro
72 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
77 # if HOST_BITS_PER_WIDE_INT == 64
88 #endif /* HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG */
98 #if HOST_BITS_PER_WIDE_INT >= 64 \
101 # define HOST_BITS_PER_WIDEST_INT HOST_BITS_PER_WIDE_INT
H A Dsreal.h25 #if (HOST_BITS_PER_WIDE_INT / 2) % 2 == 1
26 #define SREAL_PART_BITS (HOST_BITS_PER_WIDE_INT / 2 - 1)
28 #define SREAL_PART_BITS (HOST_BITS_PER_WIDE_INT / 2)
32 #define MAX_HOST_WIDE_INT (((uhwi) 1 << (HOST_BITS_PER_WIDE_INT - 1)) - 1)
H A Dtoplev.h162 # if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
165 # elif HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONGLONG
176 return x ? HOST_BITS_PER_WIDE_INT - 1 - (int) CLZ_HWI (x) : -1;
H A Ddouble-int.c35 if (prec > HOST_BITS_PER_WIDE_INT)
37 prec -= HOST_BITS_PER_WIDE_INT;
90 if (prec <= HOST_BITS_PER_WIDE_INT)
94 prec -= HOST_BITS_PER_WIDE_INT;
H A Dsimplify-rtx.c92 if (width <= HOST_BITS_PER_WIDE_INT
95 else if (width <= 2 * HOST_BITS_PER_WIDE_INT
100 width -= HOST_BITS_PER_WIDE_INT;
105 if (width < HOST_BITS_PER_WIDE_INT)
677 than HOST_BITS_PER_WIDE_INT. */
678 if (GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT
775 <= HOST_BITS_PER_WIDE_INT)
980 else if (GET_MODE_BITSIZE (op_mode) >= HOST_BITS_PER_WIDE_INT * 2)
991 && width <= HOST_BITS_PER_WIDE_INT && width > 0)
1061 if (GET_MODE_BITSIZE (op_mode) == HOST_BITS_PER_WIDE_INT)
[all...]
H A Dcombine.c335 largest integer mode that can fit in HOST_BITS_PER_WIDE_INT. */
744 nonzero_bits_mode = mode_for_size (HOST_BITS_PER_WIDE_INT, MODE_INT, 0);
1051 HOST_BITS_PER_WIDE_INT and is being set, record what bits are known zero.
1073 && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT)
2047 if (width < HOST_BITS_PER_WIDE_INT)
2052 else if (width < HOST_BITS_PER_WIDE_INT * 2)
2055 << (width - HOST_BITS_PER_WIDE_INT)) - 1;
2067 if (offset >= HOST_BITS_PER_WIDE_INT)
2069 mhi = mlo << (offset - HOST_BITS_PER_WIDE_INT);
2071 ihi = ilo << (offset - HOST_BITS_PER_WIDE_INT);
[all...]
H A Dstor-layout.c1946 2 * HOST_BITS_PER_WIDE_INT);
2034 = build_int_cst_wide (type, precision - HOST_BITS_PER_WIDE_INT >= 0
2037 precision - HOST_BITS_PER_WIDE_INT > 0
2039 >> (HOST_BITS_PER_WIDE_INT
2040 - (precision - HOST_BITS_PER_WIDE_INT)))
2047 (precision - HOST_BITS_PER_WIDE_INT > 0
2051 << (precision - HOST_BITS_PER_WIDE_INT - 1 > 0
2052 ? precision - HOST_BITS_PER_WIDE_INT - 1
2056 (precision - HOST_BITS_PER_WIDE_INT > 0
2059 (precision - HOST_BITS_PER_WIDE_INT
[all...]
H A Dreal.h74 (REAL_VALUE_TYPE_SIZE/HOST_BITS_PER_WIDE_INT \
75 + (REAL_VALUE_TYPE_SIZE%HOST_BITS_PER_WIDE_INT ? 1 : 0)) /* round up */
H A Dtree-vect-generic.c47 int n = HOST_BITS_PER_WIDE_INT / width;
53 if (width == HOST_BITS_PER_WIDE_INT)
61 if (TYPE_PRECISION (type) < HOST_BITS_PER_WIDE_INT)
63 else if (TYPE_PRECISION (type) == HOST_BITS_PER_WIDE_INT)
65 else if (TYPE_PRECISION (type) == 2 * HOST_BITS_PER_WIDE_INT)
H A Dexpmed.c887 if (bitsize < HOST_BITS_PER_WIDE_INT)
892 else if ((bitsize < HOST_BITS_PER_WIDE_INT
894 || (bitsize == HOST_BITS_PER_WIDE_INT && v == -1))
1839 else if (bitpos < HOST_BITS_PER_WIDE_INT)
1844 if (bitpos + bitsize < HOST_BITS_PER_WIDE_INT)
1846 >> (HOST_BITS_PER_WIDE_INT - bitpos - bitsize));
1848 if (bitpos <= HOST_BITS_PER_WIDE_INT)
1851 maskhigh = (HOST_WIDE_INT) -1 << (bitpos - HOST_BITS_PER_WIDE_INT);
1855 else if (bitpos + bitsize > HOST_BITS_PER_WIDE_INT)
1857 >> (2 * HOST_BITS_PER_WIDE_INT
[all...]
H A Dtree.c733 if (bits >= HOST_BITS_PER_WIDE_INT)
757 if (bits <= HOST_BITS_PER_WIDE_INT)
761 bits -= HOST_BITS_PER_WIDE_INT;
927 else if (bits <= HOST_BITS_PER_WIDE_INT)
929 low = all_ones >> (HOST_BITS_PER_WIDE_INT - bits);
934 bits -= HOST_BITS_PER_WIDE_INT;
936 high = all_ones >> (HOST_BITS_PER_WIDE_INT - bits);
951 if (TYPE_PRECISION (TREE_TYPE (x)) > HOST_BITS_PER_WIDE_INT)
1323 if (prec >= HOST_BITS_PER_WIDE_INT)
1328 shift_amount = prec - HOST_BITS_PER_WIDE_INT;
4572 2 * HOST_BITS_PER_WIDE_INT, &l, &h, 0); local
[all...]
H A Ddbxout.c703 if (width == HOST_BITS_PER_WIDE_INT * 2)
705 else if (width > HOST_BITS_PER_WIDE_INT)
706 high &= (((HOST_WIDE_INT) 1 << (width - HOST_BITS_PER_WIDE_INT)) - 1);
707 else if (width == HOST_BITS_PER_WIDE_INT)
729 const int n_digits = HOST_BITS_PER_WIDE_INT / 3;
743 if (HOST_BITS_PER_WIDE_INT % 3 != 0)
745 const int n_leftover_bits = HOST_BITS_PER_WIDE_INT % 3;
2264 || TYPE_PRECISION (type) > HOST_BITS_PER_WIDE_INT
2265 || (TYPE_PRECISION (type) == HOST_BITS_PER_WIDE_INT
H A Drtlanal.c3441 if (mode_width > HOST_BITS_PER_WIDE_INT)
3456 && GET_MODE_BITSIZE (GET_MODE (x)) <= HOST_BITS_PER_WIDE_INT
3550 && mode_width <= HOST_BITS_PER_WIDE_INT)
3720 && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
3739 <= HOST_BITS_PER_WIDE_INT))
3779 && INTVAL (XEXP (x, 1)) < HOST_BITS_PER_WIDE_INT)
4018 if (bitwidth <= HOST_BITS_PER_WIDE_INT
4113 if (bitwidth > HOST_BITS_PER_WIDE_INT)
4143 && bitwidth <= HOST_BITS_PER_WIDE_INT)
4183 && (bitwidth > HOST_BITS_PER_WIDE_INT
[all...]
H A Dreal.c1288 i = (unsigned HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT - 1);
1303 if (REAL_EXP (r) > HOST_BITS_PER_WIDE_INT)
1306 if (HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG)
1310 gcc_assert (HOST_BITS_PER_WIDE_INT == 2 * HOST_BITS_PER_LONG);
1316 i >>= HOST_BITS_PER_WIDE_INT - REAL_EXP (r);
1347 high = (unsigned HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT - 1);
1371 if (exp > 2*HOST_BITS_PER_WIDE_INT)
1374 rshift_significand (&t, r, 2*HOST_BITS_PER_WIDE_INT - exp);
1375 if (HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG)
1382 gcc_assert (HOST_BITS_PER_WIDE_INT
[all...]
H A Dtoplev.c476 static char random_seed[HOST_BITS_PER_WIDE_INT / 4 + 3];
550 t = HOST_BITS_PER_WIDE_INT - 1 - (int) CLZ_HWI (x);
552 if (HOST_BITS_PER_WIDE_INT > 64)
555 if (HOST_BITS_PER_WIDE_INT > 32)
H A Dfold-const.c160 HOST_BITS_PER_WIDE_INT / 2 bits stored in each word, as a positive
164 ((x) & (((unsigned HOST_WIDE_INT) 1 << (HOST_BITS_PER_WIDE_INT / 2)) - 1))
166 ((unsigned HOST_WIDE_INT) (x) >> HOST_BITS_PER_WIDE_INT / 2)
167 #define BASE ((unsigned HOST_WIDE_INT) 1 << HOST_BITS_PER_WIDE_INT / 2)
236 if (prec >= 2 * HOST_BITS_PER_WIDE_INT)
238 else if (prec > HOST_BITS_PER_WIDE_INT)
239 high &= ~((HOST_WIDE_INT) (-1) << (prec - HOST_BITS_PER_WIDE_INT));
243 if (prec < HOST_BITS_PER_WIDE_INT)
249 else if (prec >= 2 * HOST_BITS_PER_WIDE_INT)
251 else if (prec > HOST_BITS_PER_WIDE_INT)
[all...]
H A Dvarasm.c4239 gcc_assert (HOST_BITS_PER_WIDE_INT >= BITS_PER_UNIT);
4460 if (shift < HOST_BITS_PER_WIDE_INT
4461 && shift + this_time > HOST_BITS_PER_WIDE_INT)
4463 this_time = shift + this_time - HOST_BITS_PER_WIDE_INT;
4464 shift = HOST_BITS_PER_WIDE_INT;
4468 if (shift < HOST_BITS_PER_WIDE_INT)
4472 gcc_assert (shift < 2 * HOST_BITS_PER_WIDE_INT);
4474 shift -= HOST_BITS_PER_WIDE_INT;
4478 1 <= this_time <= HOST_BITS_PER_WIDE_INT. */
4495 if (shift < HOST_BITS_PER_WIDE_INT
[all...]
H A Dc-common.c1696 #if HOST_BITS_PER_WIDE_INT >= 64
1782 #if HOST_BITS_PER_WIDE_INT >= 64
1816 #if HOST_BITS_PER_WIDE_INT >= 64
1869 #if HOST_BITS_PER_WIDE_INT >= 64
3175 #if HOST_BITS_PER_WIDE_INT >= 64
3189 #if HOST_BITS_PER_WIDE_INT >= 64
3198 = make_signed_type (HOST_BITS_PER_WIDE_INT * 2);
3203 = make_unsigned_type (HOST_BITS_PER_WIDE_INT * 2);
3806 char buf[2 + 2*HOST_BITS_PER_WIDE_INT/4 + 1];
6037 return ((HOST_WIDE_INT)uc) << (HOST_BITS_PER_WIDE_INT
[all...]
H A Ddojump.c251 && compare_tree_int (shift, HOST_BITS_PER_WIDE_INT) < 0
274 && TYPE_PRECISION (TREE_TYPE (exp)) <= HOST_BITS_PER_WIDE_INT
H A Dread-rtl.c1089 #if HOST_BITS_PER_WIDE_INT > HOST_BITS_PER_LONG && !defined(HAVE_ATOLL) && !defined(HAVE_ATOQ)
1670 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_INT
1673 #if HOST_BITS_PER_WIDE_INT == HOST_BITS_PER_LONG
H A Dbuiltins.c478 gcc_assert (j <= 2 * HOST_BITS_PER_WIDE_INT);
482 c[j / HOST_BITS_PER_WIDE_INT] |= ch << (j % HOST_BITS_PER_WIDE_INT);
497 || CHAR_TYPE_SIZE > HOST_BITS_PER_WIDE_INT)
501 if (CHAR_TYPE_SIZE < HOST_BITS_PER_WIDE_INT)
505 if (HOST_BITS_PER_CHAR < HOST_BITS_PER_WIDE_INT)
2328 #define POWI_MAX_MULTS (2*HOST_BITS_PER_WIDE_INT-2)
5346 if (bitpos < HOST_BITS_PER_WIDE_INT)
5353 hi = (HOST_WIDE_INT) 1 << (bitpos - HOST_BITS_PER_WIDE_INT);
7476 if (width > HOST_BITS_PER_WIDE_INT)
[all...]
H A Dexpr.c763 a CONST_INT into a mode whose size is twice HOST_BITS_PER_WIDE_INT and
769 && GET_MODE_BITSIZE (mode) == 2 * HOST_BITS_PER_WIDE_INT
775 && HOST_BITS_PER_WIDE_INT > GET_MODE_BITSIZE (oldmode))
789 wider than HOST_BITS_PER_WIDE_INT, we must be narrowing the operand. */
792 && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
3260 if (!CONSTANT_P (y) || GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
4715 const HOST_WIDE_INT max = ~((HOST_WIDE_INT)1 << (HOST_BITS_PER_WIDE_INT-1));
5476 else if (bitsize >= 0 && bitsize < HOST_BITS_PER_WIDE_INT)
6348 HOST_BITS_PER_WIDE_INT bits are zero, return BIGGEST_ALIGNMENT.
7411 <= HOST_BITS_PER_WIDE_INT))))
[all...]
H A Ddwarf2asm.c77 if (size * 8 < HOST_BITS_PER_WIDE_INT)
H A Doptabs.c2469 if (bitpos < HOST_BITS_PER_WIDE_INT)
2476 hi = (HOST_WIDE_INT) 1 << (bitpos - HOST_BITS_PER_WIDE_INT);
2977 if (bitpos < HOST_BITS_PER_WIDE_INT)
2984 hi = (HOST_WIDE_INT) 1 << (bitpos - HOST_BITS_PER_WIDE_INT);
3041 if (bitpos < HOST_BITS_PER_WIDE_INT)
3048 hi = (HOST_WIDE_INT) 1 << (bitpos - HOST_BITS_PER_WIDE_INT);
4785 if (unsignedp && GET_MODE_BITSIZE (GET_MODE (to)) <= HOST_BITS_PER_WIDE_INT)
/freebsd-10.0-release/contrib/gcc/config/rs6000/
H A Drs6000.c2077 #if HOST_BITS_PER_WIDE_INT == 64
2108 #if HOST_BITS_PER_WIDE_INT == 64
2551 #if HOST_BITS_PER_WIDE_INT >= 64
3831 #if HOST_BITS_PER_WIDE_INT >= 64
3883 #if HOST_BITS_PER_WIDE_INT >= 64
3980 && GET_MODE_BITSIZE (mode) <= HOST_BITS_PER_WIDE_INT)
9790 if (HOST_BITS_PER_WIDE_INT < 64)
9793 if ((low == 0 && (HOST_BITS_PER_WIDE_INT >= 64 || high == 0))
9794 || (low == ~0 && (HOST_BITS_PER_WIDE_INT >= 64 || high == ~0)))
9797 if (HOST_BITS_PER_WIDE_INT < 6
[all...]

Completed in 534 milliseconds

12