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

/freebsd-9.3-release/contrib/gcc/
H A Dtree-ssa-structalias.c3660 /* Sort a fieldstack according to the field offset and sizes. */
3662 sort_fieldstack (VEC(fieldoff_s,heap) *fieldstack)
3664 qsort (VEC_address (fieldoff_s, fieldstack),
3665 VEC_length (fieldoff_s, fieldstack),
3671 of TYPE onto fieldstack, recording their offsets along the way.
3679 push_fields_onto_fieldstack (tree type, VEC(fieldoff_s,heap) **fieldstack, argument
3689 real_part = VEC_safe_push (fieldoff_s, heap, *fieldstack, NULL);
3695 img_part = VEC_safe_push (fieldoff_s, heap, *fieldstack, NULL);
3736 (TREE_TYPE (type), fieldstack,
3747 pair = VEC_safe_push (fieldoff_s, heap, *fieldstack, NUL
[all...]
H A Dtree-ssa-alias.c2998 VEC(fieldoff_s,heap) *fieldstack = NULL;
3007 push_fields_onto_fieldstack (TREE_TYPE (var), &fieldstack, 0, NULL);
3008 if (VEC_length (fieldoff_s, fieldstack) != 0)
3028 for (i = 0; VEC_iterate (fieldoff_s, fieldstack, i, fo); i++)
3067 VEC_free (fieldoff_s, heap, fieldstack);
3074 sort_fieldstack (fieldstack);
3076 for (i = VEC_length (fieldoff_s, fieldstack);
3077 VEC_iterate (fieldoff_s, fieldstack, --i, fo);)
3128 VEC_free (fieldoff_s, heap, fieldstack);

Completed in 79 milliseconds