Home
last modified time | relevance | path

Searched refs:chrec1 (Results 1 – 4 of 4) sorted by relevance

/dragonfly/contrib/gcc-8.0/gcc/
HDtree-scalar-evolution.c1716 tree res, chrec1, chrec2, ctype; in interpret_rhs_expr() local
1759 chrec1 = analyze_scalar_evolution (loop, rhs1); in interpret_rhs_expr()
1761 chrec1 = chrec_convert (type, chrec1, at_stmt); in interpret_rhs_expr()
1763 chrec1 = instantiate_parameters (loop, chrec1); in interpret_rhs_expr()
1765 res = chrec_fold_plus (type, chrec1, chrec2); in interpret_rhs_expr()
1769 chrec1 = analyze_scalar_evolution_for_address_of (loop, base); in interpret_rhs_expr()
1770 chrec1 = chrec_convert (type, chrec1, at_stmt); in interpret_rhs_expr()
1771 res = chrec1; in interpret_rhs_expr()
1796 chrec1 = analyze_scalar_evolution (loop, rhs1); in interpret_rhs_expr()
1798 chrec1 = chrec_convert (type, chrec1, at_stmt); in interpret_rhs_expr()
[all …]
HDtree-chrec.c919 chrec_merge (tree chrec1, in chrec_merge() argument
922 if (chrec1 == chrec_dont_know in chrec_merge()
926 if (chrec1 == chrec_known in chrec_merge()
930 if (chrec1 == chrec_not_analyzed_yet) in chrec_merge()
933 return chrec1; in chrec_merge()
935 if (eq_evolutions_p (chrec1, chrec2)) in chrec_merge()
936 return chrec1; in chrec_merge()
1526 eq_evolutions_p (const_tree chrec0, const_tree chrec1) in eq_evolutions_p() argument
1529 || chrec1 == NULL_TREE in eq_evolutions_p()
1530 || TREE_CODE (chrec0) != TREE_CODE (chrec1)) in eq_evolutions_p()
[all …]
/dragonfly/contrib/gcc-4.7/gcc/
HDtree-chrec.c864 chrec_merge (tree chrec1, in chrec_merge() argument
867 if (chrec1 == chrec_dont_know in chrec_merge()
871 if (chrec1 == chrec_known in chrec_merge()
875 if (chrec1 == chrec_not_analyzed_yet) in chrec_merge()
878 return chrec1; in chrec_merge()
880 if (eq_evolutions_p (chrec1, chrec2)) in chrec_merge()
881 return chrec1; in chrec_merge()
1423 eq_evolutions_p (const_tree chrec0, const_tree chrec1) in eq_evolutions_p() argument
1426 || chrec1 == NULL_TREE in eq_evolutions_p()
1427 || TREE_CODE (chrec0) != TREE_CODE (chrec1)) in eq_evolutions_p()
[all …]
HDtree-scalar-evolution.c1634 tree res, chrec1, chrec2; in interpret_rhs_expr() local
1668 chrec1 = analyze_scalar_evolution (loop, rhs1); in interpret_rhs_expr()
1670 chrec1 = chrec_convert (type, chrec1, at_stmt); in interpret_rhs_expr()
1672 res = chrec_fold_plus (type, chrec1, chrec2); in interpret_rhs_expr()
1676 chrec1 = analyze_scalar_evolution (loop, rhs1); in interpret_rhs_expr()
1678 chrec1 = chrec_convert (type, chrec1, at_stmt); in interpret_rhs_expr()
1680 res = chrec_fold_plus (type, chrec1, chrec2); in interpret_rhs_expr()
1684 chrec1 = analyze_scalar_evolution (loop, rhs1); in interpret_rhs_expr()
1686 chrec1 = chrec_convert (type, chrec1, at_stmt); in interpret_rhs_expr()
1688 res = chrec_fold_minus (type, chrec1, chrec2); in interpret_rhs_expr()
[all …]