Home
last modified time | relevance | path

Searched refs:omp_for (Results 1 – 8 of 8) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Domp-oacc-kernels-decompose.cc512 transform_kernels_loop_clauses (gimple *omp_for, in transform_kernels_loop_clauses() argument
528 tree loop_clauses = gimple_omp_for_clauses (omp_for); in transform_kernels_loop_clauses()
585 tree auto_clause = build_omp_clause (gimple_location (omp_for), in transform_kernels_loop_clauses()
590 gimple_omp_for_set_clauses (omp_for, loop_clauses); in transform_kernels_loop_clauses()
601 gimple *body = gimple_omp_body (omp_for); in transform_kernels_loop_clauses()
645 make_region_loop_nest (gimple *omp_for, gimple_seq stmts, in make_region_loop_nest() argument
666 dump_printf_loc (MSG_NOTE, omp_for, in make_region_loop_nest()
670 clauses = transform_kernels_loop_clauses (omp_for, in make_region_loop_nest()
679 dump_printf_loc (MSG_NOTE, omp_for, in make_region_loop_nest()
705 gimple_set_location (parallel_region, gimple_location (omp_for)); in make_region_loop_nest()
[all …]
H A Dtree.def1164 DEFTREECODE (OMP_FOR, "omp_for", tcc_statement, 7)
H A DChangeLog-201631239 for not gridifying. Dump special string for omp_for.
H A DChangeLog-201521163 that omp_for already has its own loop struct.
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dgimple.h5455 gimple_omp_for_grid_phony (const gomp_for *omp_for)
5457 gcc_checking_assert (gimple_omp_for_kind (omp_for)
5459 return (gimple_omp_subcode (omp_for) & GF_OMP_FOR_GRID_PHONY) != 0;
5465 gimple_omp_for_set_grid_phony (gomp_for *omp_for, bool value)
5467 gcc_checking_assert (gimple_omp_for_kind (omp_for)
5470 omp_for->subcode |= GF_OMP_FOR_GRID_PHONY;
5472 omp_for->subcode &= ~GF_OMP_FOR_GRID_PHONY;
5478 gimple_omp_for_grid_intra_group (const gomp_for *omp_for)
5480 gcc_checking_assert (gimple_omp_for_kind (omp_for)
5482 return (gimple_omp_subcode (omp_for) & GF_OMP_FOR_GRID_INTRA_GROUP) != 0;
[all …]
H A Dtree.def1152 DEFTREECODE (OMP_FOR, "omp_for", tcc_statement, 7)
/netbsd-src/external/gpl3/gcc.old/dist/gcc/cp/
H A Dsemantics.c8884 tree omp_for = NULL, orig_incr = NULL; in finish_omp_for() local
9111 omp_for = c_finish_omp_for (locus, code, declv, orig_declv, initv, condv, in finish_omp_for()
9116 if (omp_for && !c_omp_check_loop_iv (omp_for, orig_declv, cp_walk_subtrees)) in finish_omp_for()
9117 omp_for = NULL_TREE; in finish_omp_for()
9119 if (omp_for == NULL) in finish_omp_for()
9122 add_stmt (omp_for); in finish_omp_for()
9124 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INCR (omp_for)); i++) in finish_omp_for()
9126 decl = TREE_OPERAND (TREE_VEC_ELT (OMP_FOR_INIT (omp_for), i), 0); in finish_omp_for()
9127 incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i); in finish_omp_for()
9154 TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i) = TREE_VEC_ELT (orig_incr, i); in finish_omp_for()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/cp/
H A Dsemantics.cc10345 tree omp_for = NULL, orig_incr = NULL; in finish_omp_for() local
10548 omp_for = c_finish_omp_for (locus, code, declv, orig_declv, initv, condv, in finish_omp_for()
10553 if (omp_for && !c_omp_check_loop_iv (omp_for, orig_declv, cp_walk_subtrees)) in finish_omp_for()
10554 omp_for = NULL_TREE; in finish_omp_for()
10556 if (omp_for == NULL) in finish_omp_for()
10559 add_stmt (omp_for); in finish_omp_for()
10561 for (i = 0; i < TREE_VEC_LENGTH (OMP_FOR_INCR (omp_for)); i++) in finish_omp_for()
10563 init = TREE_VEC_ELT (OMP_FOR_INIT (omp_for), i); in finish_omp_for()
10565 cond = TREE_VEC_ELT (OMP_FOR_COND (omp_for), i); in finish_omp_for()
10566 incr = TREE_VEC_ELT (OMP_FOR_INCR (omp_for), i); in finish_omp_for()
[all …]