Searched refs:stmt_p (Results 1 - 8 of 8) sorted by relevance

/freebsd-11-stable/contrib/gcc/cp/
H A Dcp-gimplify.c112 genericize_try_block (tree *stmt_p) argument
114 tree body = TRY_STMTS (*stmt_p);
115 tree cleanup = TRY_HANDLERS (*stmt_p);
119 if (CLEANUP_P (*stmt_p))
124 *stmt_p = build2 (TRY_CATCH_EXPR, void_type_node, body, cleanup);
130 genericize_catch_block (tree *stmt_p) argument
132 tree type = HANDLER_TYPE (*stmt_p);
133 tree body = HANDLER_BODY (*stmt_p);
138 *stmt_p = build2 (CATCH_EXPR, void_type_node, type, body);
145 genericize_eh_spec_block (tree *stmt_p) argument
160 gimplify_if_stmt(tree *stmt_p) argument
296 gimplify_for_stmt(tree *stmt_p, tree *pre_p) argument
313 gimplify_while_stmt(tree *stmt_p) argument
326 gimplify_do_stmt(tree *stmt_p) argument
339 gimplify_switch_stmt(tree *stmt_p) argument
392 gimplify_expr_stmt(tree *stmt_p) argument
662 cp_genericize_r(tree *stmt_p, int *walk_subtrees, void *data) argument
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dtree-cfg.c1508 remove_useless_stmts_cond (tree *stmt_p, struct rus_data *data) argument
1517 remove_useless_stmts_1 (&COND_EXPR_THEN (*stmt_p), data);
1523 remove_useless_stmts_1 (&COND_EXPR_ELSE (*stmt_p), data);
1528 then_clause = COND_EXPR_THEN (*stmt_p);
1529 else_clause = COND_EXPR_ELSE (*stmt_p);
1530 cond = fold (COND_EXPR_COND (*stmt_p));
1535 *stmt_p = build_empty_stmt ();
1545 *stmt_p = then_clause;
1552 *stmt_p = else_clause;
1568 *stmt_p
1609 remove_useless_stmts_tf(tree *stmt_p, struct rus_data *data) argument
1660 remove_useless_stmts_tc(tree *stmt_p, struct rus_data *data) argument
1735 remove_useless_stmts_bind(tree *stmt_p, struct rus_data *data) argument
1763 remove_useless_stmts_goto(tree *stmt_p, struct rus_data *data) argument
1777 remove_useless_stmts_label(tree *stmt_p, struct rus_data *data) argument
[all...]
H A Domp-low.c1152 scan_omp_parallel (tree *stmt_p, omp_context *outer_ctx) argument
1160 && empty_body_p (OMP_PARALLEL_BODY (*stmt_p))
1161 && find_omp_clause (OMP_CLAUSES (*stmt_p), OMP_CLAUSE_COPYIN) == NULL)
1163 *stmt_p = build_empty_stmt ();
1167 ctx = new_omp_context (*stmt_p, outer_ctx);
1177 OMP_PARALLEL_FN (*stmt_p) = ctx->cb.dst_fn;
1179 scan_sharing_clauses (OMP_PARALLEL_CLAUSES (*stmt_p), ctx);
1180 scan_omp (&OMP_PARALLEL_BODY (*stmt_p), ctx);
1195 scan_omp_for (tree *stmt_p, omp_context *outer_ctx) argument
1200 stmt = *stmt_p;
1215 scan_omp_sections(tree *stmt_p, omp_context *outer_ctx) argument
1229 scan_omp_single(tree *stmt_p, omp_context *outer_ctx) argument
1410 scan_omp(tree *stmt_p, omp_context *ctx) argument
2309 maybe_catch_exception(tree *stmt_p) argument
3591 lower_omp_sections(tree *stmt_p, omp_context *ctx) argument
3787 lower_omp_single(tree *stmt_p, omp_context *ctx) argument
3829 lower_omp_master(tree *stmt_p, omp_context *ctx) argument
3869 lower_omp_ordered(tree *stmt_p, omp_context *ctx) argument
3914 lower_omp_critical(tree *stmt_p, omp_context *ctx) argument
4048 lower_omp_for(tree *stmt_p, omp_context *ctx) argument
4152 lower_omp_parallel(tree *stmt_p, omp_context *ctx) argument
4403 lower_omp(tree *stmt_p, omp_context *ctx) argument
4471 diagnose_sb_0(tree *stmt_p, tree branch_ctx, tree label_ctx) argument
[all...]
H A Dtree-ssa-propagate.c581 set_rhs (tree *stmt_p, tree expr) argument
583 tree stmt = *stmt_p, op;
656 *stmt_p = TREE_SIDE_EFFECTS (expr) ? expr : build_empty_stmt ();
657 (*stmt_p)->common.ann = (tree_ann_t) ann;
667 SSA_NAME_DEF_STMT (var) = *stmt_p;
H A Dtree-dfa.c106 tree *stmt_p = bsi_stmt_ptr (si); local
107 walk_tree (stmt_p, find_vars_r, NULL, NULL);
848 find_new_referenced_vars (tree *stmt_p) argument
850 walk_tree (stmt_p, find_new_referenced_vars_1, NULL, NULL);
H A Dgimplify.c778 annotate_all_with_locus (tree *stmt_p, location_t locus) argument
782 if (!*stmt_p)
785 for (i = tsi_start (*stmt_p); !tsi_end_p (i); tsi_next (&i))
1204 gimplify_decl_expr (tree *stmt_p)
1206 tree stmt = *stmt_p;
1209 *stmt_p = NULL_TREE;
1217 gimplify_type_sizes (TREE_TYPE (decl), stmt_p);
1230 gimplify_one_sizepos (&DECL_SIZE (decl), stmt_p); local
1231 gimplify_one_sizepos (&DECL_SIZE_UNIT (decl), stmt_p);
1251 gimplify_and_add (t, stmt_p);
1203 gimplify_decl_expr(tree *stmt_p) argument
1229 gimplify_one_sizepos (&DECL_SIZE (decl), stmt_p); local
4299 gimplify_stmt(tree *stmt_p) argument
4307 gimplify_to_stmt_list(tree *stmt_p) argument
6165 gimplify_one_sizepos(tree *expr_p, tree *stmt_p) argument
[all...]
H A Dtree-ssa-ccp.c2360 fold_stmt (tree *stmt_p) argument
2367 stmt = *stmt_p;
2375 if (walk_tree (stmt_p, fold_stmt_r, &fold_stmt_r_data, NULL))
2377 *stmt_p
2443 changed |= set_rhs (stmt_p, result);
H A Dtree-nested.c687 walk_body (walk_tree_fn callback, struct nesting_info *info, tree *stmt_p)
696 walk_stmts (&wi, stmt_p);
686 walk_body(walk_tree_fn callback, struct nesting_info *info, tree *stmt_p) argument

Completed in 104 milliseconds