Searched refs:for_stmt (Results 1 - 5 of 5) sorted by relevance

/freebsd-10.0-release/contrib/gcc/cp/
H A Dsemantics.c816 finish_for_init_stmt (tree for_stmt) argument
819 FOR_INIT_STMT (for_stmt) = pop_stmt_list (FOR_INIT_STMT (for_stmt));
820 add_stmt (for_stmt);
821 FOR_BODY (for_stmt) = do_pushlevel (sk_block);
822 begin_cond (&FOR_COND (for_stmt));
829 finish_for_cond (tree cond, tree for_stmt) argument
831 finish_cond (&FOR_COND (for_stmt), maybe_convert_cond (cond));
832 simplify_loop_decl_cond (&FOR_COND (for_stmt), FOR_BODY (for_stmt));
839 finish_for_expr(tree expr, tree for_stmt) argument
867 finish_for_stmt(tree for_stmt) argument
[all...]
H A Dcp-gimplify.c328 tree for_stmt = *expr_p; local
332 if (OMP_FOR_GIMPLIFYING_P (for_stmt))
334 OMP_FOR_GIMPLIFYING_P (for_stmt) = 1;
343 OMP_FOR_BODY (for_stmt)
344 = finish_bc_block (bc_continue, cont_block, OMP_FOR_BODY (for_stmt));
345 OMP_FOR_GIMPLIFYING_P (for_stmt) = 0;
H A Dinit.c2565 tree for_stmt;
2569 for_stmt = begin_for_stmt ();
2570 finish_for_init_stmt (for_stmt); local
2573 for_stmt);
2575 for_stmt);
2623 finish_for_stmt (for_stmt);
2562 tree for_stmt; local
/freebsd-10.0-release/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 111 milliseconds