Searched refs:for_stmt (Results 1 - 6 of 6) sorted by path

/freebsd-11-stable/contrib/gcc/cp/
H A Dcp-gimplify.c367 tree for_stmt = *expr_p; local
371 if (OMP_FOR_GIMPLIFYING_P (for_stmt))
373 OMP_FOR_GIMPLIFYING_P (for_stmt) = 1;
382 OMP_FOR_BODY (for_stmt)
383 = finish_bc_block (bc_continue, cont_block, OMP_FOR_BODY (for_stmt));
384 OMP_FOR_GIMPLIFYING_P (for_stmt) = 0;
H A Dinit.c2565 tree for_stmt;
2570 for_stmt = begin_for_stmt (NULL_TREE);
2572 finish_for_init_stmt (for_stmt); local
2575 for_stmt);
2577 for_stmt);
2625 finish_for_stmt (for_stmt);
2562 tree for_stmt; local
H A Dparser.c18718 objc_finish_foreach_stmt (tree for_stmt)
18722 tree scope = TREE_CHAIN (for_stmt);
18723 TREE_CHAIN (for_stmt) = NULL;
18715 objc_finish_foreach_stmt(tree for_stmt) argument
H A Dsemantics.c840 finish_for_init_stmt (tree for_stmt) argument
843 FOR_INIT_STMT (for_stmt) = pop_stmt_list (FOR_INIT_STMT (for_stmt));
844 add_stmt (for_stmt);
845 FOR_BODY (for_stmt) = do_pushlevel (sk_block);
846 begin_cond (&FOR_COND (for_stmt));
853 finish_for_cond (tree cond, tree for_stmt) argument
855 finish_cond (&FOR_COND (for_stmt), maybe_convert_cond (cond));
856 simplify_loop_decl_cond (&FOR_COND (for_stmt), FOR_BODY (for_stmt));
863 finish_for_expr(tree expr, tree for_stmt) argument
891 finish_for_stmt(tree for_stmt) argument
[all...]
/freebsd-11-stable/contrib/gcc/
H A Dgimplify.c4955 tree for_stmt, decl, t;
4958 for_stmt = *expr_p;
4960 gimplify_scan_omp_clauses (&OMP_FOR_CLAUSES (for_stmt), pre_p, false, false);
4962 t = OMP_FOR_INIT (for_stmt);
4974 ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
4977 t = OMP_FOR_COND (for_stmt);
4981 ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
4984 t = OMP_FOR_INCR (for_stmt);
4998 OMP_FOR_INCR (for_stmt) = t;
5020 ret |= gimplify_expr (&TREE_OPERAND (t, 1), &OMP_FOR_PRE_BODY (for_stmt),
4954 tree for_stmt, decl, t; local
[all...]
H A Domp-low.c101 tree v, n1, n2, step, chunk_size, for_stmt; member in struct:omp_for_data
152 extract_omp_for_data (tree for_stmt, struct omp_for_data *fd) argument
156 fd->for_stmt = for_stmt;
159 t = OMP_FOR_INIT (for_stmt);
166 t = OMP_FOR_COND (for_stmt);
189 t = OMP_FOR_INCR (fd->for_stmt);
211 for (t = OMP_FOR_CLAUSES (for_stmt); t ; t = OMP_CLAUSE_CHAIN (t))
4025 clauses = OMP_FOR_CLAUSES (fd->for_stmt);

Completed in 343 milliseconds