Lines Matching refs:rest
63 comb->rest = NULL_TREE;
119 if (comb->rest)
127 comb->elts[comb->n].val = comb->rest;
128 comb->rest = NULL_TREE;
132 comb->rest = fold_build2 (MULT_EXPR, type, comb->rest,
163 if (comb->rest)
167 comb->elts[comb->n].val = comb->rest;
168 comb->rest = NULL_TREE;
192 if (comb->rest)
193 comb->rest = fold_build2 (PLUS_EXPR, type, comb->rest,
196 comb->rest = elt;
217 if (comb2->rest)
218 aff_combination_add_elt (comb1, comb2->rest, 1);
237 if (comb->rest && !POINTER_TYPE_P (type))
238 comb->rest = fold_convert (type, comb->rest);
254 if (comb->n < MAX_AFF_ELTS && comb->rest)
257 comb->elts[comb->n].val = comb->rest;
258 comb->rest = NULL_TREE;
533 gcc_assert (comb->n == MAX_AFF_ELTS || comb->rest == NULL_TREE);
550 if (comb->rest)
551 expr = add_elt_to_tree (expr, type, comb->rest, 1);
582 if (comb->rest)
583 comb->rest = unshare_expr (comb->rest);
594 if (comb->rest)
597 comb->elts[comb->n].val = comb->rest;
598 comb->rest = NULL_TREE;
627 if (c->rest)
629 aval = c->rest;
670 if (c2->rest)
671 aff_combination_add_product (c1, 1, c2->rest, r);
935 if (val->rest || div->rest)
985 if (val->rest)
987 fprintf (file, "\n rest = ");
988 print_generic_expr (file, val->rest, TDF_VOPS|TDF_MEMSYMS);