Home | History | Annotate | Download | only in gcc

Lines Matching defs:bind_body

8832   gimple_seq bind_body, bind_body_tail = NULL, dlist;
8839 bind_body = NULL;
8842 &bind_body, &dlist, ctx, NULL);
8845 gimple_seq_add_stmt (&bind_body, single_stmt);
8848 lower_omp_single_copy (single_stmt, &bind_body, ctx);
8850 lower_omp_single_simple (single_stmt, &bind_body);
8854 gimple_seq_add_seq (&bind_body, dlist);
8856 bind_body = maybe_catch_exception (bind_body);
8870 gimple_seq_add_seq (&bind_body, bind_body_tail);
8871 gimple_bind_set_body (bind, bind_body);
8890 gimple_seq bind_body, bind_body_tail = NULL, dlist;
8898 bind_body = NULL;
8914 &bind_body, &tred_dlist);
8918 gimple_seq_add_stmt (&bind_body, stmt);
8922 &bind_body, &dlist, ctx, NULL);
8925 gimple_seq_add_stmt (&bind_body, scope_stmt);
8927 gimple_seq_add_seq (&bind_body, gimple_omp_body (scope_stmt));
8933 bind_body, &clist, ctx);
8938 gimple_seq_add_stmt (&bind_body, g);
8939 gimple_seq_add_seq (&bind_body, clist);
8942 gimple_seq_add_stmt (&bind_body, g);
8945 gimple_seq_add_seq (&bind_body, dlist);
8947 bind_body = maybe_catch_exception (bind_body);
8962 gimple_seq_add_seq (&bind_body, bind_body_tail);
8964 gimple_bind_set_body (bind, bind_body);
14035 gimple_seq bind_body = NULL;
14050 gimplify_expr (&num_teams_lower, &bind_body, NULL, is_gimple_val,
14055 gimplify_expr (&num_teams, &bind_body, NULL, is_gimple_val, fb_rvalue);
14067 gimplify_expr (&thread_limit, &bind_body, NULL, is_gimple_val,
14074 gimple_seq_add_stmt (&bind_body,
14077 gimple_seq_add_stmt (&bind_body, gimple_build_label (llabel));
14084 gimple_seq_add_stmt (&bind_body, call);
14090 gimple_seq_add_stmt (&bind_body, cond);
14091 gimple_seq_add_stmt (&bind_body, gimple_build_label (tlabel));
14092 gimple_seq_add_stmt (&bind_body,
14096 &bind_body, &dlist, ctx, NULL);
14100 gimple_seq_add_stmt (&bind_body, teams_stmt);
14102 gimple_seq_add_seq (&bind_body, gimple_omp_body (teams_stmt));
14104 gimple_seq_add_seq (&bind_body, olist);
14105 gimple_seq_add_seq (&bind_body, dlist);
14106 gimple_seq_add_stmt (&bind_body, gimple_build_omp_return (true));
14107 gimple_seq_add_stmt (&bind_body, gimple_build_goto (llabel));
14108 gimple_seq_add_stmt (&bind_body, gimple_build_label (flabel));
14109 gimple_bind_set_body (bind, bind_body);