Searched refs:const_size (Results 1 - 18 of 18) sorted by relevance

/netbsd-current/external/gpl3/gcc/dist/gcc/
H A Dtree-ssa-dse.cc347 HOST_WIDE_INT const_size; local
351 BITS_PER_UNIT)).is_constant (&const_size))
352 && (const_size / BITS_PER_UNIT <= param_dse_max_object_size)
353 && const_size > 1)
356 bitmap_set_range (live_bytes, 0, const_size / BITS_PER_UNIT);
381 HOST_WIDE_INT const_size; local
383 if (ref->size.is_constant (&const_size))
385 int last_orig = (const_size / BITS_PER_UNIT) - 1;
H A Dtree-dfa.cc749 HOST_WIDE_INT const_offset, const_size; local
754 || !size.is_constant (&const_size)
757 || maybe_ne (max_size, const_size))
761 *psize = const_size;
H A Dcalls.cc2096 HOST_WIDE_INT const_size = 0;
2117 const_size = int_size_in_bytes (type);
2118 gcc_assert (const_size >= 0);
2119 nregs = (const_size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
2120 size = const_size;
2179 gcc_checking_assert (known_eq (size, const_size));
2185 && const_size != 0
2187 (XEXP (args[i].value, 0), const_size)))
2190 if (const_size % UNITS_PER_WORD == 0
2200 unsigned int bitsize = const_size * BITS_PER_UNI
2095 HOST_WIDE_INT const_size = 0; local
[all...]
H A Ddse.cc1399 HOST_WIDE_INT const_size;
1414 || (MEM_SIZE (mem).is_constant (&const_size)
1415 && const_size > MAX_OFFSET)
1904 /* The store is a memset (addr, const_val, const_size). */
1397 HOST_WIDE_INT const_size; local
H A Ddwarf2cfi.cc498 HOST_WIDE_INT const_size = size.to_constant ();
504 gcc_assert (const_size >= 0);
507 cfi->dw_cfi_oprnd1.dw_cfi_offset = const_size;
495 HOST_WIDE_INT const_size = size.to_constant (); local
H A Demit-rtl.cc2146 poly_uint64 const_size;
2147 if (poly_int_tree_p (new_size, &const_size))
2150 attrs.size = const_size;
2138 poly_uint64 const_size; local
H A Dexpr.cc1850 poly_int64 const_size;
1851 if (poly_int_rtx_p (size, &const_size))
1855 set_mem_size (x, const_size);
1856 set_mem_size (y, const_size);
/netbsd-current/external/gpl3/gcc.old/dist/gcc/
H A Dtree-ssa-dse.c239 HOST_WIDE_INT const_size; local
241 && ref->size.is_constant (&const_size)
242 && (const_size / BITS_PER_UNIT
246 bitmap_set_range (live_bytes, 0, const_size / BITS_PER_UNIT);
271 HOST_WIDE_INT const_size; local
273 if (ref->size.is_constant (&const_size))
275 int last_orig = (const_size / BITS_PER_UNIT) - 1;
H A Dtree-dfa.c734 HOST_WIDE_INT const_offset, const_size; local
739 || !size.is_constant (&const_size)
742 || maybe_ne (max_size, const_size))
746 *psize = const_size;
H A Dcalls.c3090 HOST_WIDE_INT const_size = 0;
3111 const_size = int_size_in_bytes (type);
3112 gcc_assert (const_size >= 0);
3113 nregs = (const_size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
3114 size = const_size;
3173 gcc_checking_assert (known_eq (size, const_size));
3179 && const_size != 0
3181 (XEXP (args[i].value, 0), const_size)))
3184 if (const_size % UNITS_PER_WORD == 0
3194 unsigned int bitsize = const_size * BITS_PER_UNI
3089 HOST_WIDE_INT const_size = 0; local
[all...]
H A Ddwarf2cfi.c498 HOST_WIDE_INT const_size = size.to_constant ();
504 gcc_assert (const_size >= 0);
507 cfi->dw_cfi_oprnd1.dw_cfi_offset = const_size;
495 HOST_WIDE_INT const_size = size.to_constant (); local
H A Ddse.c1412 HOST_WIDE_INT const_size;
1427 || (MEM_SIZE (mem).is_constant (&const_size)
1428 && const_size > MAX_OFFSET)
1902 /* The store is a memset (addr, const_val, const_size). */
1410 HOST_WIDE_INT const_size; local
H A Demit-rtl.c2136 poly_uint64 const_size;
2137 if (poly_int_tree_p (new_size, &const_size))
2140 attrs.size = const_size;
2128 poly_uint64 const_size; local
H A Dexpr.c1646 poly_int64 const_size;
1647 if (poly_int_rtx_p (size, &const_size))
1651 set_mem_size (x, const_size);
1652 set_mem_size (y, const_size);
1642 poly_int64 const_size; local
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/aarch64/
H A Daarch64.c7036 HOST_WIDE_INT const_size, const_outgoing_args_size, const_fp_offset; local
7038 if (frame.frame_size.is_constant (&const_size)
7039 && const_size < max_push_offset
7040 && known_eq (frame.hard_fp_offset, const_size))
7046 frame.callee_adjust = const_size;
9306 HOST_WIDE_INT const_size; local
9527 && GET_MODE_SIZE (mode).is_constant (&const_size)
9528 && const_size >= 4)
/netbsd-current/external/gpl3/gcc/dist/gcc/config/aarch64/
H A Daarch64.cc8379 HOST_WIDE_INT const_size, const_outgoing_args_size, const_fp_offset;
8381 if (frame.frame_size.is_constant (&const_size)
8382 && const_size < max_push_offset
8383 && known_eq (frame.hard_fp_offset, const_size))
8389 frame.callee_adjust = const_size;
10666 HOST_WIDE_INT const_size;
10916 && GET_MODE_SIZE (mode).is_constant (&const_size)
10917 && const_size >= 4)
/netbsd-current/external/gpl3/gcc.old/dist/gcc/config/arm/
H A Darm.c9743 int const_size = thumb1_size_rtx_costs (XEXP (x, 1), CONST_INT, SET);
9750 return COSTS_N_INSNS (1) + const_size;
9731 int const_size = thumb1_size_rtx_costs (XEXP (x, 1), CONST_INT, SET); local
/netbsd-current/external/gpl3/gcc/dist/gcc/config/arm/
H A Darm.cc9891 int const_size = thumb1_size_rtx_costs (XEXP (x, 1), CONST_INT, SET);
9898 return COSTS_N_INSNS (1) + const_size;

Completed in 739 milliseconds