Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/gcc/
Dgimple-low.c69 tree *body_p = &DECL_SAVED_TREE (current_function_decl); in lower_function_body() local
70 tree bind = *body_p; in lower_function_body()
82 *body_p = alloc_stmt_list (); in lower_function_body()
83 i = tsi_start (*body_p); in lower_function_body()
87 i = tsi_last (*body_p); in lower_function_body()
92 if (block_may_fallthru (*body_p) in lower_function_body()
Domp-low.c4003 lower_omp_for_lastprivate (struct omp_for_data *fd, tree *body_p, in lower_omp_for_lastprivate() argument
4040 gimplify_and_add (t, body_p); in lower_omp_for_lastprivate()
4050 tree t, stmt, ilist, dlist, new_stmt, *body_p, *rhs_p; in lower_omp_for() local
4067 body_p = &BIND_EXPR_BODY (new_stmt); in lower_omp_for()
4072 append_to_statement_list (OMP_FOR_PRE_BODY (stmt), body_p); in lower_omp_for()
4073 lower_rec_input_clauses (OMP_FOR_CLAUSES (stmt), body_p, &dlist, ctx); in lower_omp_for()
4084 *rhs_p = get_formal_tmp_var (*rhs_p, body_p); in lower_omp_for()
4088 *rhs_p = get_formal_tmp_var (*rhs_p, body_p); in lower_omp_for()
4092 *rhs_p = get_formal_tmp_var (*rhs_p, body_p); in lower_omp_for()
4097 lower_omp_for_lastprivate (&fd, body_p, &dlist, ctx); in lower_omp_for()
[all …]
Dgimplify.c888 unshare_body (tree *body_p, tree fndecl) in unshare_body() argument
892 walk_tree (body_p, copy_if_shared_r, NULL, NULL); in unshare_body()
893 if (body_p == &DECL_SAVED_TREE (fndecl)) in unshare_body()
901 unvisit_body (tree *body_p, tree fndecl) in unvisit_body() argument
905 walk_tree (body_p, unmark_visited_r, NULL, NULL); in unvisit_body()
906 if (body_p == &DECL_SAVED_TREE (fndecl)) in unvisit_body()
6292 gimplify_body (tree *body_p, tree fndecl, bool do_parms) in gimplify_body() argument
6306 unshare_body (body_p, fndecl); in gimplify_body()
6307 unvisit_body (body_p, fndecl); in gimplify_body()
6317 gimplify_stmt (body_p); in gimplify_body()
[all …]
DChangeLog1897 to dlist rather than body_p and to body_p append an initializer.