Home
last modified time | relevance | path

Searched refs:pred_code (Results 1 – 8 of 8) sorted by relevance

/dragonfly/contrib/gcc-8.0/gcc/
HDgimple.c492 gimple_build_cond (enum tree_code pred_code, tree lhs, tree rhs, in gimple_build_cond() argument
497 gcc_assert (TREE_CODE_CLASS (pred_code) == tcc_comparison); in gimple_build_cond()
498 p = as_a <gcond *> (gimple_build_with_ops (GIMPLE_COND, pred_code, 4)); in gimple_build_cond()
HDomp-low.c4741 enum tree_code pred_code = TREE_CODE (predicate); in lower_lastprivate_clauses() local
4745 if (TREE_CODE_CLASS (pred_code) == tcc_comparison) in lower_lastprivate_clauses()
4757 pred_code = NE_EXPR; in lower_lastprivate_clauses()
4761 c = build2 (pred_code, boolean_type_node, arm1, arm2); in lower_lastprivate_clauses()
4774 stmt = gimple_build_cond (pred_code, arm1, arm2, label_true, label); in lower_lastprivate_clauses()
HDomp-expand.c462 enum tree_code pred_code; in gimple_build_cond_empty() local
465 gimple_cond_get_ops_from_tree (cond, &pred_code, &lhs, &rhs); in gimple_build_cond_empty()
466 return gimple_build_cond (pred_code, lhs, rhs, NULL_TREE, NULL_TREE); in gimple_build_cond_empty()
HDgimplify.c3963 enum tree_code pred_code; in gimplify_cond_expr() local
4104 gimple_cond_get_ops_from_tree (COND_EXPR_COND (expr), &pred_code, &arm1, in gimplify_cond_expr()
4106 cond_stmt = gimple_build_cond (pred_code, arm1, arm2, label_true, in gimplify_cond_expr()
/dragonfly/contrib/gcc-4.7/gcc/
HDgimple.c507 gimple_build_cond (enum tree_code pred_code, tree lhs, tree rhs, in gimple_build_cond() argument
512 gcc_assert (TREE_CODE_CLASS (pred_code) == tcc_comparison); in gimple_build_cond()
513 p = gimple_build_with_ops (GIMPLE_COND, pred_code, 4); in gimple_build_cond()
HDgimplify.c3036 enum tree_code pred_code; in gimplify_cond_expr() local
3181 gimple_cond_get_ops_from_tree (COND_EXPR_COND (expr), &pred_code, &arm1, in gimplify_cond_expr()
3184 gimple_cond = gimple_build_cond (pred_code, arm1, arm2, label_true, in gimplify_cond_expr()
HDomp-low.c2937 enum tree_code pred_code; in gimple_build_cond_empty() local
2940 gimple_cond_get_ops_from_tree (cond, &pred_code, &lhs, &rhs); in gimple_build_cond_empty()
2941 return gimple_build_cond (pred_code, lhs, rhs, NULL_TREE, NULL_TREE); in gimple_build_cond_empty()
/dragonfly/contrib/gcc-4.7/gcc/doc/
HDgimple.texi1319 @deftypefn {GIMPLE function} gimple gimple_build_cond (enum tree_code pred_code, tree lhs, tree rhs…