Home | History | Annotate | Download | only in gcc

Lines Matching defs:chrec2

1628   tree res, chrec1, chrec2, ctype;
1672 chrec2 = analyze_scalar_evolution (loop, rhs2);
1674 chrec2 = chrec_convert (TREE_TYPE (rhs2), chrec2, at_stmt);
1676 chrec2 = instantiate_parameters (loop, chrec2);
1677 res = chrec_fold_plus (type, chrec1, chrec2);
1688 chrec2 = analyze_scalar_evolution (loop, offset);
1689 chrec2 = chrec_convert (TREE_TYPE (offset), chrec2, at_stmt);
1690 chrec2 = instantiate_parameters (loop, chrec2);
1691 res = chrec_fold_plus (type, res, chrec2);
1709 chrec2 = analyze_scalar_evolution (loop, rhs2);
1711 chrec2 = chrec_convert (TREE_TYPE (rhs2), chrec2, at_stmt);
1713 chrec2 = instantiate_parameters (loop, chrec2);
1714 res = chrec_fold_plus (type, chrec1, chrec2);
1719 chrec2 = analyze_scalar_evolution (loop, rhs2);
1730 chrec2 = chrec_convert (ctype, chrec2, at_stmt);
1732 chrec2 = instantiate_parameters (loop, chrec2);
1733 res = chrec_fold_plus (ctype, chrec1, chrec2);
1740 chrec2 = analyze_scalar_evolution (loop, rhs2);
1751 chrec2 = chrec_convert (ctype, chrec2, at_stmt);
1753 chrec2 = instantiate_parameters (loop, chrec2);
1754 res = chrec_fold_minus (ctype, chrec1, chrec2);
1791 chrec2 = analyze_scalar_evolution (loop, rhs2);
1802 chrec2 = chrec_convert (ctype, chrec2, at_stmt);
1804 chrec2 = instantiate_parameters (loop, chrec2);
1805 res = chrec_fold_multiply (ctype, chrec1, chrec2);
1815 chrec2 = analyze_scalar_evolution (loop, rhs2);
1818 chrec2 = instantiate_parameters (loop, chrec2);
1821 chrec2 = fold_build2 (LSHIFT_EXPR, uns, one, chrec2);
1822 res = chrec_fold_multiply (uns, chrec1, chrec2);