Searched refs:MAX_VAR_PARTS (Results 1 - 2 of 2) sorted by relevance

/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/gcc/
H A Dvar-tracking.c232 #define MAX_VAR_PARTS 16 macro
247 variable_part var_part[MAX_VAR_PARTS];
1026 /* We track only variables whose size is <= MAX_VAR_PARTS bytes
1027 thus there are at most MAX_VAR_PARTS different offsets. */
1028 gcc_assert (k <= MAX_VAR_PARTS);
1451 && INTVAL (MEM_SIZE (decl_rtl)) > MAX_VAR_PARTS)
1467 return (-MAX_VAR_PARTS < offset) && (offset < MAX_VAR_PARTS);
1968 /* We track only variables whose size is <= MAX_VAR_PARTS bytes
1969 thus there are at most MAX_VAR_PARTS differen
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dvar-tracking.c316 #define MAX_VAR_PARTS 16 macro
371 /* Alloc pool for struct variable_def with MAX_VAR_PARTS entries. */
2216 /* We track only variables whose size is <= MAX_VAR_PARTS bytes
2217 thus there are at most MAX_VAR_PARTS different offsets. */
2218 gcc_assert (dv_onepart_p (dst->dv) ? k == 1 : k <= MAX_VAR_PARTS);
4637 && INTVAL (MEM_SIZE (decl_rtl)) > MAX_VAR_PARTS)
4731 if (offset < 0 || offset >= MAX_VAR_PARTS)
6631 /* We track only variables whose size is <= MAX_VAR_PARTS bytes
6632 thus there are at most MAX_VAR_PARTS different offsets. */
6633 gcc_assert (var->n_var_parts < MAX_VAR_PARTS
[all...]

Completed in 125 milliseconds