Home
last modified time | relevance | path

Searched refs:stmt_p (Results 1 – 9 of 9) sorted by relevance

/freebsd-12-stable/contrib/gcc/cp/
Dcp-gimplify.c112 genericize_try_block (tree *stmt_p) in genericize_try_block() argument
114 tree body = TRY_STMTS (*stmt_p); in genericize_try_block()
115 tree cleanup = TRY_HANDLERS (*stmt_p); in genericize_try_block()
119 if (CLEANUP_P (*stmt_p)) in genericize_try_block()
124 *stmt_p = build2 (TRY_CATCH_EXPR, void_type_node, body, cleanup); in genericize_try_block()
130 genericize_catch_block (tree *stmt_p) in genericize_catch_block() argument
132 tree type = HANDLER_TYPE (*stmt_p); in genericize_catch_block()
133 tree body = HANDLER_BODY (*stmt_p); in genericize_catch_block()
138 *stmt_p = build2 (CATCH_EXPR, void_type_node, type, body); in genericize_catch_block()
145 genericize_eh_spec_block (tree *stmt_p) in genericize_eh_spec_block() argument
[all …]
/freebsd-12-stable/contrib/gcc/
Dtree-cfg.c1508 remove_useless_stmts_cond (tree *stmt_p, struct rus_data *data) in remove_useless_stmts_cond() argument
1517 remove_useless_stmts_1 (&COND_EXPR_THEN (*stmt_p), data); in remove_useless_stmts_cond()
1523 remove_useless_stmts_1 (&COND_EXPR_ELSE (*stmt_p), data); in remove_useless_stmts_cond()
1528 then_clause = COND_EXPR_THEN (*stmt_p); in remove_useless_stmts_cond()
1529 else_clause = COND_EXPR_ELSE (*stmt_p); in remove_useless_stmts_cond()
1530 cond = fold (COND_EXPR_COND (*stmt_p)); in remove_useless_stmts_cond()
1535 *stmt_p = build_empty_stmt (); in remove_useless_stmts_cond()
1545 *stmt_p = then_clause; in remove_useless_stmts_cond()
1552 *stmt_p = else_clause; in remove_useless_stmts_cond()
1568 *stmt_p = then_stmt; in remove_useless_stmts_cond()
[all …]
Domp-low.c1152 scan_omp_parallel (tree *stmt_p, omp_context *outer_ctx) in scan_omp_parallel() argument
1160 && empty_body_p (OMP_PARALLEL_BODY (*stmt_p)) in scan_omp_parallel()
1161 && find_omp_clause (OMP_CLAUSES (*stmt_p), OMP_CLAUSE_COPYIN) == NULL) in scan_omp_parallel()
1163 *stmt_p = build_empty_stmt (); in scan_omp_parallel()
1167 ctx = new_omp_context (*stmt_p, outer_ctx); in scan_omp_parallel()
1177 OMP_PARALLEL_FN (*stmt_p) = ctx->cb.dst_fn; in scan_omp_parallel()
1179 scan_sharing_clauses (OMP_PARALLEL_CLAUSES (*stmt_p), ctx); in scan_omp_parallel()
1180 scan_omp (&OMP_PARALLEL_BODY (*stmt_p), ctx); in scan_omp_parallel()
1195 scan_omp_for (tree *stmt_p, omp_context *outer_ctx) in scan_omp_for() argument
1200 stmt = *stmt_p; in scan_omp_for()
[all …]
Dtree-ssa-propagate.c581 set_rhs (tree *stmt_p, tree expr) in set_rhs() argument
583 tree stmt = *stmt_p, op; in set_rhs()
656 *stmt_p = TREE_SIDE_EFFECTS (expr) ? expr : build_empty_stmt (); in set_rhs()
657 (*stmt_p)->common.ann = (tree_ann_t) ann; in set_rhs()
667 SSA_NAME_DEF_STMT (var) = *stmt_p; in set_rhs()
Dgimplify.c778 annotate_all_with_locus (tree *stmt_p, location_t locus) in annotate_all_with_locus() argument
782 if (!*stmt_p) in annotate_all_with_locus()
785 for (i = tsi_start (*stmt_p); !tsi_end_p (i); tsi_next (&i)) in annotate_all_with_locus()
1203 gimplify_decl_expr (tree *stmt_p) in gimplify_decl_expr() argument
1205 tree stmt = *stmt_p; in gimplify_decl_expr()
1208 *stmt_p = NULL_TREE; in gimplify_decl_expr()
1216 gimplify_type_sizes (TREE_TYPE (decl), stmt_p); in gimplify_decl_expr()
1229 gimplify_one_sizepos (&DECL_SIZE (decl), stmt_p); in gimplify_decl_expr()
1230 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), stmt_p); in gimplify_decl_expr()
1250 gimplify_and_add (t, stmt_p); in gimplify_decl_expr()
[all …]
Dtree-dfa.c106 tree *stmt_p = bsi_stmt_ptr (si); in find_referenced_vars() local
107 walk_tree (stmt_p, find_vars_r, NULL, NULL); in find_referenced_vars()
848 find_new_referenced_vars (tree *stmt_p) in find_new_referenced_vars() argument
850 walk_tree (stmt_p, find_new_referenced_vars_1, NULL, NULL); in find_new_referenced_vars()
Dtree-ssa-ccp.c2360 fold_stmt (tree *stmt_p) in fold_stmt() argument
2367 stmt = *stmt_p; in fold_stmt()
2375 if (walk_tree (stmt_p, fold_stmt_r, &fold_stmt_r_data, NULL)) in fold_stmt()
2377 *stmt_p in fold_stmt()
2443 changed |= set_rhs (stmt_p, result); in fold_stmt()
Dtree-nested.c686 walk_body (walk_tree_fn callback, struct nesting_info *info, tree *stmt_p) in walk_body() argument
695 walk_stmts (&wi, stmt_p); in walk_body()
DChangeLog.tree-ssa9706 stmt_p is the end of the bb.
15168 * tree-flow.h (struct tree_ref_common): Rename field stmt to stmt_p
15177 (ref_stmt): Return NULL_TREE if stmt_p is NULL.